.feature-section {
    background: #fff;
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-bottom: 0;
    margin-bottom: 100px;
}
.feature-section__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 32px;
    background: #fff;
    padding: 60px 0 0 0;
    border-radius: 0;
}
.feature-section__header-actions {
    display: flex;
    align-items: flex-end;
}

.feature-section__header-right {
    margin-left: auto;
    flex-direction: column;
    display: flex;
}

.feature-section__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 32px;
    height: 48px;
    font-size: 18px;
    width: 170px;
    margin-left: auto;
    background: transparent;
    color: #1F272F;
    font-weight: 700;
    border-radius: 32px;
    border: 2px solid #1F272F;
    outline: none;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    box-shadow: none;
    cursor: pointer;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
}
.feature-section__btn:hover {
    background: transparent;
    color: #1F272F;
}
.feature-section__btn-chevron {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-section__btn-chevron svg {
    display: inline-block;
    vertical-align: middle;
    stroke: #1F272F;
}
.feature-section__carousel-nav {
    display: flex !important;
    align-items: center !important;
}

.feature-section__dots {
    display: inline-flex !important;
    align-items: center !important;
    margin-right: 40px;
    justify-content: flex-end;
    width: 100%;
    position: static;
    margin-top: 0;
}
.feature-section__label {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border-radius: 6px;
    width: fit-content;
    margin-bottom: 0;
    color: #23282d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.1;
}
.feature-section__title {
    font-size: 32px;
    font-weight: bold;
    margin: 0;
    background: #fff;
    color: #23282d;
}
.feature-section__list {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}
.feature-section__item {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    width: 480px !important;
    min-width: 480px;
    max-width: 480px;
    height: 540px !important;
    max-height: 540px !important;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    padding-bottom: 0;
    transition: transform 0.2s ease;
}

.feature-section__item:hover {
    transform: translateY(-2px);
}
.feature-section__img-wrap {
    width: 480px;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    overflow: hidden;
    position: relative;
}

.feature-section__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    background: #fff;
}

.feature-section__content {
    padding: 20px;
    text-align: center;
    background: #fff;
}

.feature-section__item-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    max-height: 2.8em; /* 2 lines * 1.4 line-height */
    font-size: 1.3rem;
    font-weight: bold;
    margin: 16px 0 0 0;
    color: #222;
    text-shadow: none;
}

.feature-section__item-desc {
    font-size: 14px;
    color: #555;
}
.feature-section__carousel {
    margin-top: 24px;
    width: 100%;
    max-width: 100%;
    position: relative;
    padding: 0;
    margin-bottom: 0;
}
.slick-dots {
    display: flex !important;
    justify-content: flex-end !important;
    gap: 8px;
    align-items: center;
    margin: 0;
    position: static;
}
.slick-dots li {
    margin: 0;
}
.slick-dots li button {
    padding: 0;
    width: 16px;
    height: 16px;
}
.slick-dots li button:before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background: #bbb;
    border-radius: 50%;
    opacity: 1;
    margin: 0 auto;
    transition: background 0.2s;
}
.slick-dots li.slick-active button:before {
    background: #23282d;
}
.feature-section__carousel .slick-list {
    margin: 0 -7.5px !important;
    padding: 0 !important;
    text-align: center;
    margin-bottom: 0 !important;
    height: 540px !important;
    max-height: 540px !important;
}

.feature-section__carousel.slick-initialized {
    height: 540px !important;
    max-height: 540px !important;
}

.feature-section__carousel.slick-slider {
    height: 540px !important;
    max-height: 540px !important;
}
.feature-section__carousel .slick-track {
    display: inline-flex !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    height: 540px !important;
}
.feature-section__carousel .slick-slide {
    margin: 0 7.5px !important;
    display: flex;
    justify-content: center;
    height: 540px !important;
    max-height: 540px !important;
}
@media (max-width: 900px) {
    .feature-section__header { 
        margin-left: 20px; 
    }
    .feature-section__title {
        font-size: 18px;
        font-weight: bold;
        background: #fff;
        color: #23282d;
    }
    .feature-section__label {
        font-size: 13px;
    }
    .feature-section__container {
        max-width: 100vw;
        padding: 0;
        background: #f6f8fa;
    }
    .feature-section__header {
        flex-direction: row;
        display: flex;
    }
    .feature-section__header-left {
        margin-left: 20px;
        flex-direction: row;
        align-items: flex-start;
    }
    .feature-section__header-right {
        margin-left: auto;
        padding-right: 20px;
    }
    .feature-section__btn {
        margin-left: auto;
        padding-right: 20px;
    }
    .feature-section__dots {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 24px 0 0 0;
        height: 48px;
        width: 100%;
        position: static;
    }
    .slick-dots {
        display: flex !important;
        justify-content: center !important;
        gap: 8px;
        align-items: center;
        margin: 12px auto 0 auto;
        position: static;
    }
    .feature-section__carousel-wrapper {
        max-width: 100vw;
        padding: 0;
    }
    .feature-section__carousel {
        width: 100vw;
        max-width: 100vw;
        margin-left: -50vw;
        left: 50%;
        position: relative;
        display: block;
        justify-content: unset;
    }
    .feature-section__item {
        width: 90vw !important;
        min-width: 90vw;
        max-width: 90vw;
        height: auto;
        margin: 0 auto;
    }
    .feature-section__img-wrap {
        width: 480px;
        height: 480px;
        min-height: 200px;
        max-height: 480px;
        margin: 0 auto;
    }
    .feature-section__img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        background: #fff;
    }
    .slick-arrow {
        display: flex !important;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        width: 56px;
        height: 56px;
        background: #1F272F;
        color: #fff;
        border-radius: 50%;
        border: none;
        font-size: 0;
        line-height: 1;
        text-align: center;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        cursor: pointer;
        opacity: 1;
        padding: 0;
        transition: background 0.2s;
    }
    .slick-arrow:focus,
    .slick-arrow:active,
    .slick-arrow:hover {
        background: #1F272F;
        outline: none;
        opacity: 1;
    }
    .slick-prev {
        left: 20px;
    }
    .slick-next {
        right: 20px;
    }
    .slick-arrow span,
    .slick-arrow:before {
        display: none !important;
    }
    .slick-arrow img {
        display: block;
        width: 24px;
        height: 24px;
        margin: 0 auto;
    }
    .feature-section__carousel .slick-list {
        margin: 0 !important;
        padding: 0 !important;
        height: 660px !important;
    }
    
    .feature-section__carousel.slick-initialized {
        height: 540px !important;
        max-height: 540px !important;
    }
    
    .feature-section__carousel.slick-slider {
        height: 540px !important;
        max-height: 540px !important;
    }
    .feature-section__carousel .slick-slide {
        margin: 0 !important;
        height: 540px !important;
        max-height: 540px !important;
    }
}
.feature-section__container {
    max-width: 1220px;
    margin: 0 auto;
    width: 100%;
    background: #fff;
    padding-bottom: 0;
}
.feature-section__carousel-wrapper {
    max-width: 1470px;
    margin: 0 auto;
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 0;
}
.feature-section__img-overlay {
    display: none !important;
}