.hero-secondary {
    --hero-image: url('images/C2.jpg');
    min-height: 48vh;
}

.experience {
    display: grid;
    gap: 22px;
}

.job {
    position: relative;
    padding: clamp(1.2rem, 3vw, 2rem);
    overflow: hidden;
}

.job::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(var(--gold-soft), var(--gold-deep));
}

.job h3 {
    margin-bottom: 8px;
    font-size: clamp(1.25rem, 2.8vw, 1.8rem);
}

.job p {
    margin-top: 0;
}

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

.job li {
    position: relative;
    margin-bottom: 12px;
    padding: 14px 16px 14px 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    color: #edf0f2;
    background: rgba(255, 255, 255, 0.048);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.job li::before {
    content: "✦";
    position: absolute;
    left: 16px;
    top: 14px;
    color: var(--gold-soft);
}

.job li:hover {
    transform: translateX(5px);
    border-color: rgba(215, 181, 107, 0.38);
    background: rgba(181, 138, 59, 0.12);
}

.featured-job {
    border-color: rgba(215, 181, 107, 0.32);
    background: linear-gradient(145deg, rgba(24, 43, 66, 0.88), rgba(7, 16, 27, 0.76));
}

.featured-job::after {
    content: "";
    position: absolute;
    inset: auto -20% -45% auto;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(215, 181, 107, 0.16);
    filter: blur(8px);
    pointer-events: none;
}

.project-grid {
    display: grid;
    gap: 24px;
}

.project-card {
    padding: clamp(1.1rem, 3vw, 1.8rem);
}

.project-card > h3 {
    margin-bottom: 16px;
    font-size: clamp(1.25rem, 2.8vw, 1.85rem);
}

@media (max-width: 700px) {
    .hero-secondary {
        min-height: 34vh;
    }

    .job,
    .project-card {
        padding: 0.95rem;
    }

    .job h3,
    .project-card > h3 {
        font-size: 1.06rem;
        line-height: 1.3;
    }

    .job p,
    .job li,
    .project-card li,
    .project-card p {
        font-size: 0.88rem;
        line-height: 1.55;
    }

    .job li {
        padding: 12px 13px 12px 36px;
    }

    .job li::before {
        left: 13px;
        top: 12px;
    }
}
