/* Shorts landing page extras */
.Shorts-landing-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1080px;
    margin: 2.5rem auto 0;
    padding: 0 1.5rem;
}

.Shorts-feature {
    padding: 1.5rem 2rem 1.5rem 0;
    border-right: 1px solid #e8e4de;
    padding-right: 2rem;
    margin-right: 0;
}

.Shorts-feature:last-child {
    border-right: none;
    padding-right: 0;
    padding-left: 2rem;
}

.Shorts-feature:not(:first-child):not(:last-child) {
    padding-left: 2rem;
}

.Shorts-feature-icon {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
    line-height: 1;
}

.Shorts-feature h3 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 0.35rem;
    color: #1f2937;
    letter-spacing: -0.01em;
}

.Shorts-feature p {
    font-size: 0.825rem;
    color: #888;
    line-height: 1.55;
    margin: 0;
}

html.dark .Shorts-feature {
    border-color: #334155 !important;
}

html.dark .Shorts-feature h3 {
    color: #f8fafc !important;
}

html.dark .Shorts-feature p {
    color: #94a3b8 !important;
}

@media (max-width: 600px) {
    .Shorts-landing-features {
        grid-template-columns: 1fr;
        padding: 0 1.25rem;
    }

    .Shorts-feature {
        border-right: none;
        border-bottom: 1px solid #e8e4de;
        padding: 1.25rem 0;
    }

    .Shorts-feature:last-child {
        border-bottom: none;
        padding-left: 0;
    }

    .Shorts-feature:not(:first-child):not(:last-child) {
        padding-left: 0;
    }
}
