/* Insights page styles — simplified vertical list */

#insights {
    position: relative;
    font-size: clamp(.875rem, 1vw, 1.75rem)
}

#insights-main {
    min-height: calc(var(--vh, 1vh) * 100);
    padding-top: calc(var(--base-padding-y) * 3);
    padding-bottom: calc(var(--base-padding-y) * 2)
}

#insights-main-title-wrapper {
    grid-column: 1 / -1;
    margin-bottom: calc(var(--base-padding-y) * 1.5);
    text-align: center
}

@media (max-width: 812px) {
    #insights-main-title-wrapper {
        grid-column: 1 / span 6
    }
}

#insights-main-title {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 400;
    line-height: .95;
    letter-spacing: -.03em;
    margin: 0
}

@media (min-aspect-ratio: 21/9) {
    #insights-main-title {
        font-size: 3.5vw
    }
}

@media (max-width: 812px) {
    #insights-main-title {
        font-size: 10vw
    }
}

#insights-main-subtitle {
    font-size: 1.1em;
    line-height: 1.4;
    margin-top: 1em;
    opacity: .6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto
}

#insights-list {
    grid-column: 2 / span 10;
    display: flex;
    flex-direction: column
}

@media (max-width: 812px) {
    #insights-list {
        grid-column: 1 / span 6
    }
}

.insight-item {
    display: block;
    padding: 2.5em 0;
    border-top: 1px solid rgba(0, 0, 0, .1);
    transition: padding-left .3s cubic-bezier(.35, 0, 0, 1);
    cursor: pointer;
    pointer-events: auto
}

.insight-item:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, .1)
}

@media (hover: hover) {
    .insight-item:hover {
        padding-left: 1em
    }
    .insight-item:hover .insight-item-title {
        color: var(--color-blue)
    }
}

.insight-item-meta {
    display: flex;
    gap: 1.5em;
    font-size: .75em;
    text-transform: uppercase;
    letter-spacing: .05em;
    opacity: .5;
    margin-bottom: .75em
}

.insight-item-category {
    font-weight: 500
}

.insight-item-title {
    font-size: clamp(1.25rem, 2vw, 2rem);
    line-height: 1.2;
    margin: 0 0 .5em;
    transition: color .3s cubic-bezier(.35, 0, 0, 1)
}

.insight-item-excerpt {
    font-size: 1em;
    line-height: 1.5;
    opacity: .6;
    margin: 0 0 .75em;
    max-width: 700px
}

.insight-item-read {
    font-size: .8em;
    text-transform: uppercase;
    letter-spacing: .05em;
    opacity: .4
}
