/* ============================================
   Arkigest - Public Job Posting Page
   Modern, responsive landing page design
   ============================================ */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #f0f2f5;
    color: #1e293b;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ========== Header ========== */
.site-header {
    background: #0f172a;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo span {
    color: #60a5fa;
}

.header-nav {
    display: flex;
    gap: 24px;
}

.header-nav a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.2s;
}

.header-nav a:hover {
    color: #fff;
}

/* ========== Hero ========== */
.hero {
    position: relative;
    overflow: hidden;
    padding: 60px 24px 50px;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 40%, #2563eb 100%);
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(99,179,237,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(147,197,253,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(96,165,250,0.06) 0%, transparent 40%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, #f0f2f5, transparent);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(96,165,250,0.15);
    border: 1px solid rgba(96,165,250,0.3);
    border-radius: 100px;
    color: #93c5fd;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.meta-icon {
    vertical-align: middle;
    opacity: 0.85;
}

.meta-sep {
    opacity: 0.4;
}

/* ========== Main Content ========== */
.main {
    padding: 40px 24px 60px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

/* Left column */
.content-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.section {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05), 0 4px 16px rgba(0,0,0,0.03);
    border: 1px solid #e5e7eb;
}

.section h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #eff6ff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section h2::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 4px;
}

.section-content {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #334155;
}

.section-content p { margin-bottom: 12px; }
.section-content ul, .section-content ol { padding-left: 20px; margin-bottom: 12px; }
.section-content li { margin-bottom: 6px; }
.section-content strong { color: #0f172a; }

/* ========== Sidebar ========== */
.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-sticky {
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Info Panel */
.info-panel {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05), 0 4px 16px rgba(0,0,0,0.03);
    border: 1px solid #e5e7eb;
}

.info-panel h3 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.slot-list {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.slot-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid #dbe3ef;
    border-radius: 12px;
    background: #f8fafc;
    cursor: pointer;
}

.slot-option:hover {
    border-color: #0d6efd;
    background: #eff6ff;
}

.info-message {
    padding: 12px 14px;
    border-radius: 12px;
    background: #eff6ff;
    color: #1e40af;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    transition: all 0.2s;
}

.info-card:hover {
    background: #eff6ff;
    border-color: #dbeafe;
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #eff6ff;
    border-radius: 10px;
    color: #3b82f6;
}

.info-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 0.92rem;
    font-weight: 600;
    color: #1e293b;
    margin-top: 1px;
}

/* CTA Panel */
.cta-panel {
    background: linear-gradient(135deg, #1e40af, #2563eb);
    border-radius: 16px;
    padding: 28px 24px;
    color: #fff;
    text-align: center;
    box-shadow: 0 4px 16px rgba(37,99,235,0.25);
}

.cta-panel h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.cta-panel p {
    font-size: 0.88rem;
    opacity: 0.85;
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-apply {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    background: #fff;
    color: #1e40af;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    background: #f0f9ff;
}

/* Share Panel */
.share-panel {
    background: #fff;
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
    text-align: center;
}

.share-panel h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.share-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #64748b;
    text-decoration: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.share-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.share-btn.linkedin:hover { background: #0077b5; color: #fff; border-color: #0077b5; }
.share-btn.whatsapp:hover { background: #25d366; color: #fff; border-color: #25d366; }
.share-btn.copy:hover { background: #3b82f6; border-color: #3b82f6; }

/* ========== Not Found ========== */
.not-found {
    text-align: center;
    padding: 80px 20px;
}

.not-found-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.not-found h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.not-found p {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 28px;
}

.not-found .btn-apply {
    width: auto;
    display: inline-flex;
    padding: 12px 28px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(37,99,235,0.3);
}

.not-found .btn-apply:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

/* ========== Footer ========== */
.site-footer {
    background: #0f172a;
    color: rgba(255,255,255,0.6);
    padding: 40px 24px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-brand .logo {
    font-size: 1.3rem;
}

.footer-brand p {
    font-size: 0.82rem;
    margin-top: 6px;
    opacity: 0.6;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #60a5fa;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-links a:hover { color: #93c5fd; }

.footer-copy {
    font-size: 0.78rem;
    opacity: 0.5;
}

/* ========== Hero Compact (Lista) ========== */
.hero-compact {
    padding: 44px 24px 38px;
}

.hero-compact h1 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.hero-desc {
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    margin-top: 6px;
}

/* ========== List Toolbar ========== */
.list-toolbar {
    background: #fff;
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05), 0 4px 16px rgba(0,0,0,0.03);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
    color: #94a3b8;
}

.search-box:focus-within {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
    color: #3b82f6;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.95rem;
    font-family: inherit;
    color: #1e293b;
}

.search-box input::placeholder {
    color: #94a3b8;
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-chip {
    padding: 7px 16px;
    border-radius: 100px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #64748b;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.filter-chip:hover {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #2563eb;
}

.filter-chip.active {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(37,99,235,0.25);
}

.list-count {
    font-size: 0.82rem;
    color: #94a3b8;
    font-weight: 500;
}

.list-count span {
    font-weight: 700;
    color: #1e293b;
}

/* ========== Job Grid ========== */
.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 20px;
}

/* ========== Job Card ========== */
.job-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e5e7eb;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.job-card:hover {
    border-color: #bfdbfe;
    box-shadow: 0 8px 30px rgba(59,130,246,0.1);
    transform: translateY(-4px);
}

.job-card:hover::before {
    transform: scaleX(1);
}

.job-card-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}

.job-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #eff6ff;
    border-radius: 12px;
    color: #3b82f6;
    flex-shrink: 0;
}

.job-card-meta {
    flex: 1;
    min-width: 0;
}

.job-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.job-card-location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    color: #64748b;
}

.card-badge {
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 2px;
}

.badge-blue { background: #eff6ff; color: #2563eb; }
.badge-green { background: #ecfdf5; color: #059669; }
.badge-gray { background: #f1f5f9; color: #64748b; }

.job-card-desc {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 16px 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.job-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
}

.job-card-tags {
    display: flex;
    gap: 12px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: #94a3b8;
}

.tag svg {
    width: 14px;
    height: 14px;
}

.job-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #3b82f6;
    transition: gap 0.2s;
}

.job-card:hover .job-card-cta {
    gap: 10px;
}

/* Empty list state */
.empty-list {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 60px 20px;
    text-align: center;
}

.empty-list h3 {
    font-size: 1.2rem;
    color: #475569;
    font-weight: 700;
}

.empty-list p {
    color: #94a3b8;
    font-size: 0.95rem;
}

/* ========== Responsive ========== */
@media (max-width: 900px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .sidebar-sticky {
        position: static;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero {
        padding: 40px 20px 36px;
    }

    .job-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 1.4rem;
    }

    .hero-meta {
        flex-direction: column;
        gap: 6px;
    }

    .meta-sep { display: none; }

    .section {
        padding: 20px;
        border-radius: 12px;
    }

    .header-nav {
        gap: 14px;
    }

    .header-nav a {
        font-size: 0.8rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }

    .job-grid {
        grid-template-columns: 1fr;
    }

    .job-card {
        padding: 18px;
    }

    .filter-chips {
        gap: 6px;
    }

    .filter-chip {
        font-size: 0.75rem;
        padding: 5px 12px;
    }
}

/* ========== Print ========== */
@media print {
    .site-header, .site-footer, .share-panel, .cta-panel, .header-nav, .list-toolbar { display: none; }
    .hero-bg { background: #fff !important; }
    .hero { background: #fff; color: #000; }
    .hero h1, .hero-badge, .hero-meta { color: #000 !important; }
    .hero-badge { border-color: #000; }
    .content-grid { grid-template-columns: 1fr; }
    .section { box-shadow: none; border: 1px solid #ccc; }
    body { background: #fff; }
}

/* ============================================================
   Arkigest brand override - pagina pubblica /offerta
   ============================================================ */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/roboto/Roboto-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/fonts/roboto/Roboto-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('/fonts/roboto/Roboto-Black.ttf') format('truetype');
}

:root {
    --job-teal: #20b096;
    --job-mint: #c8e7de;
    --job-purple: #6f449b;
    --job-purple-dark: #5b3681;
    --job-green: #2fa069;
    --job-green-hover: #277f54;
    --job-border: #e3e7ee;
    --job-ink: #222a35;
    --job-muted: #6d7480;
    --job-shadow: 0 16px 34px rgba(23, 75, 64, 0.12);
}

body.job-public-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--job-mint);
    color: var(--job-ink);
    font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.job-public-page .brand-hero {
    position: relative;
    background-color: var(--job-teal);
    background-image: url('/images/brand/puntinato.png'), url('/images/brand/bg-testata.png?v=2');
    background-repeat: repeat-x, repeat-x;
    background-position: top center, center;
    background-size: 1179px 109px, auto 100%;
    color: #fff;
    padding: 28px 24px 24px;
}

.job-public-page .brand-hero-bar {
    max-width: 1080px;
    margin: 0 auto;
    min-height: 94px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.job-public-page .brand-hero-nav {
    position: absolute;
    top: 4px;
    right: 0;
}

.job-public-page .brand-hero-nav a {
    color: #fff;
    font-size: 14px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.job-public-page .brand-logo {
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.job-public-page .brand-logo-header {
    width: 150px;
    height: 72px;
    background-image: url('/images/brand/logo-testata.svg');
}

.job-public-page .brand-hero-copy {
    max-width: 880px;
    margin: 12px auto 0;
    padding-bottom: 26px;
    text-align: center;
}

.job-public-page .brand-hero-copy h1 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 3.4vw, 3rem);
    font-weight: 900;
    line-height: 1.12;
    color: #fff;
    overflow-wrap: anywhere;
    text-wrap: balance;
}

.job-public-page .brand-hero-copy p {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.95);
}

.job-public-page .main {
    flex: 1;
    background: var(--job-mint);
    padding: 34px 24px 170px;
}

.job-public-page .container {
    max-width: 980px;
}

.job-public-page .list-toolbar {
    max-width: 900px;
    margin: 0 auto 34px;
    padding: 20px 24px;
    border: none;
    border-radius: 4px;
    background: #fff;
    box-shadow: var(--job-shadow);
    gap: 14px;
}

.job-public-page .list-toolbar h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: var(--job-purple);
    font-size: 1.35rem;
    font-weight: 700;
}

.job-public-page .list-toolbar h2 svg {
    width: 24px;
    height: 24px;
}

.job-public-page .search-box {
    padding: 8px 10px;
    border: 1px solid var(--job-border);
    border-radius: 2px;
    background: #fff;
    color: #b5bdc8;
}

.job-public-page .search-box:focus-within {
    border-color: var(--job-teal);
    box-shadow: 0 0 0 3px rgba(32, 176, 150, 0.14);
    color: var(--job-teal);
}

.job-public-page .search-box input {
    font-size: 0.9rem;
    color: var(--job-ink);
}

.job-public-page .filter-block {
    display: grid;
    gap: 8px;
}

.job-public-page .filter-label {
    color: var(--job-purple);
    font-size: 0.82rem;
    font-weight: 700;
}

.job-public-page .filter-chips {
    gap: 10px;
}

.job-public-page .filter-chip {
    border: none;
    border-radius: 999px;
    padding: 8px 15px;
    background: var(--job-green);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
}

.job-public-page .filter-chip:hover,
.job-public-page .filter-chip.active {
    background: var(--job-teal);
    color: #fff;
    box-shadow: 0 3px 10px rgba(32, 176, 150, 0.24);
}

.job-public-page .list-count {
    color: var(--job-purple);
    font-size: 0.86rem;
    font-weight: 700;
}

.job-public-page .list-count span {
    color: var(--job-purple);
}

.job-public-page .job-grid {
    max-width: 900px;
    margin: 0 auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.job-public-page .job-card {
    min-height: 218px;
    border: none;
    border-radius: 4px;
    padding: 18px 18px 15px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.job-public-page .job-card::before {
    display: none;
}

.job-public-page .job-card:hover {
    border-color: transparent;
    box-shadow: 0 10px 28px rgba(23, 75, 64, 0.14);
    transform: translateY(-3px);
}

.job-public-page .job-card-header {
    gap: 10px;
    margin-bottom: 14px;
}

.job-public-page .job-card-icon {
    width: 32px;
    height: 32px;
    background: transparent;
    color: var(--job-teal);
}

.job-public-page .job-card-icon svg {
    width: 28px;
    height: 28px;
}

.job-public-page .job-card-title {
    color: var(--job-purple);
    font-size: 0.86rem;
    font-weight: 900;
    line-height: 1.1;
}

.job-public-page .job-card-location {
    color: var(--job-teal);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.job-public-page .card-badge {
    padding: 5px 10px;
    background: #eef1f4;
    color: #b4bcc4;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: none;
}

.job-public-page .job-card-desc {
    color: #111827;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.35;
    -webkit-line-clamp: 5;
}

.job-public-page .job-card-footer {
    border-top: none;
    padding-top: 12px;
}

.job-public-page .tag {
    color: #111827;
    font-size: 0.74rem;
    font-weight: 700;
}

.job-public-page .job-card-cta {
    border-radius: 999px;
    padding: 8px 14px;
    background: var(--job-green);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 900;
}

.job-public-page .job-card-cta svg {
    display: none;
}

.job-public-page .brand-footer {
    position: relative;
    background: var(--job-purple);
    color: #fff;
    padding: 30px 24px 26px;
}

.job-public-page .brand-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.28);
    -webkit-mask: url('/images/brand/puntinato.png') repeat-x top center / 1179px 109px;
    mask: url('/images/brand/puntinato.png') repeat-x top center / 1179px 109px;
    pointer-events: none;
}

.job-public-page .brand-footer-inner {
    max-width: 1080px;
    min-height: 64px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
}

.job-public-page .brand-logo-footer {
    width: 132px;
    height: 64px;
    background-image: url('/images/brand/logo-footer.svg');
    flex: none;
}

.job-public-page .brand-footer-text {
    text-align: center;
}

.job-public-page .brand-footer-links {
    margin-bottom: 8px;
}

.job-public-page .brand-footer-links a {
    color: #fff;
    font-size: 14px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.job-public-page .brand-footer-sep {
    margin: 0 8px;
    opacity: 0.7;
}

.job-public-page .brand-footer-copy {
    font-size: 13px;
    opacity: 0.85;
}

@media (max-width: 900px) {
    .job-public-page .job-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .job-public-page .brand-hero-copy,
    .job-public-page .list-toolbar,
    .job-public-page .job-grid {
        max-width: 100%;
    }

    .job-public-page .job-grid {
        grid-template-columns: 1fr;
    }

    .job-public-page .brand-footer-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}
