/**
 * Storys grid — 3-column post archive with rounded images, IvyMode H3 and red "Läs mer" link.
 */
.storys-grid-section {
	padding: clamp(60px, 8vh, 120px) clamp(20px, 4vw, 120px);
	max-width: 1440px;
	margin: 0 auto;
}

.storys-grid-section__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 36px;
	row-gap: 60px;
	list-style: none;
	margin: 0;
	padding: 0;
}

@media (max-width: 980px) {
	.storys-grid-section__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.storys-grid-section__grid {
		grid-template-columns: 1fr;
	}
}

.storys-grid-section__grid > .wp-block-post {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 22px;
	margin: 0;
	transition: transform 0.25s ease;
}
.storys-grid-section__grid > .wp-block-post:hover,
.storys-grid-section__grid > .wp-block-post:focus-within {
	transform: translateY(-4px);
}

.storys-grid-section__grid .wp-block-post-featured-image {
	margin: 0;
	border-radius: 10px;
	overflow: hidden;
}
.storys-grid-section__grid .wp-block-post-featured-image img {
	width: 100%;
	height: 365px;
	object-fit: cover;
	display: block;
	border-radius: 10px;
}
.storys-grid-section__grid .wp-block-post-featured-image a {
	display: block;
}

.storys-grid-section__grid .wp-block-post-title {
	font-family: var(--wp--preset--font-family--ivymode, "ivymode", serif);
	font-weight: 300;
	font-size: 32px;
	line-height: 1.25;
	color: var(--wp--preset--color--mine-shaft, #292929);
	margin: 0;
}
.storys-grid-section__grid .wp-block-post-title a {
	color: inherit;
	text-decoration: none;
}
.storys-grid-section__grid .wp-block-post-title a:hover,
.storys-grid-section__grid .wp-block-post-title a:focus-visible {
	text-decoration: underline;
}

.storys-grid-section__grid .wp-block-post-excerpt {
	margin: 0;
	font-size: 16px;
	line-height: 1.44;
	color: var(--wp--preset--color--contrast, #000);
}
.storys-grid-section__grid .wp-block-post-excerpt__excerpt {
	margin: 0 0 18px;
}

/* "Läs mer"-länken — röd, ej understruken */
.storys-grid-section__grid .wp-block-post-excerpt__more-link,
.storys-grid-section__grid .wp-block-post-excerpt__more-text {
	display: inline-block;
	color: var(--wp--preset--color--red, #ff0000);
	font-family: var(--wp--preset--font-family--dm-sans);
	font-size: 18px;
	line-height: 1.6;
	text-decoration: none;
	font-weight: 400;
}
.storys-grid-section__grid .wp-block-post-excerpt__more-link:hover,
.storys-grid-section__grid .wp-block-post-excerpt__more-text:hover,
.storys-grid-section__grid .wp-block-post-excerpt__more-link:focus-visible {
	text-decoration: underline;
}
