/* Shared styles for Jobbi guide articles */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Helvetica, Arial, sans-serif;
    color: #1d1d1f;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}
.site-header {
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e7;
    background: #fff;
}
.site-header-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.site-logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #1d1d1f;
    text-decoration: none;
}
.site-logo:hover { text-decoration: none; color: #1d1d1f; }
.site-logo span { color: #6c5ce7; }
.site-nav {
    display: flex;
    gap: 18px;
    font-size: 13px;
    font-weight: 500;
}
.site-nav a {
    color: #6e6e73;
    text-decoration: none;
}
.site-nav a:hover {
    color: #6e6e73;
    text-decoration: none;
}

.nav-dropdown { position: relative; }
.nav-dropdown summary {
    list-style: none;
    cursor: pointer;
    color: #6e6e73;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    user-select: none;
    padding: 0;
}
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary::after {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-left: 2px;
    margin-bottom: 2px;
    transition: transform .15s;
}
.nav-dropdown[open] summary::after { transform: rotate(-135deg); margin-bottom: 0; }
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border: 1px solid #e5e5e7;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 6px 0;
    min-width: 160px;
    display: flex;
    flex-direction: column;
    gap: 0;
    z-index: 110;
}
.nav-dropdown-menu a {
    padding: 8px 14px !important;
    font-size: 13px;
    white-space: nowrap;
    color: #6e6e73 !important;
    text-decoration: none !important;
}
.nav-dropdown-menu a:hover { background: #f5f5f7; }

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #1d1d1f;
    align-items: center;
    justify-content: center;
}
.nav-toggle .nav-icon-close { display: none; }
.nav-toggle.open .nav-icon-menu { display: none; }
.nav-toggle.open .nav-icon-close { display: block; }

.article {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 24px 64px;
}
.breadcrumb {
    font-size: 13px;
    color: #86868b;
    margin-bottom: 24px;
}
.breadcrumb a {
    color: #6c5ce7;
    text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }
h1 {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.8px;
    color: #1d1d1f;
    margin-bottom: 12px;
    line-height: 1.15;
}
.article-meta {
    font-size: 13px;
    color: #86868b;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e5e7;
}
.article-meta span { margin-right: 14px; }
.lead {
    font-size: 18px;
    color: #3a3a3c;
    line-height: 1.6;
    margin-bottom: 28px;
    font-weight: 400;
}
h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1d1d1f;
    margin: 40px 0 14px;
    letter-spacing: -0.3px;
}
h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1d1d1f;
    margin: 28px 0 10px;
}
p {
    font-size: 15px;
    line-height: 1.75;
    color: #3a3a3c;
    margin-bottom: 16px;
}
ul, ol {
    margin: 0 0 20px 24px;
    font-size: 15px;
    line-height: 1.75;
    color: #3a3a3c;
}
li { margin-bottom: 8px; }
a { color: #6c5ce7; text-decoration: none; }
a:hover { text-decoration: underline; }
strong { color: #1d1d1f; font-weight: 600; }
blockquote {
    border-left: 3px solid #6c5ce7;
    padding: 4px 20px;
    margin: 24px 0;
    color: #3a3a3c;
    font-style: italic;
}
code {
    background: #f5f5f7;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'SF Mono', Menlo, Consolas, monospace;
    font-size: 13px;
}
.callout {
    background: #f5f3ff;
    border: 1px solid #ddd6fe;
    border-radius: 10px;
    padding: 20px 24px;
    margin: 28px 0;
}
.callout h3 {
    margin-top: 0;
    color: #6c5ce7;
    font-size: 15px;
}
.callout p:last-child { margin-bottom: 0; }

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
}
.data-table th {
    text-align: left;
    background: #f5f5f7;
    padding: 10px 12px;
    font-weight: 600;
    color: #1d1d1f;
    border-bottom: 2px solid #d2d2d7;
}
.data-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #e5e5e7;
    color: #3a3a3c;
}
.data-table tr:hover td { background: #fafafa; }

.cta-box {
    background: linear-gradient(135deg, #3d3270 0%, #4a3f8a 100%);
    color: #fff;
    padding: 28px 32px;
    border-radius: 12px;
    margin: 32px 0;
}
.cta-box h3 {
    color: #fff;
    font-size: 18px;
    margin: 0 0 8px;
}
.cta-box p {
    color: rgba(255,255,255,0.85);
    margin: 0 0 16px;
}
.cta-button {
    display: inline-block;
    background: #fff;
    color: #4a3f8a;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}
.cta-button:hover {
    background: #f5f3ff;
    text-decoration: none;
}

.more-guides {
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid #e5e5e7;
}
.more-guides h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #86868b;
    margin-bottom: 16px;
    font-weight: 700;
}
.more-guides ul {
    list-style: none;
    margin: 0;
}
.more-guides li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f3;
}
.more-guides li:last-child { border-bottom: none; }
.more-guides a {
    color: #1d1d1f;
    font-weight: 500;
    font-size: 15px;
}
.more-guides a:hover { color: #6c5ce7; }

footer {
    text-align: center;
    padding: 32px 24px 24px;
    font-size: 12px;
    color: #86868b;
    border-top: 1px solid #e5e5e7;
    margin-top: 40px;
}
footer a { color: #6c5ce7; }

@media (max-width: 720px) {
    h1 { font-size: 26px; }
    h2 { font-size: 19px; }
    .lead { font-size: 16px; }
    .site-header-inner { flex-wrap: wrap; }
    .nav-toggle { display: inline-flex; }
    .site-nav {
        display: none;
        order: 99;
        width: 100%;
        flex-direction: column;
        gap: 0;
        margin-top: 12px;
        padding: 8px 0 4px;
        border-top: 1px solid #e5e5e7;
    }
    .site-nav.open { display: flex; }
    .site-nav a {
        padding: 12px 4px;
        font-size: 14px;
        border-bottom: 1px solid #f0f0f3;
    }
    .site-nav a:last-child { border-bottom: none; }
    .nav-dropdown { width: 100%; }
    .nav-dropdown summary {
        padding: 12px 4px;
        font-size: 14px;
        border-bottom: 1px solid #f0f0f3;
        width: 100%;
        justify-content: space-between;
    }
    .nav-dropdown-menu {
        position: static;
        border: none;
        box-shadow: none;
        background: transparent;
        padding: 0 0 0 16px;
        border-radius: 0;
        border-bottom: 1px solid #f0f0f3;
    }
    .nav-dropdown-menu a {
        padding: 10px 4px !important;
        border-bottom: 1px solid #f8f8fa !important;
    }
    .nav-dropdown-menu a:last-child { border-bottom: none !important; }
}
