/* Reset e estilos gerais */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Poppins', sans-serif;
	background: #d5deeb;
	color: #010101;
	line-height: 1.5;
}

/* Estilos específicos para cada site */
body.site-ambiente {
	background: #e8f5e8; /* Fundo ligeiro verde para o site do ambiente */
}

body.site-pes {
	background: #e8f0ff; /* Fundo ligeiro azul para o site do PES */
}

/* Estilos específicos dos botões para o site PES */
body.site-pes .card-link,
body.site-pes .featured-link,
body.site-pes .blog-item-link,
body.site-pes .btn-reserva {
	background: #BCBBFD !important;
}

body.site-pes .card-link:hover,
body.site-pes .featured-link:hover,
body.site-pes .blog-item-link:hover,
body.site-pes .btn-reserva:hover {
	background: #A5A3FC !important; /* Cor ligeiramente mais escura no hover */
}

/* Cor específica para a frase PES AEDMFS */
body.site-pes .pes-title {
	color: #BCBBFD !important;
}

/* Botões de navegação externa (PES/Clube Ambiente) mais pequenos */
.nav-link.external-link {
	font-size: 0.7rem !important;
	padding: 0.25rem 0.5rem !important;
	margin-left: 6px !important;
}

/* Cor específica para o botão PES no site do Ambiente */
body.site-ambiente .nav-link.external-link[href*="index2.php"] {
	background: #BCBBFD !important;
}

body.site-ambiente .nav-link.external-link[href*="index2.php"]:hover {
	background: #A5A3FC !important;
}

a {
	text-decoration: none;
	color: #333;
	transition: color 0.3s ease;
}

a:hover {
	color: #36c537;
}

img {
	max-width: 100%;
	height: auto;
}

/* Header */
.header {
	background: #fff;
	padding: 1rem 0;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	position: relative;
}

.nav {
	max-width: 1200px;
	margin: 0 auto;
	display: flex !important;
	justify-content: flex-start;
	align-items: center;
	padding: 0 15px;
	gap: 0 !important;
}

.nav-logo {
	margin-right: 20px !important;
	padding-right: 0 !important;
}

.nav-menu {
	display: flex !important;
	gap: 0.5rem !important;
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	position: static !important;
	transform: none !important;
}

.nav-link {
	font-weight: 500;
	padding: 0.5rem 0.75rem !important;
	display: block;
}

/* Main Content */
.main {
	max-width: 1200px;
	margin: 2rem auto;
	padding: 0 1rem;
}

.grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

/* Card Styles */
.card {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.card-image {
	position: relative;
	padding-bottom: 56.25%;
	background: #f5f5f5;
	overflow: hidden;
}

.card-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 1;
	transition: transform 0.3s ease;
}

.card:hover .card-image img {
	transform: scale(1.05);
}

.card-content {
	padding: 1.5rem;
}

.card-category {
	font-size: 0.875rem;
	color: #36c537;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.card-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
	line-height: 1.4;
}

.card-description {
	font-size: 0.875rem;
	color: #666;
	margin-bottom: 1rem;
}

.card-link {
	display: inline-block;
	padding: 0.5rem 1rem;
	background: #36c537;
	color: #fff;
	border-radius: 4px;
	font-weight: 500;
	transition: background 0.3s ease;
}

.card-link:hover {
	background: #2ecc71;
	color: #fff;
}

/* Responsividade */
@media (max-width: 1024px) {
	.grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.grid {
		grid-template-columns: 1fr;
	}
	
	.nav-menu {
		display: none;
	}
}

/* Animações */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.card {
	animation: fadeIn 0.6s ease-out forwards;
}

.break {
	font-size: 0;
	width: 0; height: 0;
	clear: both;
}
.alignleft {
	float: left;
	margin: 4px 10px 5px 0;
}
.alignright {
	float: right;
	margin: 4px 0 5px 10px;
}
.aligncenter {
	text-align: center;
}
.hidden {
	display: none;
}

/** BEGIN wrapper **/
#wrapper {
	width: 980px;
	margin: auto auto;
	text-align: left;
}
/** END wrapper **/

/** BEGIN header **/
#header {
	height: 135px;
}
	#header h1 {
		font-size: 0;
		float: left;
		padding: 30px 0 35px;
	}
		#header h1 a {
			display: block;
			width: 433px; height: 33px;
			text-indent: -9999px;
			outline: none;
			background: url(images/logo.gif) no-repeat 0 0;
		}
	#header .ad {
		float: right;
		padding: 15px 0;
	}
	#header ul {
		clear: both;
		list-style-type: none;
		background-color: #7EA700;
		height: 30px;
	}
		#header ul li {
			float: left;
			font-weight: bold;
		}
		#header ul li a {
			color: #ffffff;
			display: block;
			padding: 8px 10px 9px;
		}
		#header ul li a:hover {
			background-color: #404618;
			text-decoration: none;
		}
/** END header **/

/** BEGIN content **/
#content {
	width: 653px;
	float: left;
	border: 1px solid #CCCCCC;
	padding: 5px;
	background-color: #ffffff;
}
	#content a {
		color: #434A1E;
	}
	#content .post {
		float: left;
		width: 150px; height: 440px;
		padding: 6px;
	}
		#content .post h2 {
			font-size: 1em;
			text-transform: uppercase;
			margin-bottom: 5px;
		}
		#content .post .thumb {
			width: 150px; height: 115px;
			overflow: hidden;
			margin-bottom: 5px;
		}
			#content .post .thumb img {
				width: 150px;
			}
		#content .post h3 {
			font-size: 1.2em;
			margin-bottom: 10px;
		}
		#content .post p {
			line-height: 1.4em;
		}
		#content .post .readmore {
			text-indent: -9999px;
			width: 99px; height: 17px;
			outline: none;
			background: url(images/readmore.gif) no-repeat 0 0;
			margin: 10px 0;
			display: block;
		}
	#content h2.title {
		font-size: 1em;
		text-transform: uppercase;
		padding: 10px;
	}
	#content .archive {
		padding: 10px;
		clear: both;
	}
		#content .archive img {
			width: 90px;
			float: left;
			margin: 0 5px 5px 0;
		}
		#content .archive h3 {
			margin-bottom: 5px;
		}
		#content .archive p {
			line-height: 1.5em;
			margin-bottom: 10px;
		}
	#content .single {
		padding: 10px;
	}
		#content .single h2 {
			margin-bottom: 10px;
			font-size: 1.4em;
		}
		#content .single p {
			line-height: 1.5em;
			margin-bottom: 10px;
		}
		#content .single ul, #content .single ol {
			list-style-position: inside;
			margin-bottom: 10px;
		}
		#content .single li {
			line-height: 1.5em;
			padding: 2px 0;
		}
		#content .single blockquote {
			padding: 10px 10px 5px;
			margin-bottom: 10px;
			background-color: #eeeeee;
			border-width: 1px 0;
			border-style: solid;
			border-color: #e0e0e0;
		}
		#content .single h3, #content .single h4, #content .single h5, #content .single h6 {
			font-size: 1.2em;
			margin-bottom: 5px;
		}
	#postnav {
		padding: 10px;
		font-weight: bold;
	}
/** END content **/

/** BEGIN sidebar **/
#sidebar {
	width: 300px;
	float: right;
}
	#sidebar .box {
		
	}
		#sidebar .box h2 {
			color: #3D4418;
			font-size: 1em;
			text-transform: uppercase;
			background-color: #FFFFFF;
			padding: 8px 10px;
			border-bottom: 1px solid #DDDDDD;
		}
		#sidebar .box  {
			border: 1px solid #CCCCCC;
			margin-bottom: 8px;
		}
		#sidebar .search {
			margin-bottom: 0;
			border-bottom: 0;
		}
		#sidebar .box form {
			width: 284px; height: 30px;
			padding: 7px;
			background: #E8E8E8 url(images/search.gif) no-repeat center;
		}
			#sidebar .box form input {
				border: 0;
				float: left;
				font-size: 1.2em;
				font-family: Verdana;
				width: 200px;
				margin: 7px 0 0 5px;
				background-color: transparent;
			}
			#sidebar .box form button {
				border: 0;
				float: right;
				text-indent: -9999px;
				width: 70px; height: 30px;
				background-color: transparent;
			}
		#sidebar .ad {
			background-color: #ffffff;
			text-align: center;
			padding: 5px;
		}
			#sidebar .ad img {
				margin: 5px;
			}
		#sidebar ul {
			list-style-type: none;
			background-color: #ffffff;
			padding: 6px;
		}
			#sidebar ul li {
				font-size: 1.2em;
				border-bottom: 1px dotted #DCDCDC;
				line-height: 1.4em;
				padding: 2px 0;
			}
			#sidebar ul li a {
				color: #3D441B;
			}
			#sidebar ul li a:hover {
				color: #83A604;
				text-decoration: none;
			}
		#sidebar .flickr {
			padding: 5px;
			background-color: #ffffff;
			text-align: center;
		}
			#sidebar .flickr img {
				margin: 5px;
			}
		#sidebar .video {
			background-color: #ffffff;
			padding: 3px;
		}
		#sidebar .l {
			float: left;
			width: 145px;
		}
		#sidebar .r {
			float: right;
			width: 145px;
		}
		#sidebar .l ul li, #sidebar .r ul li {
			font-size: 1em;
			border-bottom: 0;
			padding: 3px 0;
		}
/** END sidebar **/

/** BEGIN footer **/
#footer {
	clear: both;
	padding: 10px;
	color: #ffffff;
	background-color: #7EA700;
	height: 16px;
	margin-top: 10px;
}
	#footer .l {
		float: left;
	}
	#footer .r {
		float: right;
	}
	#footer a {
		color: #ffffff;
		text-decoration: underline;
	}
/** END footer **/

/** BEGIN miscellaneous **/
#comments {
	padding: 10px;
}
	#comments a {
		text-decoration: none;
	}
	#comments h2 {
		font-size: 1.4em;
		margin: 10px 0;
	}
	#comments p {
		margin-bottom: 10px;
		line-height: 1.6em;
	}
	#comments form {
		
	}
	#comments form p {
		margin-bottom: 5px;
	}
		#comments form input {
			margin-right: 5px;
		}
		#comments form input, textarea {
			border: 1px solid #cccccc;
			font-size: 0.9em;
			font-family: Verdana;
			padding: 4px;
			background-position: 4px 4px;
			background-repeat: no-repeat;
		}
		#comments form input {
			width: 260px;
			border: 1px solid #cccccc;
		}
		#comments form textarea {
			width: 350px;
			padding: 4px 4px !important;
			border: 1px solid #cccccc;
		}
		#comments form button {
			border: 1px solid #a0a0a0;
			font-size: 1em;
			font-family: Verdana;
			padding: 2px 6px;
		}
	.commentdetails {
		margin-top: 25px;
	}
	.commentauthor {
		margin-bottom: 5px !important;
		font-weight: bold;
	}
	.commentdate {
		font-size: 0.8em;
		margin-bottom: 5px;
		color: #909090;
	}
	.required {
		color: #ff0000;
	}
h2.title {
	font-size: 1em !important;
	text-transform: uppercase;
	padding: 10px;
	color: #565656;
}
.notfound {
	padding: 40px;
}
	.notfound h2 {
		font-size: 18px;
		font-weight: normal;
		margin-bottom: 10px;
	}
/** END miscellaneous **/

/** BEGIN wordpress 2.7 comments **/
#comments ol {
	list-style-type: none;
	clear: both;
	padding: 0;
	margin: 0;
}
	#comments .buffer {
		padding: 10px;
	}
	#comments h2 {
		
	}
	#comments ol li {
		margin-bottom: 10px;
	}
	#comments ol li ul li {
		border: 1px solid #e0e0e0;
		padding: 10px;
	}
	#comments ol li .avatar {
		float: right;
	}
	#comments ol li .comment-author {
		
	}
		#comments ol li .comment-author .fn {
			font-weight: bold;
			font-size: 1.2em;
		}
	#comments ol li .comment-meta {
		font-size: 0.9em;
		color: #999999;
		margin: 5px 0 10px;
	}
	#comments ol li .reply {
		font-size: 0.9em;
		font-weight: bold;
		padding-bottom: 10px;
	}
	#comments .children {
		list-style-type: none;
	}
#comments .navigation {
	padding: 0 10px 20px;
	font-size: 0.9em;
}
	#comments .navigation a {
		color: #999999;
		padding: 3px 8px;
		border: 1px solid #cccccc;
	}
	#comments .navigation a:hover {
		color: #000000;
		border-color: #000000;

		text-decoration: none;
	}
#comments .says {
	display: none;
}
/** END wordpress 2.7 comments **/

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 30px;
}

.content-wrapper {
    flex: 1;
    max-width: 800px;
}

.sidebar {
    width: 300px;
    flex-shrink: 0;
}

.sidebar-widget {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.widget-title {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #36c537;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 8px;
}

.category-list a {
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

/* Gradiente base para Clube do Ambiente */
body.site-ambiente .category-list a:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(54, 197, 55, 0.1), transparent);
    transition: left 0.5s;
}

/* Gradiente base para PES */
body.site-pes .category-list a:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s;
}

/* Estilo padrão para Clube do Ambiente (verde) */
body.site-ambiente .category-list a:hover {
    color: #36c537;
    background: linear-gradient(135deg, #f0fff4, #e6ffe8);
    border-color: #36c537;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(54, 197, 55, 0.15);
}

body.site-ambiente .category-list a:hover:before {
    left: 100%;
    background: linear-gradient(90deg, transparent, rgba(54, 197, 55, 0.1), transparent);
}

body.site-ambiente .category-list a:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(54, 197, 55, 0.1);
}

body.site-ambiente .category-list a.active-category {
    color: #fff !important;
    background: linear-gradient(135deg, #36c537, #2ea043) !important;
    border-color: #36c537 !important;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(54, 197, 55, 0.25);
}

body.site-ambiente .category-list a.active-category:hover {
    background: linear-gradient(135deg, #2ea043, #1f7930) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(54, 197, 55, 0.3);
}

/* Estilo específico para PES (azul) */
body.site-pes .category-list a:hover {
    color: #3b82f6;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-color: #3b82f6;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

body.site-pes .category-list a:hover:before {
    left: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
}

body.site-pes .category-list a:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.1);
}

body.site-pes .category-list a.active-category {
    color: #fff !important;
    background: linear-gradient(135deg, #3b82f6, #2563eb) !important;
    border-color: #3b82f6 !important;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

body.site-pes .category-list a.active-category:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.3);
}

.recent-downloads {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.recent-item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.recent-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.recent-info h4 {
    margin: 0;
    font-size: 0.9rem;
    color: #333;
}

.recent-info span {
    font-size: 0.8rem;
    color: #666;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
}

.newsletter-form button {
    background: #36c537;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #2da52e;
}

/* Ajustes responsivos */
@media (max-width: 992px) {
    .container {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
    }
    
    .content-wrapper {
        max-width: 100%;
    }
}

/* Slider Styles */
.slider-container {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.slider {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Slider com altura dupla para página inicial */
.slider-home {
    height: 300px; /* Altura dobrada para página inicial */
}

.slider-home .slide img {
    width: 100%;
    height: 300px;
    object-fit: cover; /* Garante que a imagem preenche todo o espaço */
    object-position: top; /* Alinha a imagem no topo */
}

/* Slider com altura original para outras páginas */
.slider-pages {
    height: 150px; /* Altura original para outras páginas */
}

.slider-pages .slide img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    object-position: top; /* Alinha a imagem no topo */
}

.slide {
    position: relative;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: none;
}

.slide.active {
    opacity: 1;
    display: block;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: top; /* Alinha a imagem no topo */
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    color: #333;
    padding: 16px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
    transition: background 0.3s;
    z-index: 2;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #fff;
}

/* Animação de fade */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: 0.4}
    to {opacity: 1}
}

/* Botão de Reserva */
.btn-reserva {
    /* Copied styles from .card-link for exact match */
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #36c537;
    color: #fff;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.3s ease;
    text-decoration: none;
    margin-top: 10px; /* Keep margin specific to this button's context */
}

.btn-reserva:hover {
    /* Copied styles from .card-link:hover */
    background: #2ecc71;
    color: #fff;
}

.sidebar-content {
    padding: 5px 0;
}

.text-center {
    text-align: center;
}

/* Estilos para imagens dos artigos */
.article-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Botão roxo */
.btn-roxo {
    background: #8e44ad !important; /* Cor roxa */
}

.btn-roxo:hover {
    background: #9b59b6 !important; /* Cor roxa mais clara no hover */
}

/* Featured Article Styles */
.featured-article {
    margin-bottom: 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    background: #fff;
}

.featured-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-article:hover .featured-image img {
    transform: scale(1.05);
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 2.5rem;
    color: white;
}

.featured-category {
    font-size: 0.9rem;
    color: #36c537;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.5rem;
    background: rgba(255,255,255,0.9);
    color: #36c537;
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.featured-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.featured-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.featured-link {
    display: inline-block;
    background: #36c537;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.featured-link:hover {
    background: #2da52e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(54, 197, 55, 0.3);
    color: white;
}

/* Responsive adjustments for featured article */
@media (max-width: 768px) {
    .featured-image {
        height: 250px;
    }
    
    .featured-overlay {
        padding: 1.5rem;
    }
    
    .featured-title {
        font-size: 1.6rem;
    }
    
    .featured-description {
        font-size: 1rem;
    }
}

/* Blog image fixes - ensure images maintain proper aspect ratio when wrapped in links */
.blog-list-item a {
    display: block;
    width: 100%;
}

.blog-list-item .blog-item-image {
    width: 100%;
    height: auto;
    min-height: 120px;
    max-height: 150px;
    object-fit: cover;
    display: block;
}

.blog-list-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.blog-list-item a {
    flex-shrink: 0;
    width: 200px;
}

.blog-item-content {
    flex-grow: 1;
}
