/* ============================================
   CAREERS PAGE STYLES
   Professional Hiring Page for ITCyber
============================================ */

/* ============================================
   HERO SECTION
============================================ */
.careers-hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.careers-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb--1 {
    width: 500px;
    height: 500px;
    background: rgba(99, 102, 241, 0.3);
    top: -200px;
    left: -100px;
}

.hero-orb--2 {
    width: 400px;
    height: 400px;
    background: rgba(139, 92, 246, 0.25);
    bottom: -150px;
    right: -100px;
    animation-delay: 4s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 20px); }
}

.careers-hero__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 50px;
    color: #4ade80;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 28px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.careers-hero__title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
}

.careers-hero__subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #e2e8f0;
    font-size: 0.95rem;
}

.highlight-icon {
    font-size: 1.25rem;
}

.careers-hero__ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   ABOUT COMPANY SECTION
============================================ */
.about-company {
    padding: 80px 0;
    background: #ffffff;
}

.about-company__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-company h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 30px;
}

.about-company__text {
    margin-bottom: 50px;
}

.about-company__text p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-company__text strong {
    color: #6366f1;
}

.about-company__stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #6366f1;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: #64748b;
    margin-top: 8px;
}

/* ============================================
   WHY JOIN SECTION
============================================ */
.why-join {
    padding: 100px 0;
    background: #f8fafc;
}

.why-join h2 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #6366f1;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.benefit-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

/* ============================================
   IDEAL CANDIDATE SECTION
============================================ */
.ideal-candidate {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.ideal-candidate h2 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.ideal-candidate .section-subtitle {
    color: #94a3b8;
}

.ideal-candidate__content {
    max-width: 800px;
    margin: 0 auto;
}

.traits-list {
    display: grid;
    gap: 20px;
}

.trait-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.trait-item:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
}

.trait-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.trait-text strong {
    display: block;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 6px;
}

.trait-text p {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.5;
}

/* ============================================
   OPEN ROLES SECTION
============================================ */
.open-roles {
    padding: 100px 0;
    background: #f8fafc;
}

.open-roles h2 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.open-roles .section-subtitle {
    margin-bottom: 60px;
}

/* Jobs Grid - Compact Cards */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.job-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #6366f1;
}

.job-card:hover::before {
    opacity: 1;
}

.job-card__badge {
    margin-bottom: 16px;
}

.job-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.job-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 16px;
}

.job-card__summary {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.job-card__skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.job-card__skills span {
    padding: 6px 12px;
    background: #f1f5f9;
    color: #6366f1;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
}

.btn--apply {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 1rem;
}

/* ============================================
   JOB MODALS
============================================ */
.job-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.job-modal.active {
    display: flex;
}

.job-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(4px);
}

.job-modal__content {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.job-modal__close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border: none;
    background: #ef4444;
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.5);
    pointer-events: auto;
    line-height: 1;
}

.job-modal__close:hover {
    background: #dc2626;
    transform: scale(1.15);
    box-shadow: 0 6px 25px rgba(239, 68, 68, 0.6);
}

.job-modal__header {
    padding: 40px 40px 30px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
    border-bottom: 1px solid #e2e8f0;
}

.job-modal__header h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    margin: 12px 0 16px;
}

.job-modal__meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: #64748b;
}

.job-modal__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.job-modal__details {
    padding: 30px 40px;
    border-right: 1px solid #e2e8f0;
}

.detail-section {
    margin-bottom: 28px;
}

.detail-section:last-child {
    margin-bottom: 0;
}

.detail-section h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 14px;
}

.detail-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-section ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.5;
}

.detail-section ul li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: #6366f1;
    font-weight: bold;
}

.detail-section p {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.6;
}

/* Application Form */
.job-modal__form {
    padding: 30px 40px;
    background: #f8fafc;
}

.job-modal__form h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
}

.apply-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #0f172a;
    background: #ffffff;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* File Upload */
.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-upload__label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: #ffffff;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.file-upload:hover .file-upload__label {
    border-color: #6366f1;
    background: rgba(99, 102, 241, 0.05);
}

.file-upload__label .file-icon {
    font-size: 1.5rem;
}

.file-upload__label .file-text {
    font-size: 0.9rem;
    color: #64748b;
}

.btn--full {
    width: 100%;
    margin-top: 10px;
}

/* Success Modal */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(4px);
}

.success-modal.active {
    display: flex;
}

.success-modal__content {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    max-width: 400px;
    animation: modalSlideIn 0.3s ease;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.success-modal__content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.success-modal__content p {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 30px;
}

/* Tools List in Modals */
.tools-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tool-tag {
    padding: 8px 16px;
    background: #f1f5f9;
    color: #475569;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
}

/* Role Badge Styles */
.role-badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.role-badge--leadership {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #ffffff;
}

.role-badge--technical {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #ffffff;
}

.role-badge--ai {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
}

.role-badge--sales {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
}

.role-badge--operations {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: #ffffff;
}

/* ============================================
   HIRING PROCESS SECTION
============================================ */
.hiring-process {
    padding: 100px 0;
    background: #ffffff;
}

.hiring-process h2 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.process-step {
    flex: 1;
    min-width: 160px;
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '→';
    position: absolute;
    right: -15px;
    top: 30px;
    color: #cbd5e1;
    font-size: 1.5rem;
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.step-content p {
    font-size: 0.85rem;
    color: #64748b;
}

.process-note {
    text-align: center;
    font-size: 1rem;
    color: #6366f1;
    font-weight: 500;
}

/* ============================================
   APPLICATION INFO SECTION
============================================ */
.application-info {
    padding: 100px 0;
    background: #f8fafc;
}

.application-info h2 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 50px;
}

.application-info__content {
    max-width: 700px;
    margin: 0 auto;
}

.application-checklist {
    display: grid;
    gap: 20px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
}

.check-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.checklist-item strong {
    display: block;
    font-size: 1.05rem;
    color: #0f172a;
    margin-bottom: 4px;
}

.checklist-item p {
    font-size: 0.9rem;
    color: #64748b;
}

/* ============================================
   FAQ SECTION
============================================ */
.careers-faq {
    padding: 100px 0;
    background: #ffffff;
}

.careers-faq h2 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    padding: 24px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.faq-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

/* ============================================
   REFERRAL SECTION
============================================ */
.referral-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.referral-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.referral-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
}

.referral-content p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 30px;
}

/* ============================================
   CTA SECTION
============================================ */
.careers-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    text-align: center;
}

.careers-cta__content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.careers-cta__content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.careers-cta__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-item {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.contact-item a {
    color: #ffffff;
    text-decoration: underline;
}

/* ============================================
   BUTTON STYLES
============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn--primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #ffffff;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.btn--secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn--whatsapp {
    background: #25D366;
    color: #ffffff;
}

.btn--whatsapp:hover {
    background: #1da851;
}

.btn--small {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn--large {
    padding: 18px 36px;
    font-size: 1.05rem;
}

/* ============================================
   RESPONSIVE STYLES
============================================ */
@media screen and (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jobs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        gap: 30px;
    }

    .process-step::after {
        display: none;
    }

    .job-modal__body {
        grid-template-columns: 1fr;
    }

    .job-modal__details {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }
}

@media screen and (max-width: 768px) {
    .careers-hero {
        padding: 140px 0 80px;
    }

    .careers-hero__title {
        font-size: 2.5rem;
    }

    .hero-highlights {
        gap: 15px;
    }

    .highlight-item {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .about-company__stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
    }

    .role-card__header {
        flex-direction: column;
    }

    .role-meta {
        gap: 10px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .careers-cta__content h2 {
        font-size: 2rem;
    }

    .careers-cta__buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-details {
        flex-direction: column;
        gap: 15px;
    }

    .job-modal__content {
        max-height: 95vh;
        border-radius: 16px;
    }

    .job-modal__header {
        padding: 30px 24px 24px;
    }

    .job-modal__header h2 {
        font-size: 1.4rem;
    }

    .job-modal__details,
    .job-modal__form {
        padding: 24px;
    }

    .job-modal__close {
        top: 15px;
        right: 15px;
    }
}

@media screen and (max-width: 480px) {
    .careers-hero__title {
        font-size: 2rem;
    }

    .careers-hero__subtitle {
        font-size: 1.1rem;
    }

    .careers-hero__ctas {
        flex-direction: column;
    }

    .careers-hero__ctas .btn {
        width: 100%;
    }

    .hero-highlights {
        flex-direction: column;
    }

    .process-steps {
        flex-direction: column;
    }

    .process-step {
        min-width: 100%;
    }

    .role-card__body {
        padding: 20px;
    }

    .btn--large {
        width: 100%;
        justify-content: center;
    }

    .job-card {
        padding: 20px;
    }

    .job-modal {
        padding: 10px;
    }

    .job-modal__content {
        border-radius: 12px;
    }

    .job-modal__header {
        padding: 24px 16px 20px;
    }

    .job-modal__details,
    .job-modal__form {
        padding: 20px 16px;
    }

    .job-modal__meta {
        gap: 10px;
        font-size: 0.85rem;
    }
}
