/* -----------OTHER SERIES-----------*/
.template_other_series {
    padding: 100px 30px 50px;
    position: relative;
    z-index: 1;
}

.template_other_series_list {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.template_other_series_item {
    width: calc((100% - 40px) / 3);
    max-width: 240px;
    padding: 20px;
    border-radius: 20px;
    border: 3px solid var(--gray);
    background: #fff;
    box-sizing: border-box;
}
.template_other_series_item_title {
    font-size: clamp(16px, calc((100vw / 900) * 20), 20px);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.template_other_series_item_toggle {
    width: 6px;
    object-fit: contain;
}
.template_other_series_item_image {
    margin: 20px 0 10px;
}
.template_other_series_item_text {
    font-size: clamp(12px, calc((100vw / 600) * 16), 16px);
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .template_other_series {
        padding: 70px 30px 50px;
    }
    .template_other_series_list {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 0 50px;
    }
    .template_other_series_item {
        width: 100%;
        max-width: 320px;
        padding: 20px 15px;
        margin: 0;
    }
    .template_other_series_item_title {
        font-size: clamp(14px, calc((100vw / 390) * 14), 16px);
    }
    .template_other_series_item_image {
        margin: 10px 0;
    }

}


/* -----------OTHER CATEGORIES-----------*/
.template_other_categories {
    padding: 50px 30px 100px;
    position: relative;
    z-index: 2;
}
.template_other_categories_list {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: clamp(20px, calc((100vw / 1440) * 40), 40px);
}
.template_other_categories_item {
    width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.template_other_categories_item_title {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}
.template_other_categories_item_image {
    width: 100%;
    aspect-ratio: 1;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 50%;
}

@media screen and (max-width: 1024px) {
    .template_other_categories_list {
        max-width: 500px;
        gap: 40px;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 767px) {
    .template_other_categories_list {
        max-width: 500px;
        gap: 20px;
        flex-wrap: wrap;
    }
    .template_other_categories_item_title {
        font-size: 14px;
    }
}