.cards-container {
    position: relative;
    width: 1160px;
    margin: 0 auto;
    height: 565px;
}

.offer {
    position: absolute;
    width: 375px;
    height: 250px;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(11, 26, 71, .3);
    color: #fff;
    cursor: pointer;
    transition: all .5s ease-out;
    padding: 20px;
    overflow: hidden;
}

.offer-1 {
    background: #0B2347;
}

.offer-2 {
    background: #1E45BD;
}

.offer-3 {
    background: #132B76;
}

.pill-button {
    background: rgba(255, 255, 255, 0.2);
    width: 160px;
    height: 35px;
    border-radius: 39px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.pill-button:hover {
    background: rgba(255, 255, 255, .35);
}

.offer-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    margin: 40px 0;
    color: #fff;
}

.offer-description {
    opacity: 0;
    transform: translateY(-10px);
    transform: translate(-50%, -50%);
    font-size: 16px;
    line-height: 24px;
    width: 775px;         
    white-space: normal;  
    overflow: visible;
}

.offer.expanded .offer-description.show-desc {
    opacity: 1;
    transform: translateY(0);
    font-size: 18px;
    line-height: 28px;
    margin: 40px 0px 0px 40px;
}

.plus-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
}

.offer:hover .plus-icon {
    opacity: 1;
}

.offer.expanded {
    top: 0 !important;
    left: 0 !important;
    width: 100%;
    height: auto;
    min-height: 510px;
    border-radius: 15px;
    z-index: 2;
    padding: 30px;
    cursor: default;
}

.offer.expanded .plus-icon {
    display: none;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    width: 30px;
    height: 30px;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 65px;
    cursor: pointer;
    z-index: 10;
    font-weight: 100;
}

.offer.hide {
    cursor: none !important;
}
.offer.expanded .offer-svg {
    transform: scale(1.6);
    margin-right: 60px;
    margin-top: 25px; 
}
.offer.expanded .offer-title {
    font-size: 30px;
    line-height: 40px;
    margin-top: 1px; 
    margin: 0px 0px 0px 40px;              
}
.offer.expanded .obves-btn {
    margin: 0px 0px 0px 40px;              
}