/* kariera.jadi.cz — Koncept B "AIRY" — JADI brand */
/* Roboto font, #B7242A red, #917F5D gold, #2A2A2A dark, #f8f7f5 bg */

/* ── Utility ────────────────────────────────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── Global reset ───────────────────────────────────────────────────────── */

.nav-link, .nav-link:hover, .nav-link:focus,
.nav-link-mobile, .nav-link-mobile:hover, .nav-link-mobile:focus {
    text-decoration: none !important;
}

/* ── Navigation ──────────────────────────────────────────────────────────── */

.nav-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    border-radius: 6px;
    transition: all 0.15s;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
}

.nav-link:hover {
    color: #2A2A2A;
}

.nav-active {
    color: #2A2A2A !important;
    font-weight: 600;
}

.nav-link-mobile {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    text-decoration: none;
    transition: color 0.15s;
    font-family: 'Roboto', sans-serif;
    border-bottom: 1px solid #e8e5e0;
}

.nav-link-mobile:hover {
    color: #2A2A2A;
}

/* ── Career content (WYSIWYG output) ────────────────────────────────────── */

.career-content {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

.career-content h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 1.5rem 0 0.75rem;
    color: #2A2A2A;
}

.career-content h3 {
    font-size: 17px;
    font-weight: 600;
    margin: 1.25rem 0 0.5rem;
    color: #2A2A2A;
}

.career-content p {
    margin: 0 0 1rem;
}

.career-content ul,
.career-content ol {
    margin: 0.5rem 0 1rem;
    padding-left: 1.5rem;
}

.career-content li {
    margin-bottom: 0.375rem;
    line-height: 2;
}

.career-content ul li {
    list-style: disc;
}

.career-content ol li {
    list-style: decimal;
}

.career-content strong {
    font-weight: 600;
    color: #2A2A2A;
}

.career-content a {
    color: #B7242A;
    text-decoration: underline;
}

.career-content a:hover {
    color: #9a1f24;
}

/* ── Benefit cards (CMS page) ────────────────────────────────────────────── */

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 1.5rem 0 2rem;
}

.benefit-card {
    background: #f8f7f5;
    border: 1px solid #e8e5e0;
    border-radius: 12px;
    padding: 24px;
    transition: border-color 0.15s;
    text-align: center;
}

.benefit-card:hover {
    border-color: #ccc;
}

.benefit-card .bc-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e8e5e0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.benefit-card .bc-icon svg {
    width: 20px;
    height: 20px;
    stroke: #917F5D;
    fill: none;
    stroke-width: 1.8;
}

.benefit-card .bc-title {
    font-size: 15px;
    font-weight: 600;
    color: #2A2A2A;
    margin: 0 0 6px;
}

.benefit-card .bc-text {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.65;
}

@media (max-width: 640px) {
    .benefit-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Form ────────────────────────────────────────────────────────────────── */

input:focus, textarea:focus, select:focus {
    border-color: #B7242A !important;
    outline: 2px solid #B7242A;
    outline-offset: 1px;
    box-shadow: none;
}

/* K10: Global focus indicator */
a:focus-visible, button:focus-visible, [role="button"]:focus-visible {
    outline: 2px solid #B7242A;
    outline-offset: 2px;
}

/* ── Map ─────────────────────────────────────────────────────────────────── */

.smap-card {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
}

.smap-card h4 {
    font-weight: 600;
    margin: 0 0 4px;
    font-size: 14px;
    color: #2A2A2A;
}

.smap-card p {
    margin: 2px 0;
    color: #666;
}

.smap-card a {
    color: #B7242A;
    text-decoration: none;
    font-weight: 500;
}

.smap-card a:hover {
    text-decoration: underline;
}

/* ── Animations ──────────────────────────────────────────────────────────── */

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.page-thank-you main > section {
    animation: fadeIn 0.4s ease-out;
}

/* ── Responsive stats grid ───────────────────────────────────────────────── */

@media (max-width: 640px) {
    .grid-cols-4 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ── Print ───────────────────────────────────────────────────────────────── */

@media print {
    header, footer, .no-print { display: none !important; }
    main { padding: 0 !important; }
}
