/**
 * ATP Tabs — Stylesheet
 * Matches URHOUSE dark navy + gold accent design language
 */

/* ── Navigation ── */
.atp-tabs__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 0;
    margin: 0 0 30px;
    list-style: none;
    border: none;
}

.atp-tabs__trigger {
    position: relative;
    display: inline-block;
    padding: 10px 5px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
    outline: none;
}

.atp-tabs__trigger:hover {
    color: rgba(255, 255, 255, 0.85);
}

.atp-tabs__trigger::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.atp-tabs__trigger.atp-tabs__trigger--active {
    color: #fff;
}

.atp-tabs__trigger.atp-tabs__trigger--active::after {
    background-color: #c9a96e;
}

/* ── Content Panes ── */
.atp-tabs__content {
    position: relative;
}

/* ALL panes: hidden */
.atp-tabs__pane {
    display: none !important;
}

/* ONLY active pane: visible */
.atp-tabs__pane.atp-tabs__pane--active {
    display: block !important;
}

.atp-tabs__empty {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

.atp-tabs__editor-content {
    padding: 20px 0;
}

/* ── Separator dots ── */
.atp-tabs__trigger+.atp-tabs__trigger::before {
    content: '';
    position: absolute;
    left: -22px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .atp-tabs__nav {
        gap: 15px;
    }

    .atp-tabs__trigger {
        font-size: 13px;
        letter-spacing: 1px;
        padding: 8px 4px;
    }

    .atp-tabs__trigger+.atp-tabs__trigger::before {
        left: -10px;
        width: 3px;
        height: 3px;
    }
}