/**
 * İstanbul Av Market — Ana sayfa rehber blog bölümü
 */

.iam-home-guides {
	background: transparent;
	padding: 0;
	margin-top: 0;
	border-top: 0;
}

.iam-home-guides__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 20px;
}

.iam-home-guides__header {
	text-align: center;
	margin-bottom: 36px;
}

.iam-home-guides__title {
	color: #354123;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 800;
	margin: 0 0 10px;
	line-height: 1.25;
}

.iam-home-guides__subtitle {
	color: #555;
	font-size: 1rem;
	max-width: 640px;
	margin: 0 auto;
	line-height: 1.6;
}

.iam-home-guides__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 22px;
}

.iam-guide-card {
	background: #fff;
	border: 1px solid rgba(47, 79, 47, 0.12);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 18px rgba(47, 79, 47, 0.07);
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.iam-guide-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 28px rgba(47, 79, 47, 0.14);
}

.iam-guide-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none !important;
	color: inherit;
}

.iam-guide-card__image {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #eee;
}

.iam-guide-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.iam-guide-card:hover .iam-guide-card__image img {
	transform: scale(1.04);
}

.iam-guide-card__body {
	padding: 16px 18px 18px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.iam-guide-card__title {
	color: #2f4f2f !important;
	font-size: 1.05rem;
	font-weight: 700;
	margin: 0 0 8px;
	line-height: 1.35;
}

.iam-guide-card__excerpt {
	color: #666;
	font-size: 0.88rem;
	line-height: 1.5;
	margin: 0 0 12px;
	flex: 1;
}

.iam-guide-card__cta {
	color: #6b8e23;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.iam-home-guides__footer {
	text-align: center;
	margin-top: 32px;
}

.iam-home-guides__all {
	display: inline-block;
	background: linear-gradient(135deg, #ffc107 0%, #c9a000 100%);
	color: #0e1509 !important;
	font-weight: 700;
	padding: 12px 28px;
	border-radius: 6px;
	text-decoration: none !important;
	box-shadow: 0 4px 14px rgba(230, 184, 0, 0.35);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.iam-home-guides__all:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(230, 184, 0, 0.45);
	color: #0e1509 !important;
}

/* Blog içi ürün listesi */
.iam-guide-products {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5rem;
	border: 1px solid rgba(47, 79, 47, 0.12);
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
}

.iam-guide-products li {
	padding: 12px 16px;
	border-bottom: 1px solid rgba(47, 79, 47, 0.08);
	font-size: 14px;
	line-height: 1.5;
}

.iam-guide-products li:last-child {
	border-bottom: none;
}

.iam-guide-products a {
	color: #2f4f2f !important;
	text-decoration: none;
	font-weight: 600;
}

.iam-guide-products a:hover {
	color: #6b8e23 !important;
	text-decoration: underline;
}

@media (max-width: 600px) {
	.iam-home-guides {
		padding: 40px 0 48px;
	}

	.iam-home-guides__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}
