﻿/* ====================== STORY SECTION LAYOUT ========================= */
.about-story-section {
    background: var(--np-grey-hot-bg);
    padding: 60px 0 50px;
}

.story-inner {
    text-align: center;
}
/* ====================== END LAYOUT ========================= */



/* ====================== STORY TITLE ========================= */
.story-title {
    font-size: var(--fs-6xl);
    margin-bottom: 60px;
    font-weight: 900;
    font-family: var(--font-header);
    display: inline-flex;
    gap: 12px;
}

.story-title-accent {
    color: var(--np-accent1);
}

.story-title-dark {
    color: var(--np-dark);
}
/* ====================== END TITLE ========================= */



/* ====================== STORY GRID ========================= */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 60px;
}
/* ====================== END GRID ========================= */



/* ====================== STORY IMAGE COLUMN ========================= */
.story-image-wrapper {
    width: auto;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
}

.story-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* ====================== END IMAGE COLUMN ========================= */



/* ====================== STORY RIGHT COLUMN ========================= */
.story-right-column {
    display: flex;
    flex-direction: column;
    gap: 35px;
}
/* ====================== END RIGHT COLUMN ========================= */



/* ====================== WHO WE ARE CARD ========================= */
.story-main-card {
    background: var(--np-white);
    border-radius: 18px;
    padding: 30px 40px;
    box-shadow: 0 5px 4px rgba(0,0,0,0.08);
    text-align: left;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .story-main-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 5px 8px rgba(0,0,0,0.25);
    }

.story-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

    .story-card-header img {
        width: 42px;
        height: 42px;
    }

.story-icon {
    width: 74px;
    height: 74px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-3xl);
    line-height: 1;
    padding-bottom: 4px;
    background: linear-gradient(90deg, var(--np-accent1) 0%, #61100F 100%);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    flex-shrink: 0;
}

.story-main-card h3 {
    font-size: var(--fs-3xl);
    font-weight: 900;
    color: var(--np-accent1);
}

.story-text {
    font-size: var(--fs-xl);
    color: var(--np-dark);
}
/* ====================== END WHO WE ARE ========================= */



/* ====================== STATS + BUTTONS CARD ========================= */
.story-stats-card {
    background: var(--np-white);
    border-radius: 16px;
    padding: 25px 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow: 0 5px 4px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .story-stats-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.28);
    }
/* ====================== END STATS CARD ========================= */



/* ====================== STATS LIST ========================= */
.story-stats-list {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 1;
}

.story-stat {
    width: 82px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.stat-label {
    font-size: var(--fs-sm);
    line-height: 1.15;
}

.story-divider {
    width: 2px;
    height: 36px;
    background: #d8d8d8;
    flex-shrink: 0;
}
/* ====================== END STATS LIST ========================= */



/* ====================== STORY ACTION BUTTONS ========================= */
.story-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
    max-width: 300px;
    width: 100%;
}

.story-btn {
    padding: 6px 7px;
    border-radius: 30px;
    font-size: var(--fs-lg);
    font-weight: bold;
    border: 2px solid var(--np-dark);
    background: var(--np-green);
    color: var(--np-white) !important;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: background .25s ease, transform .25s ease;
}

    .story-btn img {
        padding-right: 7px;
    }

    .story-btn:hover {
        background: var(--np-accent2);
        color: var(--np-white) !important;
        transform: translateY(-3px);
        text-decoration: none;
    }
/* ====================== END ACTION BUTTONS ========================= */



/* ====================== NOTE ========================= */
.story-note {
    margin-top: 20px;
    font-size: var(--fs-sm);
    opacity: 0.7;
    font-style: italic;
    font-weight: 700;
    max-width: 620px;
    margin-left: auto;
    margin-right: 0;
    text-align: center;
}
/* ====================== END NOTE ========================= */



/* ====================== DIVIDER ========================= */
.story-divider-accent {
    width: 120px;
    height: 4px;
    background: var(--np-accent1);
    margin: 70px auto 0;
    border-radius: 8px;
}
/* ====================== END DIVIDER ========================= */



/* ====================== STORY RESPONSIVE ========================= */
@media (max-width: 900px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-main-card,
    .story-stats-card {
        width: 100%;
        margin: 0 auto;
    }

    .story-stats-list {
        flex-direction: column;
        gap: 20px;
    }

    .story-divider {
        display: none;
    }
}

@media (max-width: 900px) {
    .story-stats-card {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
    }

    .story-stats-list {
        flex-direction: column;
        gap: 20px;
    }

    .story-divider {
        display: none;
    }

    .story-actions {
        width: 100%;
    }
}
/* ====================== END RESPONSIVE ========================= */