/* Aktivitäten-Grid (Shortcode [foev_aktivitaeten]).
   Schriften kommen aus dem Theme (Roboto / Roboto Slab) mit Fallbacks. */
.foev-acts-grid{
	--fg:#228541;--fgd:#2b632f;--ftint:#eaf2ec;--ftint2:#d7e6db;
	--fink:#1f2b24;--fmut:#5c6b61;--fline:#e4dfd5;--fwhite:#fff;--frad:14px;
	--fslab:"Roboto Slab",Georgia,serif;
	--fsans:"Roboto",-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
	display:grid;grid-template-columns:repeat(var(--foev-cols,3),1fr);gap:1.5rem;
	font-family:var(--fsans);
}
.foev-card{position:relative;display:flex;flex-direction:column;background:#f4f4f4;
	border:0;border-radius:var(--frad);overflow:hidden;min-height:300px;
	color:var(--fink);text-decoration:none;transition:transform .18s ease,box-shadow .18s ease}
.foev-card:hover{transform:translateY(-5px);box-shadow:0 0px 0px 2px #228541}
.foev-card__media{aspect-ratio:3/2;position:relative;background:#dfeadf 50%/cover no-repeat}
.foev-card__chip{position:absolute;left:0;bottom:0;background:var(--fgd);color:#fff;
	font-size:.74rem;font-weight:600;letter-spacing:.05em;padding:.4em .85em;border-top-right-radius:10px}
.foev-card__body{padding:1.5rem;display:flex;flex-direction:column;gap:.55em;flex:1}
.foev-card__date{font-size:.76rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--fg)}
.foev-card__title{font-family:var(--fslab);font-weight:700;font-size:1.2rem;line-height:1.28;color:var(--fink);margin:0}
.foev-card__text{color:var(--fmut);font-size:.97rem;margin:0;line-height:1.65}
.foev-card__more{margin-top:auto;padding-top:.5em;display:inline-flex;align-items:center;gap:.4em;
	font-weight:600;color:var(--fgd)}
.foev-a{transition:transform .15s ease}
.foev-card:hover .foev-a{transform:translateX(3px)}
.foev-card--soft{background:#f4f4f4}
.foev-card--soft .foev-card__title{color:var(--fgd)}
.foev-card--soft .foev-card__body{gap:.6em}
.foev-card--soft .foev-card__body::before{content:"";display:block;width:34px;height:3px;
	border-radius:3px;background:var(--fg);margin-bottom:.2em}
.foev-card--title .foev-card__body{justify-content:center}
.foev-card--title .foev-card__title{font-size:1.55rem;line-height:1.2}
.foev-card--cover{color:#fff}
.foev-card--cover .foev-cover{position:absolute;inset:0;background:#6f5b3e 50%/cover no-repeat}
.foev-card--cover .foev-cover-grad{position:absolute;inset:0;
	background:linear-gradient(to top,rgba(21,48,28,.82) 0%,rgba(21,48,28,.15) 48%,rgba(21,48,28,0) 72%)}
.foev-card--cover .foev-card__chip{z-index:2;left:auto;right:0;bottom:auto;top:0;
	border-top-right-radius:0;border-bottom-left-radius:10px}
.foev-card--cover .foev-cover-body{position:relative;z-index:2;margin-top:auto;padding:1.5rem;
	display:flex;flex-direction:column;gap:.45em}
.foev-card--cover .foev-card__title{color:#fff;font-size:1.3rem}
.foev-card--cover .foev-card__more{color:#fff;margin-top:.2em}
.foev-card--cover.is-imageonly .foev-cover-body{opacity:0;transform:translateY(8px);
	transition:opacity .2s ease,transform .2s ease}
.foev-card--cover.is-imageonly:hover .foev-cover-body{opacity:1;transform:none}
.foev-acts-empty{color:#5c6b61;font-style:italic}
@media (max-width:900px){.foev-acts-grid{grid-template-columns:1fr}}