.co-offers-title {
    margin: 0 0 16px;
    font-size: 2.2em;
    font-weight: 700;
    line-height: 1.2;
}

.co-offers-title::before,
.co-offers-title::after {
    content: none !important;
    display: none !important;
}

.co-offers-subtitle {
    margin: 0 0 32px;
    text-align: center;
    font-size: 1.4em;
    color: #ffffff;
}

.co-offers-grid {
    display: grid;
    gap: 32px;
}

.co-offers-grid[data-cols="2"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.co-offers-grid[data-cols="3"] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.co-offers-grid[data-cols="4"] {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.co-offer-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 16px;
}


.co-offer-top {
    display: grid;
    grid-template-columns: 64px 1fr;
    column-gap: 16px;
    align-items: start;
}

.co-offer-card--no-icon .co-offer-top {
    grid-template-columns: 1fr;
}

.co-offer-icon {
    width: 64px;
    height: 64px;
}

.co-offer-icon img,
.co-offer-icon svg {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
}

.co-offer-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.co-offer-title {
    margin: 0;
    color: #0e2546;
    font-size: 1.3em;
}

.co-offer-title a {
    text-decoration: none;
    color: inherit;
}

.co-offer-text {
    margin: 0;
    color: #4c5466;
}

.co-offer-button {
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    background: linear-gradient(135deg, #204f83 0%, #329cd7 100%);
    transition: filter 0.2s ease, transform 0.2s ease;
}

.co-offer-button:hover,
.co-offer-button:focus-visible {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

@media (max-width: 767px) {
    .co-offers-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .co-offers-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .co-offer-card {
        padding: 24px;
    }
}
