.velix-about,
.velix-about * {
    box-sizing: border-box;
}

.velix-about {
    width: 100%;
    padding: 18px 30px 14px;
    background: #ffffff;
    overflow: hidden;
}

.velix-about__layout {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 42%) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.velix-about__image-box {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 0 0 0 105px;
    background: #e9ece9;
}

.velix-about__image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.8s ease;
}

.velix-about__image-box:hover .velix-about__image {
    transform: scale(1.05);
}

.velix-about__content {
    min-width: 0;
    padding-right: 65px;
}

.velix-about__description {
    margin: -8px 0 20px;
    color: #171717;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.85;
}

.velix-about__description > :first-child {
    margin-top: 0;
}

.velix-about__description > :last-child {
    margin-bottom: 0;
}

.velix-about__features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 10px;
    margin-bottom: 30px;
}

.velix-about__feature {
    min-width: 0;
    min-height: 50px;
    display: flex;
    align-items: center;
    gap: 11px;
    border-top: 1px solid #e1e1e1;
    color: #b86a47;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.35;
    text-transform: uppercase;
}

.velix-about__feature:nth-last-child(-n + 2) {
    border-bottom: 1px solid #e1e1e1;
}

.velix-about__dot {
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
    border-radius: 50%;
    background: #b75a29;
}

.velix-about__button {
    width: 165px;
    min-height: 56px;
    padding: 12px 26px 12px 30px;
    border: 1px solid #111111;
    border-radius: 999px;
    background: transparent;
    color: #111111;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.velix-about__button:hover,
.velix-about__button:focus {
    background: #111111;
    color: #ffffff;
    transform: translateY(-3px);
}

.velix-about__arrow {
    position: relative;
    width: 24px;
    height: 16px;
    flex: 0 0 24px;
}

.velix-about__arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 20px;
    height: 1.5px;
    background: currentColor;
    transform: translateY(-50%);
}

.velix-about__arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1px;
    width: 8px;
    height: 8px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
}

@media (min-width: 1500px) {
    .velix-about {
        padding-left: 45px;
        padding-right: 45px;
    }

    .velix-about__layout {
        grid-template-columns: minmax(0, 41%) minmax(0, 1fr);
        gap: 55px;
    }

    .velix-about__image-box {
        height: auto;
    }

    .velix-about__description {
        font-size: 17px;
    }

    .velix-about__feature {
        font-size: 15px;
    }
}

@media (max-width: 1050px) {
    .velix-about {
        padding: 35px 25px;
    }

    .velix-about__layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }

    .velix-about__image-box {
        height: auto;
        border-radius: 0 0 0 80px;
    }

    .velix-about__content {
        padding-right: 0;
    }

    .velix-about__description {
        margin-top: 0;
        font-size: 15px;
        line-height: 1.75;
    }

    .velix-about__features {
        grid-template-columns: 1fr;
    }

    .velix-about__feature:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .velix-about__feature:last-child {
        border-bottom: 1px solid #e1e1e1;
    }
}

@media (max-width: 767px) {
    .velix-about {
        padding: 40px 18px;
    }

    .velix-about__layout {
        grid-template-columns: 1fr !important;
        gap: 28px;
    }

    .velix-about__image-box {
        height: auto;
        border-radius: 0 0 0 75px;
    }

    .velix-about__description {
        font-size: 15px;
        line-height: 1.8;
    }

    .velix-about__features {
        grid-template-columns: 1fr !important;
        margin-bottom: 26px;
    }

    .velix-about__feature {
        min-height: 52px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .velix-about__image-box {
        height: auto;
        border-radius: 0 0 0 60px;
    }

    .velix-about__button {
        width: 160px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .velix-about__image,
    .velix-about__button {
        transition-duration: 0.01ms !important;
    }
}
