/* ============================================
   JOB DETAIL PAGES STYLES
   ============================================ */
/* CSS VARIABLES */
:root {
    --alu-color-primary: #d25501;
    --alu-color-secondary: #005288;
    --alu-color-danger: #a40704;
    --alu-color-bg-light: #ffffff;
    --alu-color-bg-dark: #141824;
    --alu-color-bg-gray: #fbfbfc;
    --alu-color-text-light: #e7e9ee;
    --alu-color-text-muted: #96a0b5;
    --alu-color-text-dark: #666666;
    --alu-max-width: 1200px;
    --alu-border-radius: 18px;
    --alu-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);

}
/* ============================================
   HERO SECTION
   ============================================ */

.job-hero--blue,
.job-hero--orange {
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2)),
    url('/images/home-bg-new.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.job-hero__content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
}

.job-hero__kicker {
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */

.job-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
    background: transparent;
    border: none;
    box-shadow: none;
}

.job-section--gray {
    background: linear-gradient(
            135deg,
            rgba(238, 120, 14, 0.02) 0%,
            rgba(255, 255, 255, 1) 50%,
            rgba(30, 144, 255, 0.02) 100%
    );
}

.job-section-wrapper {
    background: #fbfbfc;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.job-text--primary {
    color: #616368;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ============================================
   HEADINGS
   ============================================ */

.job-heading--spaced {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(238, 120, 14, 0.2);
    color: #2c3e50;
}

.job-heading--spaced:first-of-type {
    margin-top: 0;
}

/* ============================================
   LISTS - CARD STYLE
   ============================================ */

.job-list {
    color: #616368;
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: grid;
    gap: 0.75rem;
}

.job-list li {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ee780e;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 2.5rem;
}

.job-list li::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    top: 1.15rem;
    color: #ee780e;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
}

.job-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(238, 120, 14, 0.15);
    border-left-color: #1e90ff;
}

.job-list li:hover::before {
    color: #1e90ff;
}

.job-list--spaced {
    margin-top: 1.5rem;
}

/* Lista ze gwiazdkami (Nice-to-have) */
.job-list--stars li::before {
    content: '★';
    font-size: 1.3rem;
}

/* Lista z kropkami (Responsibilities) */
.job-list--dots li {
    border-left-color: #1e90ff;
}

.job-list--dots li::before {
    content: '•';
    font-size: 1.5rem;
    color: #1e90ff;
    line-height: 1;
    top: 1rem;
}

.job-list--dots li:hover {
    border-left-color: #ee780e;
}

.job-list--dots li:hover::before {
    color: #ee780e;
}

/* ============================================
   GRID LAYOUTS
   ============================================ */

.job-requirements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.job-requirements-col h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.job-responsibilities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.job-benefits-grid {
    margin-top: 3rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    gap: 1.5rem;
    grid-template-columns: repeat(4, 1fr);
}

/* ============================================
   APPLY SECTION
   ============================================ */

.job-apply__text {
    margin-top: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.job-apply__contact-name {
    font-size: 1.2rem;
    color: #fff;
}

.job-apply__email--blue {
    color: #1e90ff;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: underline;
}

.job-apply__email--orange {
    color: #ee780e;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: underline;
}

.job-apply__buttons {
    margin-top: 2rem;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.alu-benefits-section {
    background-color: #fbfbfc;
}

.alu-benefit-grid {
    display: grid;
    gap: 24px;
    margin-top: 28px;
}

.alu-benefit-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    padding: 22px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.alu-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.alu-benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
    color: #fff;
    background: linear-gradient(135deg, #d25501, #ff8c3a);
    padding: 12px;
}

.alu-benefit-icon svg {
    width: 28px;
    height: 28px;
}

.alu-benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.alu-benefit-title {
    margin: 4px 0 6px;
    color: #141824;
    font-size: 20px;
    font-weight: 700;
}

.alu-benefit-text {
    margin: 0;
    color: #666666;
    line-height: 1.65;
}

/* ============================================
   JOB LISTINGS SECTION
   ============================================ */

.alu-job-listing {
    margin-bottom: 2rem;
}

.alu-job-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(210, 85, 1, 0.2);
}

.alu-job-header .alu-heading-2 {
    margin-bottom: 1rem;
    color: #d25501;
}

.alu-job-meta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.alu-job-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(
            135deg,
            rgba(210, 85, 1, 0.1),
            rgba(238, 120, 14, 0.1)
    );
    color: #d25501;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(210, 85, 1, 0.3);
    transition: all 0.3s ease;
}

.alu-job-tag:hover {
    background: linear-gradient(
            135deg,
            rgba(210, 85, 1, 0.15),
            rgba(238, 120, 14, 0.15)
    );
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(210, 85, 1, 0.2);
}

.alu-job-content {
    padding-top: 1rem;
}

.alu-job-section {
    margin-bottom: 2rem;
}

.alu-job-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.alu-job-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1024px) {
    .job-responsibilities-grid {
        grid-template-columns: 1fr;
    }

    .job-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .job-requirements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .job-hero__content,
    .job-content {
        padding: 1.5rem;
    }

    .job-list li {
        padding: 0.875rem 1.25rem;
        padding-left: 2.25rem;
    }

    .job-benefits-grid {
        grid-template-columns: 1fr;
    }
}
