.aa-home-benefit,
.aa-home-benefit * {
    box-sizing: border-box;
}

.aa-home-benefit {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 410px;
    overflow: hidden;
    border: 1px solid #e3e8ef;
    border-radius: 0;
    background: #fff;
    color: #17202b;
    transition: border-color .2s ease, transform .2s ease;
}

.aa-home-benefit:hover {
    border-color: #ff7100;
    transform: translateY(-3px);
}

.aa-home-benefit__media {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 185px;
    padding: 14px 24px;
    background: #fff7ef;
    text-decoration: none;
}

.aa-home-benefit__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.aa-home-benefit__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 24px 24px;
}

.aa-home-benefit__title {
    margin: 0 0 9px;
    color: #17202b;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.aa-home-benefit__text {
    margin: 0 0 20px;
    color: #536170;
    font-size: 15px;
    line-height: 1.5;
}

.aa-home-benefit__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 42px;
    margin-top: auto;
    padding: 10px 17px;
    border-radius: 0;
    background: #ff7100;
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none !important;
    transition: background-color .2s ease, transform .2s ease;
}

.aa-home-benefit__button:hover {
    background: #e96500;
    color: #fff !important;
    transform: translateY(-1px);
}

.aa-home-benefit__button:focus-visible {
    outline: 3px solid rgba(255, 113, 0, .32);
    outline-offset: 3px;
}

.aa-home-benefit__arrow {
    font-size: 19px;
    line-height: 1;
}

@media (max-width: 767px) {
    .aa-home-benefit {
        min-height: 0;
    }

    .aa-home-benefit__media {
        height: 160px;
        padding: 12px 22px;
    }

    .aa-home-benefit__content {
        padding: 19px 20px 21px;
    }

    .aa-home-benefit__title {
        font-size: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .aa-home-benefit,
    .aa-home-benefit__button {
        transition: none;
    }
}
