
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* soft gradient wrapper */
.story-wrapper {
    background: linear-gradient(135deg, #fdfaf7 0%, #f6efe8 100%);
    padding: 3rem 1.5rem;
    min-height: 100vh;
}

.container-story {
    max-width: 100%;
    margin: 0 auto;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: -0.3px;
    color: #2c3e2c;
}

.story-hero {
    text-align: center;
    margin-bottom: 3.5rem;
}
.story-hero h1 {
    font-size: clamp(2.8rem, 12vw, 4.5rem);
    color: #c11515;
    line-height: 1.1;
    margin-bottom: -0.25rem;
    margin-top: 35px;
}
.hero-subhead {
    font-size: clamp(1rem, 4vw, 1.3rem);
    font-weight: 300;
    color: #7c6b5f;
    text-transform: uppercase;
    letter-spacing: 4px;
    word-spacing: 6px;
    border-bottom: 1px solid #e0d6cd;
    display: inline-block;
    padding: 0.75rem;
}
/* opening paragraph */
.hero-text {
    max-width: 750px;
    margin: 2rem auto 0;
    font-size: 1.15rem;
    line-height: 1.8;
    text-align: left;
    color: #4a403a;
    font-weight: 300;
    background: rgba(255, 255, 255, 0.5);
    padding: 2rem 2rem;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

/* sections */
.story-section {
    margin-bottom: 4rem;
}
.story-title {
    color: #b31312;
    border-left: 4px solid #c1a28b;
    padding-left: 1.5rem;
}
.story-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #3d3530;
    font-weight: 350;
}

.story-text p {
    margin-bottom: 0.8rem;
}

.story-text strong {
    font-weight: 600;
    color: #be0000;
}

/* signature / quote block */
.insight-block {
    background: #f0e9e2;
    padding: 2.2rem 2.5rem;
    border-radius: 30px;
    margin: 2.5rem 0 1rem;
    font-style: italic;
    font-size: 1.2rem;
    border: 1px solid #ddd2c7;
    color: #3d4a3d;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.02);
}

/* ===== ANIMATED ICONS (pure CSS/SVG) ===== */
.icon {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

/* subtle bounce on hover for all icons */
.story-card:hover .icon {
    transform: scale(1.1) translateY(-2px);
}

/* card icon styles (inline SVG via background) - RED VERSION */
.icon-home {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b22222' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'%3E%3C/path%3E%3Cpolyline points='9 22 9 12 15 12 15 22'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.icon-newspaper {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b22222' stroke-width='1.5'%3E%3Cpath d='M4 4h16v16H4z'%3E%3C/path%3E%3Cpath d='M8 8h8v2H8zM8 12h6v2H8zM8 16h4v2H8z'%3E%3C/path%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.icon-mic {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b22222' stroke-width='1.5'%3E%3Cpath d='M12 2a3 3 0 0 0-3 3v6a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3z'%3E%3C/path%3E%3Cpath d='M19 10v1a7 7 0 0 1-14 0v-1M12 19v3'%3E%3C/path%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.icon-compass {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b22222' stroke-width='1.5'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpolygon points='16.24 7.76 14.12 14.12 7.76 16.24 9.88 9.88 16.24 7.76'%3E%3C/polygon%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.icon-leaf {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b22222' stroke-width='1.5'%3E%3Cpath d='M12 22s8-4 8-10c0-4-4-8-8-8-4 0-8 4-8 8 0 6 8 10 8 10z'%3E%3C/path%3E%3Cpath d='M12 22v-8'%3E%3C/path%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.icon-users {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b22222' stroke-width='1.5'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='9' cy='7' r='4'%3E%3C/circle%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'%3E%3C/path%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'%3E%3C/path%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

/* ===== CARDS with icon + text ===== */
.card-grid {
    display: grid;
    gap: 10px;
}
.story-card {
    background: white;
    padding: 1.8rem 1.5rem;
    border-radius: 24px;
    box-shadow: 0 8px 18px rgba(85, 70, 55, 0.05);
    border: 1px solid #ece3db;
    font-size: 1.05rem;
    line-height: 1.6;
    transition: all 0.25s ease;
    color: #3f3a35;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.story-card:hover {
    box-shadow: 0 16px 28px rgba(80, 60, 40, 0.1);
    border-color: #c9b6a8;
    background: #fefcfb;
    transform: translateY(-4px);
}

.card-content {
    flex: 1;
}

/* ===== MEDIA CARDS with animated play button ===== */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0 1.5rem;
}

.media-card {
    background: #2e2b28;
    border-radius: 28px;
    height: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #f0e2d8;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.1);
    background: linear-gradient(145deg, #2a2622, #211e1b);
    border: 1px solid #5b4e45;
    transition: transform 0.3s ease, border-color 0.2s;
    position: relative;
    overflow: hidden;
}

.media-card:hover {
    transform: scale(1.02);
    border-color: #b69f8f;
}

/* animated play button (pure CSS) */
.play-button {
    width: 64px;
    height: 64px;
    background: rgba(230, 215, 200, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 2px solid rgba(240, 230, 220, 0.5);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(4px);
}

.media-card:hover .play-button {
    background: rgba(200, 175, 155, 0.3);
    border-color: #f0e0d0;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(220, 180, 140, 0.6);
}

.play-button svg {
    width: 28px;
    height: 28px;
    fill: #f0e2d8;
    margin-left: 4px;
    /* fine-tune triangle centering */
    transition: fill 0.2s;
}

.media-card:hover .play-button svg {
    fill: #ffffff;
}

.media-caption {
    font-size: 1rem;
    font-weight: 300;
    max-width: 220px;
    text-align: center;
    line-height: 1.5;
    color: #ddd2c8;
    padding: 0 0.5rem;
}

.media-link {
    text-align: right;
    font-size: 1.05rem;
}

.media-link a {
    color: #6a5a4f;
    text-decoration: none;
    border-bottom: 1px solid #bfafa4;
    padding-bottom: 2px;
    transition: 0.2s;
}

.media-link a:hover {
    color: #1f3b1f;
    border-color: #1f3b1f;
}

/* ===== CTA ===== */
.cta-box {
    background: white;
    padding: 3rem 2.2rem;
    border-radius: 40px;
    box-shadow: 0 20px 35px rgba(70, 50, 35, 0.07);
    text-align: center;
    border: 1px solid #e2d7ce;
    margin: 4rem 0 1rem;
}

.cta-box .story-title {
    border-left: none;
    padding-left: 0;
    margin-bottom: 0.2rem;
}

.cta-box .story-text {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2rem;
    font-weight: 320;
    color: #4a423d;
}
.cta-btn {
    display: inline-block;
    padding: 14px;
    background: #cf1f22;
    color: white;
    border-radius: 60px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.3px;
    transition: 0.2s;
    box-shadow: 0 6px 14px rgba(40, 70, 40, 0.2);
}
.cta-btn:hover {
    background: #c11616;
    border-color: #c11616;
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(30, 60, 30, 0.25);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
    .story-wrapper {
        padding: 2rem 1rem;
    }

    .hero-text {
        padding: 1.5rem 1.2rem;
        font-size: 1rem;
    }

    .story-title {
        font-size: 2rem;
        padding-left: 1rem;
    }

    .insight-block {
        padding: 1.6rem 1.5rem;
        font-size: 1.1rem;
    }

    .story-card {
        padding: 1.5rem 1.2rem;
    }

    .cta-box {
        padding: 2rem 1.2rem;
    }

    .cta-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .play-button {
        width: 54px;
        height: 54px;
    }

    .play-button svg {
        width: 22px;
        height: 22px;
    }
}
@media (max-width: 767px) {
	.story-hero h1 {
		font-size: 40px;
		font-weight: 700;
		color: #c11515;
		line-height: 1.1;
		margin-top: 54px;
	}
	.insight-block {
		background: #f0e9e2;
		padding: 2.2rem 2.5rem;
		border-radius: 30px;

	}
}
@media (max-width: 400px) {
    .hero-subhead {
        letter-spacing: 2px;
    }

    .media-card {
        height: 200px;
    }
}