.ds-1498-wrapper {
    background-color: #F8F5EF;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ds-1498-header {
    text-align: center;
    max-width: 800px;
    margin-bottom: 50px;
}

.ds-1498-eyebrow {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: #D4B996;
    margin-bottom: 15px;
}

.ds-1498-heading {
    font-size: 36px;
    color: #0A192F;
    margin-bottom: 20px;
    font-weight: 600;
}

.ds-1498-intro {
    font-size: 16px;
    line-height: 1.6;
    color: #5A6A7D;
}

.ds-1498-cards {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 60px;
}

.ds-1498-card {
    flex: 1;
    background: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.02);
    transition: transform 0.3s ease;
}

.ds-1498-card:hover {
    transform: translateY(-5px);
}

.ds-1498-card-content {
    flex-grow: 1;
}

.ds-1498-card-icon {
    font-size: 28px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.ds-1498-card-icon svg {
    width: 28px;
    height: 28px;
}

.ds-1498-card-title {
    font-size: 22px;
    color: #0A192F;
    margin-bottom: 15px;
    line-height: 1.3;
}

.ds-1498-card-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #5A6A7D;
    margin: 0;
}

.ds-1498-card-footer {
    margin-top: 30px;
}

.ds-1498-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.ds-1498-footer {
    text-align: center;
    max-width: 700px;
}

.ds-1498-support-note {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.ds-1498-btn-primary {
    display: inline-block;
    padding: 15px 32px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.ds-1498-btn-primary:hover {
    opacity: 0.9;
}

/* Tablet */
@media (max-width: 1024px) {
    .ds-1498-cards {
        flex-wrap: wrap;
        justify-content: center;
    }
    .ds-1498-card {
        flex: 1 1 calc(50% - 30px);
        max-width: calc(50% - 15px);
    }
}

/* Mobile */
@media (max-width: 767px) {
    .ds-1498-cards {
        /* flex-direction controlled via elementor settings */
    }
    .ds-1498-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .ds-1498-heading {
        font-size: 28px;
    }
    .ds-1498-btn-primary {
        width: 100%;
    }
}
