﻿.studio-btn {
    box-sizing: border-box;
    font-family: inherit;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 12px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.18s ease;
}

.studio-btn-primary {
    background: var(--blue);
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(0, 113, 206, 0.22);
}

    .studio-btn-primary:hover {
        background: var(--blue-dk);
        color: #FFFFFF;
        transform: translateY(-1px);
    }

.studio-btn-ghost {
    border: 1.5px solid var(--blue);
    background: transparent;
    color: var(--blue);
}

    .studio-btn-ghost:hover {
        background: var(--blue);
        color: #FFFFFF;
    }

.studio-btn-white {
    background: #FFFFFF;
    color: var(--blue);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
}

    .studio-btn-white:hover {
        background: #F4FAFF;
        color: var(--blue);
        transform: translateY(-1px);
    }

.studio-btn-outline-white {
    border: 2px solid rgba(255, 255, 255, 0.38);
    background: transparent;
    color: #FFFFFF;
}

    .studio-btn-outline-white:hover {
        border-color: rgba(255, 255, 255, 0.76);
        background: rgba(255, 255, 255, 0.08);
        color: #FFFFFF;
    }

.studio-list-page {
    padding-bottom: 24px;
}

.studio-page-header {
    margin-bottom: 32px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.studio-page-header-with-actions {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.studio-page-header-content {
    max-width: 900px;
}

.studio-page-header-eyebrow {
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--blue);
}

.studio-page-header-title {
    margin: 0 0 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.12;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.3px;
}

.studio-page-header-subtitle {
    max-width: 860px;
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-lt);
}

.studio-page-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.studio-empty-state {
    padding: 36px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #FFFFFF;
    box-shadow: 0 8px 26px rgba(0, 80, 180, 0.06);
}

.studio-empty-state-title {
    margin-bottom: 8px;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--text);
}

.studio-empty-state-text {
    max-width: 640px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-lt);
}

.studio-empty-state-actions {
    margin-top: 20px;
}

@media (max-width: 700px) {
    .studio-page-header-with-actions {
        align-items: stretch;
    }

    .studio-page-header-actions {
        width: 100%;
    }

        .studio-page-header-actions .studio-btn,
        .studio-btn-block-sm {
            width: 100%;
        }
}
