/* "Sizes for every operation" — fig 5114:14222. Centred head, four size cards,
   one button under them. */

.corp-sizes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
    margin-top: 50px;
}

.corp-size-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 25px;
    border-radius: 30px;
    background: #fff;
    text-align: center;
    filter: drop-shadow(0 1px 2.5px rgba(0, 0, 0, .1));
}

.corp-size-range {
    font-size: 30px;
    font-weight: 700;
    line-height: normal;
    color: var(--corp-ink);
}

.corp-size-use {
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    color: var(--corp-ink);
}

.corp-size-capacity {
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: var(--corp-muted);
}

.corp-sizes-cta {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

@media (max-width: 1470px) {
    .corp-sizes-grid {
        gap: 24px;
    }
}

@media (max-width: 1199px) {
    .corp-sizes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .corp-sizes-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 20px;
    }

    .corp-size-card {
        border-radius: 20px;
    }

    .corp-sizes-cta {
        margin-top: 20px;
    }
}

/* The frame draws this button 395 wide — wider than its label plus the canon's
   70 padding — down to the tablet frame, where the phone one lets it fill the
   column instead. */
@media (min-width: 768px) {
    .corp-sizes-cta .corp-btn {
        min-width: 395px;
    }
}
