.sto-works-grid {
    margin: 0 0 12px;
    min-width: 0;
}

.heading-with-count.heading-with-count--sto-works {
    margin-bottom: 16px;
}

h2.sto-works-grid__title {
    margin: 0 0 22px;
    font-size: 22px;
    line-height: 26px;
    font-weight: 600;
    color: #111827;
    text-transform: none;
    text-align: center;
    white-space: normal;
}

.sto-works-grid__frame {
    position: relative;
    min-width: 0;
}

.sto-works-grid__frame.is-collapsed {
    max-height: 180px;
    overflow: hidden;
}

.sto-works-grid__frame.is-collapsed::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 72px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 75%);
    pointer-events: none;
}

.sto-works-grid__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sto-works-grid__item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    color: #111827;
    text-decoration: none;
}

.sto-works-grid__item:hover,
.sto-works-grid__item:focus {
    color: #f93f20;
    text-decoration: none;
}

.sto-works-grid__icon {
    display: block;
    flex: 0 0 64px;
    width: 64px;
    height: 48px;
    object-fit: contain;
}

.sto-works-grid__name {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 400;
}

.sto-works-grid__more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
    min-height: 0;
    margin: -4px 0 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #f93f20;
    font: inherit;
    font-size: 13px;
    line-height: 1;
    font-weight: 500;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.sto-works-grid__more:hover,
.sto-works-grid__more:focus {
    color: #d93418;
    outline: none;
}

.sto-works-grid__more-chevron {
    display: block;
    flex: 0 0 auto;
    width: 9px;
    height: 6px;
}

.sto-works-grid.is-expanded .sto-works-grid__more-chevron {
    display: none;
}

@media all and (min-width: 768px) {
    .sto-works-grid__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 40px;
    }
}

@media all and (min-width: 1124px) {
    .sto-works-grid {
        margin: 0 0 16px;
    }

    .sto-works-grid__list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        column-gap: 24px;
        row-gap: 20px;
    }
}
