.subcategory-preview-element {
    font-family: "Roboto", sans-serif;
}
.subcategory-preview-element--white {
    background-color: #fff;
}
.subcategory-preview-element--light-gray {
    background: #f8fafc;
}
.subcategory-preview-element__header {
    text-align: center;
}
.subcategory-preview-element__logo {
    max-width: 95px;
    width: 100%;
    margin: 0 auto;
}
.subcategory-preview-element__logo img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.subcategory-preview-element__title {
    font-size: 48px;
    line-height: 60px;
    color: #202939;
    margin-bottom: 0;
    margin-top: 16px;
}
@media (max-width: 992px) {
    .subcategory-preview-element__title {
        font-size: 32px;
        line-height: 40px;
    }
}
@media (max-width: 480px) {
    .subcategory-preview-element__title {
        font-size: 24px;
        line-height: 32px;
    }
}

.subcategory-preview-element__items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 64px;
}

@media (max-width: 480px) {
    .subcategory-preview-element__items {
        margin-top: 48px;
        gap: 0;
    }
}
.subcategory-preview-element__item {
    border: 1px solid #e3e8ef;
    padding: 48px;
    max-width: 658px;
    background: #fff;
}
@media (max-width: 480px) {
    .subcategory-preview-element__item {
        padding: 32px 0;
        border: 0;
        border-top: 1px solid #e3e8ef;
        background: transparent;
    }
}
.subcategory-preview-element ul {
    margin-top: 16px;
    margin-bottom: 0;
    padding-left: 20px;
}
.subcategory-preview-element a {
    font-size: 16px;
    color: #007bff;
    text-decoration: none;
}
.subcategory-preview-element strong {
    display: block;
    margin-top: 16px;
}
.subcategory-preview-element.subcategory-preview-element--row strong {
    margin-top: 0px;
}
.subcategory-preview-element__thumbnail {
    max-width: 94px;
    width: 100%;
}
.subcategory-preview-element__thumbnail img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.subcategory-preview-element__name {
    font-size: 30px;
    line-height: 38px;
    color: #121926;
    margin-top: 16px;
}
@media (max-width: 480px) {
    .subcategory-preview-element__name {
        font-size: 24px;
        line-height: 30px;
    }
}

.subcategory-preview-element--row .subcategory-preview-element__item {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: nowrap;
    background: none;
    border: 0;
    border-bottom: 1px solid #e3e8ef;
    max-width: 100%;
    width: 100%;
}
.subcategory-preview-element--row .subcategory-preview-element__item:first-child {
    /* border-top: 0; */
    border-top: 1px solid #e3e8ef;
}
@media (max-width: 1024px) {
    .subcategory-preview-element--row .subcategory-preview-element__item {
        flex-wrap: wrap;
        gap: 20px;
    }
}
@media (max-width: 992px) {
    .subcategory-preview-element--row .subcategory-preview-element__item {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 0;
        padding-right: 0;
    }
}
