.swiper-about {
    overflow: visible !important;
}

.swiper-navigation.about-navigation.about-navigation {
    position: relative;
    max-width: 200px;
}

.about-navigation .swiper-prev {
    left: 10px;
    background-image: url('../../images/swiper-prev-green.svg');
}

.about-navigation .swiper-next {
    right: 10px;
    background-image: url('../../images/swiper-next-green.svg');
}

.about-navigation .swiper-next.swiper-button-disabled,
.about-navigation .swiper-prev.swiper-button-disabled {
    opacity: 0;
}

.about-section {
    margin-bottom: 100px; 
}

.about-block {
    position: relative;
    background-color: #1D1F14;
    display: flex;
    min-height: 500px;
    border-radius: 3px;
}

.about-block::after {
    content: "";
    position: absolute;
    inset: -6px;
    border: 2px solid #939D62;
    border-radius: 5px;
    transition: opacity 200ms ease-in-out, transform 300ms ease-in-out;
    pointer-events: none;
    z-index: -1;   
}

.about-block-image {
    position: relative;
    overflow: hidden;
    flex: 1;
    border-radius: 3px 0 0 3px;
}

.about-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='308' height='404' viewBox='0 0 308 404' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M225.5 0H-89.9993L-90 404H275.5L225.5 0Z' fill='white'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg width='308' height='404' viewBox='0 0 308 404' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M225.5 0H-89.9993L-90 404H275.5L225.5 0Z' fill='white'/%3E%3C/svg%3E");
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.about-block-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 16px;
    color: var(--white);
}
a.about-block-detail-link:hover {
    color: #8c955c;
}

.about-block.has-detail:hover::after {
    opacity: 1;
    transform: scale(1.01);
}

.about-block-actions {
    margin-top: 24px;
}

.about-block-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #D4D8C0;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.about-block-detail-link .material-icons-outlined {
    font-size: 22px;
    transition: transform 200ms ease;
}

.about-block-detail-link:hover .material-icons-outlined {
    transform: translateX(4px);
}

.about-block-pre-title {
    font-size: 20px;
    color: #D4D8C0;
    text-transform: uppercase;
    font-weight: 600;
}

.about-block-content-title {
    font-weight: 600;
}

/* Mobile styles */
@media (max-width: 768px) {
    .about-section {
        margin-bottom: 25px; 
    }
    /* Disable swiper on mobile */
    .swiper-about .swiper-wrapper {
        flex-direction: column;
        transform: none !important;
        gap: 30px;
    }

    .swiper-about .swiper-slide {
        width: 100% !important;
        margin: 0 !important;
    }

    .about-block {
        flex-direction: column;
        min-height: auto;
    }

    .about-block-image {
        border-radius: 3px 3px 0 0;
        flex: none;
        height: 200px;
    }

    .about-block-image img {
        -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0H100V100L0 85V0Z' fill='white'/%3E%3C/svg%3E");
        mask-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0H100V100L0 85V0Z' fill='white'/%3E%3C/svg%3E");
        -webkit-mask-size: 100% 100%;
        mask-size: 100% 100%;
    }

    .about-block-content {
        padding: 0 24px 24px 24px;
    }

    .about-block-actions {
        margin-top: 16px;
    }
}