
/* === Resume section === */
.resume-section {
    padding: 60px 0;
    background: #0b0b0f;              /* match dark theme */
}

.resume-section .title {
    color: #ffffff;
    text-align: center;
    margin-bottom: 32px;
    font-size: 2.2rem;
    position: relative;
}

.resume-section .title::after {
    content: "";
    width: 60px;
    height: 3px;
    border-radius: 999px;
    background: #f9532d;
    display: block;
    margin: 10px auto 0;
}

.resume-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.resume-subtitle {
    color: #ffffff;
    font-size: 1.1rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 18px;
    opacity: .9;
}

/* Timeline column */
.resume-timeline {
    position: relative;
    padding-left: 26px;
    border-left: 2px solid rgba(148, 163, 184, 0.4);   /* vertical line */
}

/* each job node */
.job {
    position: relative;
    margin-bottom: 26px;
    padding-left: 10px;
}

.job:last-child {
    margin-bottom: 0;
}

/* dot on the line */
.job-marker {
    position: absolute;
    left: -29px;                       /* align over line */
    top: 18px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #0b0b0f;
    border: 2px solid #f97316;
    box-shadow: 0 0 0 3px rgba(249, 83, 45, 0.45);
}

/* card content */
.job-card {
    background: rgba(15, 23, 42, 0.95);
    border-radius: 14px;
    padding: 16px 18px 14px;
    border: 1px solid rgba(148,163,184,0.35);
    box-shadow: 0 12px 30px rgba(0,0,0,0.45);
    transition: transform .18s ease, box-shadow .2s ease, border-color .18s ease;
}

.job-card:hover {
    transform: translateY(-4px);
    border-color: rgba(249,83,45,0.8);
    box-shadow: 0 18px 40px rgba(249,83,45,0.35);
}

.job-card h4 {
    margin: 0 0 4px;
    font-size: 1.05rem;
    color: #f9fafb;
}

.job-meta {
    margin: 0 0 10px;
    font-size: 0.9rem;
    color: #ffffff;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.job-meta em {
    font-style: normal;
    color: #e5e7eb;
}

.job-card ul {
    margin: 0;
    padding-left: 18px;
    color: #d1d5db;
    font-size: 0.95rem;
    line-height: 1.5;
    list-style-type: disc !important;
}

.job-card ul li + li {
    margin-top: 4px;
}

/* Responsive tweaks */
@media (max-width: 700px) {
    .resume-container {
        padding: 0 1rem;
    }

    .resume-timeline {
        padding-left: 20px;
    }

    .job-marker {
        left: -25px;
    }

    .job-card {
        padding: 14px 14px 12px;
    }
}

