/* ===== Blurb Tabs ===== */
.tab-content {
    display: none;
}

#blurb-tabs .et_pb_column {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px;
    background: rgba(43, 57, 144, 0.06);
    border-radius: 12px;
    margin: 0 auto;
}

#blurb-tabs .tab-title {
    width: calc(25% - 8px);
    min-width: 180px;
    background: #2b3990;
    border-radius: 8px;
    padding: 18px 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

#blurb-tabs .tab-title .et_pb_blurb_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

#blurb-tabs .tab-title .et-pb-icon {
    font-size: 1.8rem !important;
    color: white;
    transition: all 0.3s ease;
    line-height: 1;
}

#blurb-tabs .tab-title h4.et_pb_module_header {
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    margin: 0;
    color: white;
    line-height: 1.3;
}

#blurb-tabs .tab-title:not(.active-tab):hover {
    background: #3a4bb8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

#blurb-tabs .tab-title:not(.active-tab):hover .et-pb-icon {
    transform: scale(1.1);
}

#blurb-tabs .tab-title.active-tab {
    background: #b79a5f;
    box-shadow: 0 4px 15px rgba(183, 154, 95, 0.35);
    transform: translateY(-1px);
}

#blurb-tabs .tab-title.active-tab .et-pb-icon {
    color: #2b3990 !important;
    transform: scale(1.15);
}

#blurb-tabs .tab-title.active-tab h4.et_pb_module_header {
    color: #1a2660 !important;
    font-weight: 700;
}

#blurb-tabs .tab-title.active-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 3px;
    background: #2b3990;
    border-radius: 2px 2px 0 0;
}

@media (max-width: 980px) {
    #blurb-tabs .tab-title {
        width: calc(50% - 8px);
        min-width: 160px;
        padding: 16px 10px;
    }
}

@media (max-width: 767px) {
    #blurb-tabs .et_pb_column {
        gap: 6px;
        padding: 8px;
        background: transparent;
    }
    #blurb-tabs .tab-title {
        width: calc(50% - 6px);
        min-width: 0;
        padding: 12px 8px;
        border-radius: 6px;
    }
    #blurb-tabs .tab-title .et-pb-icon {
        font-size: 1.4rem !important;
    }
    #blurb-tabs .tab-title h4.et_pb_module_header {
        font-size: 0.8rem;
        font-weight: 500;
    }
    #blurb-tabs .tab-title.active-tab {
        box-shadow: 0 2px 8px rgba(183, 154, 95, 0.4);
    }
}

@media (max-width: 479px) {
    #blurb-tabs .tab-title {
        width: calc(50% - 4px);
        padding: 10px 6px;
        gap: 4px;
    }
    #blurb-tabs .tab-title .et-pb-icon {
        font-size: 1.2rem !important;
    }
    #blurb-tabs .tab-title h4.et_pb_module_header {
        font-size: 0.75rem;
    }
}