.quote-band {
    background: var(--dark-blue);
    padding: 45px 0;
}

.quote-band-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

.quote-band-rule {
    width: 3px;
    background: var(--orange);
    align-self: stretch;
    flex-shrink: 0;
}

.quote-band-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1000px;
}
.quote-band-body p {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 34px;
    line-height: 1.3;
    letter-spacing: -0.025em;
    color: #fff;
}
.quote-band-attribution {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.14em;
    color: var(--light-blue);
    text-transform: uppercase;
}

@media screen and (max-width: 1024px) {
    .quote-band-body p {
        font-size: 30px;
    }
}

@media screen and (max-width: 640px) {
    .quote-band-body p {
        font-size: 25px;
    }
}
