/**
 * THG Tabs Block - Frontend Styles
 */

.thg-tabs {
    margin: 1.5rem 0;
}

.thg-tabs__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 0;
}

.thg-tabs__nav-item {
    padding: 12px 24px;
    background: #f5f5f5;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #555;
    transition: all 0.2s ease;
}

.thg-tabs__nav-item:hover {
    background: #e8e8e8;
    color: #333;
}

.thg-tabs__nav-item.is-active {
    background: #fff;
    color: #007cba;
    border-bottom-color: #007cba;
}

.thg-tabs__content {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-top: none;
}

.thg-tabs__panel {
    padding: 24px;
    display: none;
}

.thg-tabs__panel.is-active {
    display: block;
}

.thg-tabs__panel[hidden] {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .thg-tabs__nav {
        flex-direction: column;
        border-bottom: none;
    }

    .thg-tabs__nav-item {
        border-bottom: 1px solid #e0e0e0;
        margin-bottom: 0;
        text-align: left;
    }

    .thg-tabs__nav-item.is-active {
        border-bottom-color: #e0e0e0;
        border-left: 3px solid #007cba;
    }

    .thg-tabs__content {
        border-top: 1px solid #e0e0e0;
    }
}
