.offers-groups{
    margin-top:40px;
    display:grid;
    gap:30px;
    grid-template-columns:repeat(2,1fr);
}

.offers-group{
    padding:26px;
    border-radius:18px;
    background:rgba(255,255,255,.28);
    border:1px solid var(--line);
}

.offers-group h3{
    margin-bottom:14px;
    font-size:1.2rem;
}

.offers-links{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.offers-links a{
    display:flex;
    justify-content:space-between;
    padding:10px 0;
    border-bottom:1px solid rgba(76,68,61,.1);
    font-size:.95rem;
    transition:.2s;
}

.offers-links a:hover{
    padding-left:8px;
    color:var(--green-dark);
}

@media (max-width:820px){
    .offers-groups{
        grid-template-columns:1fr;
    }
}
