/* /Components/Cards/CertificationCards.razor.rz.scp.css */
.cert-cards[b-6si8hws3pc] {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.cert-card[b-6si8hws3pc] {
    background: #fff;
    padding: 28px 34px;
    box-shadow: 0 14px 40px rgba(0,0,0,.08);
}

.cert-row[b-6si8hws3pc] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cert-year[b-6si8hws3pc] {
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 2px;
}

.cert-name[b-6si8hws3pc] {
    font-weight: 900;
    font-size: 16px;
}

.cert-issuer[b-6si8hws3pc] {
    color: var(--muted);
    font-size: 14px;
}

@media (max-width: 900px) {
    .cert-card[b-6si8hws3pc] { padding: 24px; }
}
/* /Components/Cards/EducationCards.razor.rz.scp.css */
.edu-cards[b-wlpx4yh6y7] {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.edu-card[b-wlpx4yh6y7] {
    background: #fff;
    padding: 28px 34px;
    box-shadow: 0 14px 40px rgba(0,0,0,.08);
}

.edu-year[b-wlpx4yh6y7] {
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 4px;
}

.edu-school[b-wlpx4yh6y7] {
    font-weight: 900;
    font-size: 16px;
}

.edu-degree[b-wlpx4yh6y7] {
    color: var(--muted);
    font-size: 14px;
}

@media (max-width: 900px) {
    .edu-card[b-wlpx4yh6y7] {
        padding: 24px;
    }
}
/* /Components/Cards/ExperienceCards.razor.rz.scp.css */
.job-cards[b-nphzo2gtk4] {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.job-card[b-nphzo2gtk4] {
    background: #fff;
    padding: 34px 38px;
    box-shadow: 0 14px 40px rgba(0,0,0,.08);
}

.job-row[b-nphzo2gtk4] {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.job-range[b-nphzo2gtk4] {
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 8px;
}

.job-title[b-nphzo2gtk4] {
    font-weight: 900;
    font-size: 16px;
}

.job-company[b-nphzo2gtk4],
.job-location[b-nphzo2gtk4] {
    color: var(--muted);
    font-size: 14px;
    margin-top: 6px;
}

.job-right[b-nphzo2gtk4] {
    padding-top: 2px;
}

.job-bullets[b-nphzo2gtk4] {
    margin: 0;
    padding-left: 18px;
}

.job-bullets li[b-nphzo2gtk4] {
    margin: 8px 0;
    color: rgba(0,0,0,.78);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .job-card[b-nphzo2gtk4] { padding: 24px; }
    .job-row[b-nphzo2gtk4] { grid-template-columns: 1fr; }
    .job-right[b-nphzo2gtk4] { padding-top: 12px; }
}
/* /Components/Cards/ExperienceTimeline.razor.rz.scp.css */
.experience-timeline[b-x2kecuq91y] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.experience-timeline:hover[b-x2kecuq91y] {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0,0,0,.14);
}

/* Each item */
.experience-item[b-x2kecuq91y] {
    background: #fff;
    border-radius: 16px;
    padding: 22px 24px;
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.experience-item:hover[b-x2kecuq91y] {
    transform: translateY(-3px);
    box-shadow: 0 20px 48px rgba(0,0,0,.14);
}


/* Dot */
.experience-item[b-x2kecuq91y]::before {
    display: none;
}

/* Header */
.experience-header[b-x2kecuq91y] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 6px;
}

.experience-title[b-x2kecuq91y] {
    margin: 0;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.01em;
}

.experience-company[b-x2kecuq91y] { font-size: 14px; }

/* Meta line */
.experience-meta[b-x2kecuq91y] {
    font-size: 13px;
    margin-bottom: 10px;
}

/* Bullets */
.experience-bullets[b-x2kecuq91y] {
    margin: 0;
    padding-left: 18px;
}

.experience-bullets li[b-x2kecuq91y] {
    margin: 6px 0;
    color: rgba(0, 0, 0, .78);
    line-height: 1.55;
}

/* More details link */
.timeline-link[b-x2kecuq91y] {
    display: inline-block;
    margin-top: 10px;
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 700;
}

/* Reveal delay helpers */
.reveal-delay-0[b-x2kecuq91y] { transition-delay: 0ms; }
.reveal-delay-1[b-x2kecuq91y] { transition-delay: 120ms; }
.reveal-delay-2[b-x2kecuq91y] { transition-delay: 240ms; }
.reveal-delay-3[b-x2kecuq91y] { transition-delay: 360ms; }
.reveal-delay-4[b-x2kecuq91y] { transition-delay: 480ms; }

/* Mobile spacing */
@media (max-width: 900px) {
    .timeline-card[b-x2kecuq91y] {
        padding: 18px;
        border-radius: 14px;
    }
}
/* /Components/Cards/ProjectCards.razor.rz.scp.css */
.project-cards[b-vapqlisy1m] {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.project-card[b-vapqlisy1m] {
    background: #fff;
    padding: 34px 38px;
    box-shadow: 0 14px 40px rgba(0,0,0,.08);
    border-radius: 18px;
}

/* header */
.project-head[b-vapqlisy1m] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
}

.project-title[b-vapqlisy1m] {
    margin: 0;
    font-weight: 900;
    font-size: 20px;
}

.project-subtitle[b-vapqlisy1m] {
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px;
}

.project-link[b-vapqlisy1m] {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 800;
    white-space: nowrap;
}

/* blocks */
.project-block[b-vapqlisy1m] {
    margin-top: 16px;
}

.project-label[b-vapqlisy1m] {
    font-weight: 900;
    margin-bottom: 6px;
}

.project-text[b-vapqlisy1m] {
    margin: 0;
    color: rgba(0,0,0,.78);
    line-height: 1.7;
}

/* bullets */
.project-bullets[b-vapqlisy1m] {
    margin: 0;
    padding-left: 18px;
}

.project-bullets li[b-vapqlisy1m] {
    margin: 8px 0;
    color: rgba(0,0,0,.78);
    line-height: 1.5;
}

/* tech pills */
.project-tech[b-vapqlisy1m] {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-pill[b-vapqlisy1m] {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0,0,0,.05);
    font-weight: 800;
    font-size: 14px;
}

@media (max-width: 900px) {
    .project-card[b-vapqlisy1m] { padding: 24px; }
}
/* /Components/Cards/SkillChips.razor.rz.scp.css */
/* SkillsChips.razor.css */

.chips[b-imv5xvn1cf] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.chip[b-imv5xvn1cf] {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #fff;

    font-size: 13px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.75);

    white-space: nowrap;
}

/* Optional emphasis variant */
.chip.primary[b-imv5xvn1cf] {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}
/* /Components/Cards/SkillGrid.razor.rz.scp.css */
.skill-card[b-rydn1vhzd5] {
    background: #fff;
    padding: 34px 38px;
    box-shadow: 0 14px 40px rgba(0,0,0,.08);
}

.skill-grid[b-rydn1vhzd5] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 44px;
}

.skill-group[b-rydn1vhzd5] {
    padding-top: 6px;
    border-top: 1px solid rgba(0,0,0,.08);
}
.skill-group:first-child[b-rydn1vhzd5] {
    border-top: none;
    padding-top: 0;
}

.skill-category[b-rydn1vhzd5] {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 900;
}

.skill-list[b-rydn1vhzd5] {
    margin: 0;
    padding-left: 18px;
}

.skill-list li[b-rydn1vhzd5] {
    margin: 7px 0;
    color: rgba(0,0,0,.78);
    line-height: 1.55;
    overflow-wrap: anywhere; /* helps long items wrap cleanly */
}

/* Mobile */
@media (max-width: 900px) {
    .skill-card[b-rydn1vhzd5] { padding: 24px; }
    .skill-grid[b-rydn1vhzd5] { grid-template-columns: 1fr; }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-ghs1p8fnsz] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-ghs1p8fnsz] {
    flex: 1;
}

.sidebar[b-ghs1p8fnsz] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-ghs1p8fnsz] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-ghs1p8fnsz]  a, .top-row[b-ghs1p8fnsz]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-ghs1p8fnsz]  a:hover, .top-row[b-ghs1p8fnsz]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-ghs1p8fnsz]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-ghs1p8fnsz] {
        justify-content: space-between;
    }

    .top-row[b-ghs1p8fnsz]  a, .top-row[b-ghs1p8fnsz]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-ghs1p8fnsz] {
        flex-direction: row;
    }

    .sidebar[b-ghs1p8fnsz] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-ghs1p8fnsz] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-ghs1p8fnsz]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-ghs1p8fnsz], article[b-ghs1p8fnsz] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-8mnldbvmrf] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-8mnldbvmrf] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-8mnldbvmrf] {
    font-size: 1.1rem;
}

.bi[b-8mnldbvmrf] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-8mnldbvmrf] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-8mnldbvmrf] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-8mnldbvmrf] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-8mnldbvmrf] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-8mnldbvmrf] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-8mnldbvmrf] {
        padding-bottom: 1rem;
    }

    .nav-item[b-8mnldbvmrf]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-8mnldbvmrf]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-8mnldbvmrf]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-8mnldbvmrf] {
        display: none;
    }

    .collapse[b-8mnldbvmrf] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-8mnldbvmrf] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Pages/Contact.razor.rz.scp.css */
/* Page wrapper */
.contact-page[b-4aaj5744pp] {
    padding: 54px 0 70px;
}

/* Title area (centered like Wix) */
.contact-hero[b-4aaj5744pp] {
    display: flex;
    justify-content: center;
    margin-bottom: 26px;
}

.contact-title[b-4aaj5744pp] {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.square[b-4aaj5744pp] {
    width: 14px;
    height: 14px;
    background: var(--blue);
    border-radius: 2px;
}

/* White card */
.contact-card[b-4aaj5744pp] {
    max-width: 760px;
    margin: 0 auto;
    background: #fff;
    padding: 44px 56px;
    box-shadow: 0 18px 50px rgba(0,0,0,.10);
}

/* Form grid */
.grid-2[b-4aaj5744pp] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 28px;
}

.field[b-4aaj5744pp] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

label[b-4aaj5744pp] {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .3px;
}

.req[b-4aaj5744pp] {
    color: rgba(0,0,0,.65);
}

/* Wix-like underline inputs */
.input[b-4aaj5744pp] {
    height: 42px;
    padding: 10px 4px;
    border: none;
    border-bottom: 2px solid rgba(0,0,0,.35);
    background: transparent;
    outline: none;
    font-size: 15px;
}

.input:focus[b-4aaj5744pp] {
    border-bottom-color: var(--blue);
}

.textarea[b-4aaj5744pp] {
    height: 110px;
    resize: vertical;
    padding-top: 12px;
}

/* Actions */
.actions[b-4aaj5744pp] {
    margin-top: 18px;
}

/* Buttons */
.btn[b-4aaj5744pp] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 26px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: .6px;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary[b-4aaj5744pp] {
    background: var(--blue);
    color: #fff;
}

.btn-primary:hover[b-4aaj5744pp] {
    filter: brightness(0.95);
}

.btn-outline[b-4aaj5744pp] {
    background: transparent;
    border-color: rgba(0,0,0,.25);
    color: rgba(0,0,0,.80);
}

/* Validation (simple + clean) */
.validation-summary[b-4aaj5744pp] {
    margin: 0 0 16px 0;
    color: #b00020;
    font-weight: 700;
}

.validation-message[b-4aaj5744pp] {
    color: #b00020;
    font-size: 12px;
}

/* Success state */
.success[b-4aaj5744pp] {
    display: grid;
    gap: 10px;
}

.success-title[b-4aaj5744pp] {
    font-size: 18px;
    font-weight: 900;
}

.success-text[b-4aaj5744pp] {
    color: rgba(0,0,0,.70);
}

/* Mobile */
@media (max-width: 900px) {
    .contact-card[b-4aaj5744pp] {
        padding: 28px 22px;
        margin: 0 14px;
    }

    .grid-2[b-4aaj5744pp] {
        grid-template-columns: 1fr;
    }

    .contact-title[b-4aaj5744pp] {
        font-size: 40px;
    }
}

.hp[b-4aaj5744pp] {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.error-box[b-4aaj5744pp] {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(179, 33, 33, .08);
    border: 1px solid rgba(179, 33, 33, .25);
    color: #7a1f1f;
    font-weight: 600;
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* Home.razor.css */

:root[b-1bce2on4t8] {
    --home-max: 1400px;     /* keep your current max */
    --home-gutter: 24px;
    --home-gap: 40px;

    --card-radius: 18px;   /* slightly rounder by default */
    --card-shadow: 0 14px 40px rgba(0,0,0,.08);
}

/* Page spacing */
.home[b-1bce2on4t8] {
    padding: 52px 0;
}

.home-inner[b-1bce2on4t8] {
    max-width: var(--home-max);
    margin: 0 auto;
    padding: 0 var(--home-gutter);
}

/* 3-column grid */
.home-grid-3[b-1bce2on4t8] {
    width: 100%;
    margin: 0 auto;
    padding: 0;

    display: grid;
    grid-template-columns: minmax(320px, 380px) minmax(0, 1fr) minmax(320px, 460px);
    gap: var(--home-gap);
    align-items: start;
}

/* Prevent grid children from overflowing into other columns */
.home-grid-3 > *[b-1bce2on4t8] {
    min-width: 0;
}

/* =========================
   Left card (Profile)
   ========================= */

.profile-card[b-1bce2on4t8] {
    background: #fff;

    /* Match experience card exactly */
    border-radius: 22px;

    padding: 30px 26px;
    box-shadow: 0 12px 32px rgba(0,0,0,.08);

    display: flex;
    flex-direction: column;
    gap: 10px;

    min-height: 520px;

    position: static;
    max-height: none;

    z-index: 2;

    /* Important for rounding to visually clip properly */
    overflow: hidden;
}

/* Sticky only on full desktop (prevents 993–1200 overlap) */
@media (min-width: 1201px) {
    .profile-card[b-1bce2on4t8] {
        position: sticky;
        top: 110px;
        max-height: calc(100vh - 160px);
    }
}

.avatar[b-1bce2on4t8] {
    /* Always centered */
    display: block;
    margin: 0 auto 22px;

    /* Never exceed the card width */
    width: min(280px, 100%);
    aspect-ratio: 1 / 1;
    height: auto;

    border-radius: 50%;
    overflow: hidden;
    background: #eee;
}

.avatar img[b-1bce2on4t8] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: 35% 50%;
}

.profile-name[b-1bce2on4t8] {
    margin-top: 4px;
    margin-bottom: 14px;
}

.profile-meta[b-1bce2on4t8] {
    margin-top: auto; /* pushes toward bottom */
    display: grid;
    gap: 6px;
}

.profile-meta a[b-1bce2on4t8] {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Profile nav */
.profile-actions[b-1bce2on4t8] {
    margin-top: 18px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap; /* avoids overflow at narrower widths */
}

.profile-card .profile-actions .nav-link[b-1bce2on4t8] {
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 700;
}

.muted[b-1bce2on4t8] {
    font-size: 18px;
    line-height: 1.4;
}

/* =========================
   Middle column (About)
   ========================= */

.about-col[b-1bce2on4t8] {
    padding-top: 6px;
}

.hello[b-1bce2on4t8] {
    font-size: 50px;
    line-height: .92;
    margin: 0 0 14px 0;
    font-weight: 900;
}

.section-title[b-1bce2on4t8] {
    font-size: 18px;
    font-weight: 900;
    margin: 18px 0 10px 0;
}

.about-text[b-1bce2on4t8] {
    color: rgba(0, 0, 0, .72);
    line-height: 1.7;
    margin: 0;
    max-width: 62ch;
}

/* =========================
   Right column (Experience)
   ========================= */

.experience-col[b-1bce2on4t8] {
    padding-top: 18px;
    position: relative;
    z-index: 1; /* ensure it cannot paint over the profile card */
}

.section-head[b-1bce2on4t8] {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
}

.section-head h2[b-1bce2on4t8] {
    margin: 0;
    font-size: 34px;
    font-weight: 900;
}

.home-link[b-1bce2on4t8] {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 700;
}

.recent-experience-card[b-1bce2on4t8] {
    background: #fff;
    border-radius: 18px;
    padding: 22px 26px;
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
    overflow: hidden;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.recent-experience-card:hover[b-1bce2on4t8] {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0,0,0,.14);
}

/* =========================
   Responsive behavior
   ========================= */

/* <= 1200px: 3-col -> 2-col and experience moves under */
@media (max-width: 1200px) {
    :root[b-1bce2on4t8] {
        --home-gap: 28px; /* add a bit more breathing room */
    }

    .home-grid-3[b-1bce2on4t8] {
        grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
    }

    /* Buffer between profile and intro paragraph at ~992 widths */
    .about-col[b-1bce2on4t8] {
        padding-left: 10px;
    }

    /* Experience moves below to avoid crowding */
    .experience-col[b-1bce2on4t8] {
        grid-column: 1 / -1;
        padding-top: 10px;
    }
}

/* <= 992px: 2-col -> 1-col */
@media (max-width: 992px) {
    :root[b-1bce2on4t8] {
        --home-gutter: 20px;
        --home-gap: 22px;
    }

    .home[b-1bce2on4t8] {
        padding: 40px 0;
    }

    .home-inner[b-1bce2on4t8] {
        padding: 0 var(--home-gutter);
    }

    .home-grid-3[b-1bce2on4t8] {
        grid-template-columns: 1fr;
        gap: var(--home-gap);
    }

    .profile-card[b-1bce2on4t8] {
        min-height: auto;
        padding: 22px 18px;
    }

    .avatar[b-1bce2on4t8] {
        width: min(220px, 72vw);
        height: min(220px, 72vw);
        margin: 0 auto 16px;
    }

    .hello[b-1bce2on4t8] {
        font-size: clamp(30px, 8vw, 44px);
    }

    .about-text[b-1bce2on4t8] {
        max-width: 100%;
    }

    .muted[b-1bce2on4t8] {
        font-size: 16px;
    }

    .section-head h2[b-1bce2on4t8] {
        font-size: clamp(24px, 6vw, 32px);
    }
}

@media (max-width: 1200px) and (min-width: 993px) {
    .avatar[b-1bce2on4t8] {
        width: min(240px, 100%);
        margin-bottom: 18px;
    }
}

/* <= 576px: phone refinements */
@media (max-width: 576px) {
    :root[b-1bce2on4t8] {
        --home-gutter: 14px;
    }

    .home[b-1bce2on4t8] {
        padding: 28px 0;
    }

    .profile-card[b-1bce2on4t8] {
        padding: 20px 16px;
    }

    /* Long emails/links should wrap safely */
    .profile-meta a[b-1bce2on4t8],
    .about-text[b-1bce2on4t8] {
        overflow-wrap: anywhere;
        word-break: break-word;
    }
}

/* <= 420px: tiny phones */
@media (max-width: 420px) {
    :root[b-1bce2on4t8] {
        --home-gutter: 12px;
    }

    .avatar[b-1bce2on4t8] {
        width: min(190px, 78vw);
        height: min(190px, 78vw);
    }

    /* Slightly different crop at tiny sizes */
    .avatar img[b-1bce2on4t8] {
        object-position: 32% 50%;
    }
}

/* =========================
   Full desktop spacing (1201px+)
   ========================= */
@media (min-width: 1201px) {
    .home-grid-3[b-1bce2on4t8] {
        gap: 64px; /* more buffer between profile, intro, and experience */
    }

    .about-col[b-1bce2on4t8] {
        padding-right: 20px; /* buffer between intro and experience */
    }
}
/* /Components/Pages/Project.razor.rz.scp.css */
.projects-page[b-kiyktw6vjb] { padding: 0; }

/* Hero */
.projects-hero[b-kiyktw6vjb] {
    padding: 48px 0 22px 0;
}

.projects-hero-inner[b-kiyktw6vjb] {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.projects-title[b-kiyktw6vjb] {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-size: 56px;
    letter-spacing: -0.02em;
}

.projects-square[b-kiyktw6vjb] {
    width: 14px;
    height: 14px;
    background: var(--blue);
    border-radius: 2px;
}

/* Section */
.projects-section[b-kiyktw6vjb] {
    background: #f7f7f7;
    padding: 44px 0;
    margin-top: 18px;
}

.projects-section-inner[b-kiyktw6vjb] {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 20px;
}

.projects-section-title[b-kiyktw6vjb] {
    margin: 0 0 18px 0;
    font-size: 28px;
}

@media (max-width: 900px) {
    .projects-title[b-kiyktw6vjb] { font-size: 44px; }
}
/* /Components/Pages/Resume.razor.rz.scp.css */
.resume-page[b-892akoejk1] { padding: 0; }

/* Hero */
.resume-hero[b-892akoejk1] {
    padding: 48px 0 22px 0;
}

.resume-hero-inner[b-892akoejk1] {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 20px;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.resume-title[b-892akoejk1] {
    grid-column: 2;
    justify-self: center;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin: 0;
    font-size: 56px;
    letter-spacing: -0.02em;
}

.resume-square[b-892akoejk1] {
    width: 14px;
    height: 14px;
    background: var(--blue);
    border-radius: 2px;
}

/* Sections */
.resume-section[b-892akoejk1] {
    background: #f7f7f7;
    padding: 44px 0;
    margin-top: 18px;
}
.resume-actions[b-892akoejk1] {
    grid-column: 3;
    justify-self: end;
}
.resume-section-inner[b-892akoejk1] {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 20px;
}

.resume-section-title[b-892akoejk1] {
    margin: 0 0 18px 0;
    font-size: 28px;
}

/* Layout helpers */
.resume-stack[b-892akoejk1] {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.certification-stack[b-892akoejk1] {
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

/* Responsive hero */
@media (max-width: 900px) {
    .resume-hero-inner[b-892akoejk1] {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .resume-title[b-892akoejk1] {
        font-size: 44px;
    }
}
