/* Custom overrides for qasim-public */

/* Hero profile picture — centered circle with thick white border */
.hero-profile-pic {
    display: inline-block;
    width: 280px !important;
    height: 280px !important;
    max-width: 280px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 8px solid #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

@media (max-width: 767px) {
    .hero-profile-pic {
        width: 200px !important;
        height: 200px !important;
        max-width: 200px;
        border-width: 6px;
    }
}

/* ── Experience section ──────────────────────────────────────────────── */

/* One full-width experience per row, same layout on desktop and mobile */
.exp-list {
    max-width: 860px;
    margin: 0 auto;
}
.exp-item {
    padding: 30px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.exp-item:first-child {
    border-top: 0;
    padding-top: 0;
}
.light-content .exp-item {
    border-top-color: rgba(255, 255, 255, 0.12);
}
.exp-item-title {
    margin: 0 0 4px;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.02em;
}
.exp-item-title a {
    color: inherit;
    transition: opacity 0.2s ease;
}
.exp-item-title a:hover {
    opacity: 0.65;
}
.exp-item-role {
    margin-bottom: 3px;
    font-size: 18px;
    font-weight: 500;
    color: #444;
}
.light-content .exp-item-role {
    color: #ddd;
}
.exp-item-period {
    margin-bottom: 16px;
    font-family: var(--font-global-alt);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    opacity: 0.6;
}
.exp-item-descr {
    font-family: var(--font-global-alt);
    font-size: 16px;
    line-height: 1.7;
    color: #757575;
    white-space: pre-wrap;
}
.light-content .exp-item-descr {
    color: #bbb;
}
.exp-item-descr :last-child {
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .exp-item-title {
        font-size: 21px;
    }
    .exp-item-role {
        font-size: 16px;
    }
}
