.t1-hero {
    padding: 1.75rem 0 0.5rem;
}

.t1-hero__intro {
    margin-bottom: 1.75rem;
}

.t1-hero__grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 992px) {
    .t1-hero__grid {
        grid-template-columns: 1.45fr 1fr;
        align-items: stretch;
        min-height: 480px;
    }
}

.t1-feature {
    display: flex;
    flex-direction: column;
    background: var(--nl-surface);
    border: 1px solid var(--nl-line);
    border-radius: var(--nl-radius-lg);
    overflow: hidden;
    box-shadow: var(--nl-shadow-sm);
    height: 100%;
    transition: box-shadow 0.25s var(--nl-ease), transform 0.25s var(--nl-ease);
}

.t1-feature:hover {
    box-shadow: var(--nl-shadow);
    transform: translateY(-2px);
    color: inherit;
}

.t1-feature__media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--nl-line);
}

@media (min-width: 992px) {
    .t1-feature__media {
        aspect-ratio: auto;
        flex: 1;
        min-height: 280px;
    }
}

.t1-feature__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--nl-ease);
}

.t1-feature:hover .t1-feature__media img {
    transform: scale(1.04);
}

.t1-feature__body {
    padding: 1.35rem 1.5rem 1.5rem;
}

.t1-feature__title {
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    margin: 0 0 0.65rem;
}

.t1-feature__excerpt {
    margin: 0 0 0.85rem;
    color: var(--nl-muted);
    font-size: 1rem;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.t1-hero__side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.t1-side-story {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 0.9rem;
    align-items: center;
    padding: 0.75rem;
    background: var(--nl-surface);
    border: 1px solid var(--nl-line);
    border-radius: var(--nl-radius-lg);
    box-shadow: var(--nl-shadow-sm);
    transition: box-shadow 0.2s var(--nl-ease), transform 0.2s var(--nl-ease);
    min-height: 0;
    flex: 1;
}

.t1-side-story:hover {
    box-shadow: var(--nl-shadow);
    transform: translateY(-2px);
    color: inherit;
}

.t1-side-story__media {
    aspect-ratio: 1;
    border-radius: var(--nl-radius);
    overflow: hidden;
    background: var(--nl-line);
}

.t1-side-story__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.t1-side-story__title {
    font-size: 1rem;
    margin: 0 0 0.35rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

@media (max-width: 575px) {
    .t1-side-story {
        grid-template-columns: 88px 1fr;
    }

    .t1-feature__excerpt {
        -webkit-line-clamp: 2;
    }
}
