/* ────────────────────────────────────────────────────────────────────────────
   Podere Colleprimo — section-podere.css

   Stili condivisi per la sezione .podere-section (testo + figura). Caricato su:
     - homepage (templates/homepage.php)
     - archivio esperienze (archive-esperienza.php)
   Estratto da home.css per essere riutilizzabile su più template.
   ──────────────────────────────────────────────────────────────────────────── */

.podere-section {
	padding: 100px 0;
	position: relative;
}

.podere-section .container {
	justify-content: space-between;
}

.podere-section__figure {
	margin: 0;
	position: relative;
	width: 520px;
	max-width: 50%;
}

.podere-section__figure img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
}

.podere-section__figure figcaption {
	position: absolute;
	bottom: 30px;
	left: 30px;
	z-index: 3;
	color: var(--2);
	font-size: 12px;
	letter-spacing: 1.6px;
	text-transform: uppercase;
}

.podere-section__text {
	margin-top: 100px;
}

.podere-section__left-icon {
	position: absolute;
	width: 315px;
	top: 50%;
	transform: translateY(-50%) translateX(-50%);
}

@media screen and (max-width: 1024px) {
	.podere-section {
		padding: 60px 0;
	}
	
	.podere-section__text {
		margin-top: 0;
	}
	
	.podere-section__figure {
		width: 100%;
		max-width: 100%;
		margin-top: 60px;
	}
	
	.podere-section__figure figcaption {
		bottom: 20px;
		left: 20px;
	}
}