/* === NSQ INLINE ARTICLE TABS V1 START === */

.nsq-content-tabs {
    overflow: visible !important;
}

.nsq-content-tabs button {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 54px !important;
    padding: 8px 12px !important;
    color: #ffffff !important;
    font-family: inherit !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    text-align: center !important;
    background: transparent !important;
    border: 0 !important;
    border-left: 1px solid rgba(255, 255, 255, 0.50) !important;
    cursor: pointer !important;
    transition: background 0.2s ease !important;
}

.nsq-content-tabs button:last-child {
    border-left: 0 !important;
}

.nsq-content-tabs button:hover,
.nsq-content-tabs button:focus,
.nsq-content-tabs button.is-active {
    color: #ffffff !important;
    background: #3d92b4 !important;
    outline: 0 !important;
}

.nsq-content-tabs button.is-active::after {
    content: "" !important;
    position: absolute !important;
    right: 50% !important;
    bottom: -8px !important;
    z-index: 3 !important;
    width: 16px !important;
    height: 16px !important;
    background: #3d92b4 !important;
    transform: translateX(50%) rotate(45deg) !important;
}

.nsq-inline-tab-stage {
    width: 100% !important;
    margin-bottom: 20px !important;
}

.nsq-inline-tab-panel {
    display: none !important;
}

.nsq-inline-tab-panel.is-active {
    display: block !important;
    animation: nsqInlineTabFade 0.3s ease !important;
}

.nsq-inline-tab-panel[hidden] {
    display: none !important;
}

.nsq-inline-tab-panel .nsq-current-issue-panel {
    margin-bottom: 0 !important;
}

.nsq-tab-empty-state {
    display: flex !important;
    align-items: center !important;
    gap: 17px !important;
    min-height: 130px !important;
    padding: 25px 28px !important;
    background: #ffffff !important;
    border: 1px solid #d9e5ea !important;
    border-radius: 10px !important;
    box-shadow: 0 8px 24px rgba(13, 54, 73, 0.075) !important;
    box-sizing: border-box !important;
}

.nsq-tab-empty-state > span {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 50px !important;
    height: 50px !important;
    flex: 0 0 50px !important;
    color: #ffffff !important;
    font-size: 23px !important;
    background: #168fb8 !important;
    border-radius: 10px !important;
}

.nsq-tab-empty-state h3 {
    margin: 0 0 8px !important;
    color: #173f53 !important;
    font-size: 16px !important;
    font-weight: 900 !important;
}

.nsq-tab-empty-state p {
    margin: 0 !important;
    color: #5b727e !important;
    font-size: 12px !important;
    line-height: 1.95 !important;
}

@keyframes nsqInlineTabFade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 700px) {
    .nsq-content-tabs {
        grid-template-columns: 1fr !important;
    }

    .nsq-content-tabs button {
        border-left: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.35) !important;
    }

    .nsq-content-tabs button.is-active::after {
        display: none !important;
    }

    .nsq-tab-empty-state {
        align-items: flex-start !important;
        padding: 21px 18px !important;
    }
}

/* === NSQ INLINE ARTICLE TABS V1 END === */
