.exclusive__items {
    display: grid;
    row-gap: 28px;
    column-gap: 28px;
    grid-template-columns: repeat(2, 1fr);
}
.exclusive {
    padding: 30px;
    border-radius: 60px;
    border: 2px solid rgba(255, 255, 255, 1);
    background: linear-gradient(110deg, rgba(255, 255, 255, 0.24) 0%, rgba(254, 254, 254, 0.24) 99.25%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: box-shadow 0.2s ease;
}
.exclusive__img {
    border-radius: 44px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 242px;
}
.exclusive__content {
    margin-top: 26px;
    padding: 0 14px;
}
.exclusive--title {
    color: #383838;
    font-family: Montserrat, serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 29px;
    text-transform: uppercase;
}
.exclusive--text {
    color: rgba(56, 56, 56, 0.70);
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
    margin-top: 10px;
}
.exclusive--link {
    color: #2C63AC;
    font-size: 16px;
    font-weight: 700;
    line-height: 21px;
    margin-top: 12px;
    display: block;
}
.exclusive:hover {
    box-shadow: 20px 4px 52px 0 rgba(147, 151, 173, 0.25);
}
.exclusive__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 20px;
}
.exclusive--link2 {
    color: #004E86;
    font-size: 15px;
    font-weight: 700;
    line-height: 19px;
    display: flex;
    align-items: center;
}
.exclusive--link2 span {
    font-size: 20px;
    margin-left: 8px;
}

@media screen and (max-width: 1200px) {
    .exclusive__items {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media screen and (max-width: 700px) {
    .exclusive__items {
        row-gap: 24px;
    }
    .exclusive {
        border-radius: 40px;
        padding: 12px 12px 20px;
    }
    .exclusive__img {
        border-radius: 30px;
    }
    .exclusive__content {
        margin-top: 19px;
        padding: 0 10px;
    }
    .exclusive--title {
        font-size: 18px;
        line-height: 23px;
    }
    .exclusive--text {
        font-size: 14px;
        line-height: 18px;
        margin-top: 15px;
    }
    .exclusive--link {
        font-size: 15px;
        line-height: 19px;
        margin-top: 16px;
    }
    .exclusive__head {
        flex-wrap: wrap;
        row-gap: 6px;
    }
    .exclusive--link2 {
        font-size: 14px;
        line-height: 18px;
    }
    .exclusive--link2 span {
        font-size: 16px;
    }
}