/* ========================================
   COMPONENT: Learn More Story Blocks
   ======================================== */

.learn-more-story {
    margin: 0;
    padding: 80px 0;
    background: #ffffff;
}

.learn-more-story__row {
    display: grid;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}

.learn-more-story__row--top {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 320px;
}

.learn-more-story__row--bottom {
    grid-template-columns: minmax(80px, 120px) minmax(0, 1fr) minmax(120px, 200px);
    min-height: 280px;
}

.learn-more-story__panel {
    position: relative;
}

.learn-more-story__panel--intro {
    background: #82b0be;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px;
}

.learn-more-story__title {
    margin: 0 0 16px;
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    font-weight: 500;
    line-height: 1.25;
}

.learn-more-story__intro {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 35ch;
}

.learn-more-story__panel--image {
    overflow: hidden;
}

.learn-more-story__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.learn-more-story__panel--label {
    background: #4b7b89;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.learn-more-story__label {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    transform: rotate(-90deg);
    white-space: nowrap;
}

.learn-more-story__panel--body {
    background: #ffffff;
    color: #2b2b2b;
    padding: 48px 56px;
    font-size: 1rem;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.learn-more-story__panel--body p {
    margin: 0;
}

.learn-more-story__panel--accent {
    background: #144957;
}

@media (max-width: 980px) {
    .learn-more-story__row--top {
        grid-template-columns: 1fr;
    }

    .learn-more-story__row--bottom {
        grid-template-columns: 1fr;
    }

    .learn-more-story__panel--intro,
    .learn-more-story__panel--body {
        padding: 40px 32px;
    }

    .learn-more-story__label {
        transform: none;
    }
}

@media (max-width: 640px) {
    .learn-more-story {
        padding: 64px 0;
    }

    .learn-more-story__panel--intro,
    .learn-more-story__panel--body {
        padding: 32px 20px;
    }

    .learn-more-story__intro {
        max-width: none;
    }
}
