.offer-catalog-grid-5e211eb9 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.offer-card-5e211eb9 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    background-color: #f7f5f0; /* warm sand beige fallback */
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e5e5;
}

.offer-card-5e211eb9:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}

.offer-card-icon-5e211eb9 {
    font-size: 28px;
    color: #6b8e23; /* muted green fallback */
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.offer-card-icon-5e211eb9 svg {
    width: 28px;
    height: 28px;
    fill: #6b8e23;
}

.offer-card-title-5e211eb9 {
    margin: 0 0 12px 0;
    font-size: 20px;
    font-weight: 600;
    color: #1a2a3a; /* dark blue fallback */
}

.offer-card-desc-5e211eb9 {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #4a5a6a;
}
