
#framework_panels {
    display: flex;
    flex-direction: column;
    padding-top: 2rem;
    border-top: 1px solid currentColor;
    gap: 2rem;
}

@media (min-width: 1280px) {
    #framework-section {
        position: relative;
    }

    #framework_panels {
        gap: 0;
        align-items: stretch;
        justify-content: end;
        min-height: 60vh;
        max-width: 100%;
        overflow: visible;
        flex-direction: row;
    }
}

@media (min-width: 1280px) {
    #framework_panels [data-panel] {
        flex: 1 1 0;
        background-color: var(--sl-black);
        padding-right: 24px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        box-sizing: border-box;
        min-width: 0;
        position: relative;
        overflow: hidden;

        &:not(:first-child) {
            border-left: 1px solid currentColor;
            padding-left: 24px;
        }
    }   
}

.framework_panel__number {
    font-size: 32px;
    font-weight: 700;
}
.framework_panel__title {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

.framework_panel__lower {
    display: flex;
    flex: 0 1 auto;
    align-items: flex-end;
    justify-content: space-between;
}


.framework_panel__copy {
    flex: 1 1 auto;
    min-width: 0;
    text-wrap: balance;

    /* @media (min-width: 1280px) {
        padding-right: 1rem
    } */
}

.framework_panel__copy_inner {
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    font-size: 30px;
    p {
        font-size: inherit;
        line-height: 1.1;
    }
}

@media (max-width: 1279px) {
    .framework_panel__copy_inner {
        max-height: none;
        opacity: 1;
        overflow: visible;
        font-size: 24px;
        p {
            font-size: inherit;
        }
    }
}

.framework_panel__icon {
    flex: 0 0 auto;
    max-width: 100%;
    height: auto;
    align-self: flex-end;
}

@media (min-width: 1280px) {
    .framework_panel__icon {
        width: auto;
        min-width: 100px;
    }
}
