.industry-faq {
    display: grid;
    grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
    gap: clamp(48px, 8vw, 128px);
    align-items: start;
    padding-top: clamp(84px, 11vw, 152px);
    padding-bottom: clamp(84px, 11vw, 152px);
}

.industry-faq-heading {
    position: sticky;
    top: 126px;
}

.industry-faq-heading h2 {
    max-width: 620px;
    margin: 0 0 26px;
    font-size: clamp(2.5rem, 5vw, 5.5rem);
    line-height: .91;
    letter-spacing: -.055em;
}

.industry-faq-heading > p:last-child {
    max-width: 430px;
    color: var(--muted);
    font-size: 1.03rem;
    line-height: 1.72;
}

.industry-faq .faq-list {
    max-width: none;
    margin: 0;
    border-top: 1px solid var(--line);
}

.industry-faq .faq-list details {
    border-bottom-color: var(--line);
}

.industry-faq .faq-list summary {
    padding: 26px 56px 26px 0;
    font-size: clamp(1.05rem, 1.4vw, 1.28rem);
    line-height: 1.35;
}

.industry-faq .faq-list details p {
    max-width: 720px;
    margin: -4px 0 26px;
    color: var(--muted);
    line-height: 1.75;
}

@media (max-width: 900px) {
    .industry-faq {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .industry-faq-heading {
        position: static;
    }

    .industry-faq-heading > p:last-child {
        max-width: 620px;
    }
}

@media (max-width: 560px) {
    .industry-faq {
        gap: 28px;
        padding-top: 72px;
        padding-bottom: 76px;
    }

    .industry-faq-heading h2 {
        margin-bottom: 20px;
        font-size: clamp(2.55rem, 13vw, 4rem);
    }

    .industry-faq .faq-list summary {
        padding-top: 22px;
        padding-bottom: 22px;
    }
}
