.home-destinations {
    position: relative;
    z-index: 1;
    padding-top: 450px;
    margin-top: -360px;
    padding-bottom: 340px;
    margin-bottom: -220px;
    background-image: url('/skin/ukexpes_skin/frontend/img/home-page/images/destinations_bg.png?v=1');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.home-section-head {
    margin-bottom: 24px;
}

.home-section-head h2 {
    margin: 0 auto 8px;
    font-weight: 700;
    font-size: 48px;
    line-height: 140%;
    color: #001F48;
    text-align: center;
}

.home-section-head p {
    font-weight: 400;
    font-size: 24px;
    line-height: 42px;
    text-align: center;
    color: #0B1FA1;
}

.home-destination-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 17px;
}

.destination-card {
    background: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    min-height: 240px;
    display: flex;
    flex-direction: column;
}

.destination-card__top {
    display: flex;
    flex-direction: column;
}

.destination-card__text {
    display: flex;
    flex-direction: column;
}

.destination-card__media {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 64px;
}

.destination-card__media .destination-card__icon {
    margin-bottom: 0;
}

.destination-card__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 8px 16px;
    border-radius: 34px;
    background: #FFD9CD;
    border: 1px solid #FFA68B;
    color: #8B2C0F;
    font-family: Arimo;
    font-weight: 700;
    font-size: 14px;
    line-height: 120%;
}

.home-destination-grid .destination-card:nth-child(even) {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(217, 234, 252, 1);
    backdrop-filter: blur(24px);
}

.destination-card__icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 64px;
}

.destination-card__icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.destination-card h3 {
    margin: 0 0 8px;
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    color: #1E17E0;
}

.destination-card p {
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    color: #001F48;
    margin: 0 0 12px;
}

.destination-card .destination-card__small {
    margin: 0 0 12px;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    color: #656565;
}

.destination-card__btn {
    position: relative;
    flex-direction: row-reverse;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 0;
    border: none;
    background: none;
    color: #1E17E0;
    font-weight: 400;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: auto;
}

.destination-card__btn::before {
    content: '';
    display: flex;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: url('/skin/ukexpes_skin/frontend/img/home-page/icons/chevron-right.svg?v=1') center/contain no-repeat;
}

.destination-card__btn::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #1E17E0;
    transform: scaleX(0) translateZ(0);
    transform-origin: left center;
    transition: transform 0.25s ease;
    will-change: transform;
    backface-visibility: hidden;
}

@media (hover: hover) {
    .destination-card__btn:hover {
        text-decoration: none;
        color: #1E17E0;
    }
}

.destination-card__btn:hover::after {
    transform: scaleX(1) translateZ(0);
}

@media (max-width: 991px) {
    .home-destination-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .destination-card h3 {
        font-size: 24px;
    }

    .destination-card p {
        font-size: 16px;
        line-height: 120%;
    }
}

@media (max-width: 768px) {
    .home-destination-grid {
        gap: 8px;
    }

    .destination-card {
        padding: 16px 16px 24px;
        min-height: 161px;
    }

    .destination-card__top {
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
        width: 100%;
        margin-bottom: 16px;
    }

    .destination-card__text {
        flex: 1;
        min-width: 0;
    }

    .destination-card__icon {
        width: 48px;
        height: 48px;
        margin-bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .destination-card__media {
        margin-bottom: 0;
        width: fit-content;
    }

    .destination-card__tag {
        display: none;
    }

    .destination-card h3 {
        margin: 0 0 8px;
        width: auto;
        display: block;
        font-size: 20px;
        line-height: 120%;
    }

    .destination-card p {
        margin: 0;
    }

    .destination-card__icon img {
        width: 48px;
        height: 48px;
    }

    .destination-card__btn {
        margin-top: auto;
    }
}

@media (max-width: 560px) {
    .home-destinations {
        margin-top: -320px;
    }

    .home-destination-grid {
        grid-template-columns: 1fr;
    }
}
