/******* Do not edit this file *******/
/*
My Custom CSS - by Salvatore Noschese
aka L'AltroWeb - https://laltroweb.it/
/*
Saved: Aug 31 2026 | 12:40:52 (pm)
/*
/******* Do not edit this file *******/

/* =========================================================
   YUSUF ZIYA CICEK — ACADEMIC PORTFOLIO
   ========================================================= */

:root {
    --yzc-navy: #07111f;
    --yzc-navy-2: #0b1829;
    --yzc-ink: #111827;
    --yzc-muted: #64748b;
    --yzc-light: #f5f7f9;
    --yzc-line: #e2e8f0;
    --yzc-red: #c8102e;
    --yzc-white: #ffffff;
    --yzc-max: 1220px;
}

/* ---------- BASE ---------- */

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

.yzc-portfolio,
.yzc-portfolio * {
    box-sizing: border-box;
}

.yzc-portfolio {
    width: 100%;
    max-width: none !important;
    margin: 0 !important;
    color: var(--yzc-ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
                 Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.65;
}

.yzc-container {
    width: min(calc(100% - 64px), var(--yzc-max));
    margin: 0 auto;
}

.yzc-portfolio h1,
.yzc-portfolio h2,
.yzc-portfolio h3,
.yzc-portfolio h4,
.yzc-portfolio p {
    margin-top: 0;
}

.yzc-portfolio a {
    text-decoration: none;
}

.yzc-section {
    padding: 120px 0;
}


/* =========================================================
   HERO
   ========================================================= */

.yzc-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
    background:
        radial-gradient(circle at 75% 20%, rgba(200,16,46,.20), transparent 27%),
        radial-gradient(circle at 15% 80%, rgba(39,92,140,.18), transparent 30%),
        linear-gradient(135deg, #050b13 0%, #071321 55%, #0c1b2e 100%);
}

.yzc-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .13;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(to bottom, black, transparent);
}

.yzc-hero::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35%;
    height: 5px;
    background: var(--yzc-red);
}

.yzc-hero-inner {
    position: relative;
    z-index: 2;
    padding: 100px 0 120px;
}

.yzc-eyebrow,
.yzc-mini-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #d8dee8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
}

.yzc-eyebrow::before {
    content: "";
    display: block;
    width: 38px;
    height: 2px;
    background: var(--yzc-red);
}

.yzc-hero h1 {
    max-width: 950px;
    margin: 25px 0 24px;
    color: white;
    font-size: clamp(64px, 8vw, 116px);
    font-weight: 300;
    line-height: .88;
    letter-spacing: -.055em;
}

.yzc-hero h1 span {
    display: block;
    color: transparent;
    font-weight: 750;
    -webkit-text-stroke: 1px rgba(255,255,255,.9);
}

.yzc-role {
    margin-bottom: 24px !important;
    color: #f8fafc;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 500;
}

.yzc-role b {
    margin: 0 8px;
    color: var(--yzc-red);
}

.yzc-lead {
    max-width: 800px;
    color: #aeb9c8;
    font-size: 18px;
}

.yzc-lead strong {
    color: white;
    font-weight: 500;
}

.yzc-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

.yzc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 27px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 3px;
    font-size: 14px;
    font-weight: 700;
    transition: .25s ease;
}

.yzc-btn-primary {
    color: white !important;
    border-color: var(--yzc-red);
    background: var(--yzc-red);
}

.yzc-btn-primary:hover {
    transform: translateY(-3px);
    background: #a90c25;
}

.yzc-btn-secondary {
    color: white !important;
    background: rgba(255,255,255,.03);
}

.yzc-btn-secondary:hover {
    border-color: white;
    background: rgba(255,255,255,.08);
}

.yzc-topic-row {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 58px;
}

.yzc-topic-row span {
    padding: 7px 12px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 30px;
    color: #aab5c4;
    font-size: 12px;
    letter-spacing: .04em;
}

.yzc-scroll {
    position: absolute;
    right: 32px;
    bottom: 48px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #8290a2;
    font-size: 9px;
    letter-spacing: .17em;
    transform: rotate(90deg);
    transform-origin: right center;
}

.yzc-scroll i {
    width: 45px;
    height: 1px;
    background: #8290a2;
}


/* =========================================================
   COMMON SECTION TITLES
   ========================================================= */

.yzc-section-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 65px;
    color: #64748b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
}

.yzc-section-label span {
    color: var(--yzc-red);
}

.yzc-section-label::after {
    content: "";
    width: 55px;
    height: 1px;
    background: #cbd5e1;
}

.yzc-label-light {
    color: #8492a5;
}

.yzc-label-light::after {
    background: #344155;
}

.yzc-section-heading {
    display: grid;
    grid-template-columns: 1.5fr .8fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 65px;
}

.yzc-section-heading h2,
.yzc-about h2 {
    margin-bottom: 0;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 300;
    line-height: 1.03;
    letter-spacing: -.045em;
}

.yzc-section-heading h2 em,
.yzc-about h2 span,
.yzc-connect h2 em {
    color: var(--yzc-red);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

.yzc-section-heading p {
    max-width: 460px;
    margin-bottom: 5px;
    color: #94a3b8;
}


/* =========================================================
   ABOUT
   ========================================================= */

.yzc-about {
    background: white;
}

.yzc-about-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 100px;
}

.yzc-about h2 span {
    display: block;
    margin-top: 7px;
}

.yzc-about-copy {
    border-left: 1px solid var(--yzc-line);
    padding-left: 50px;
}

.yzc-about-copy p {
    color: #64748b;
}

.yzc-about-copy .yzc-big-copy {
    margin-bottom: 28px;
    color: #1e293b;
    font-size: 21px;
    line-height: 1.6;
}


/* =========================================================
   EXPERTISE
   ========================================================= */

.yzc-dark {
    color: white;
    background: var(--yzc-navy);
}

.yzc-expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #263447;
    border-bottom: 1px solid #263447;
}

.yzc-expertise-card {
    position: relative;
    min-height: 520px;
    padding: 42px;
    border-right: 1px solid #263447;
    transition: .3s ease;
}

.yzc-expertise-card:last-child {
    border-right: 0;
}

.yzc-expertise-card:hover {
    transform: translateY(-8px);
    background: #0d1c2f;
}

.yzc-featured-card {
    background: #0b192a;
}

.yzc-card-number {
    color: #56667a;
    font-size: 11px;
    letter-spacing: .16em;
}

.yzc-card-icon {
    display: flex;
    width: 58px;
    height: 58px;
    margin: 55px 0 28px;
    align-items: center;
    justify-content: center;
    border: 1px solid #435066;
    color: #d9e0e9;
    font-family: Georgia, serif;
    font-size: 25px;
}

.yzc-expertise-card h3 {
    color: white;
    font-size: 25px;
    font-weight: 500;
}

.yzc-expertise-card p {
    color: #93a1b4;
    font-size: 14px;
}

.yzc-expertise-card ul {
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.yzc-expertise-card li {
    padding: 8px 0;
    border-bottom: 1px solid #233146;
    color: #cbd5e1;
    font-size: 13px;
}

.yzc-expertise-card li::before {
    content: "—";
    margin-right: 10px;
    color: var(--yzc-red);
}


/* =========================================================
   RESEARCH
   ========================================================= */

.yzc-research {
    background: #f6f7f8;
}

.yzc-heading-dark p {
    color: #64748b;
}

.yzc-research-list {
    border-top: 1px solid #cbd5e1;
}

.yzc-research-item {
    display: grid;
    grid-template-columns: 90px 1fr 60px;
    gap: 30px;
    align-items: center;
    padding: 38px 5px;
    border-bottom: 1px solid #cbd5e1;
    transition: .25s ease;
}

.yzc-research-item:hover {
    padding-left: 20px;
    padding-right: 20px;
    background: white;
}

.yzc-research-no {
    color: #94a3b8;
    font-family: Georgia, serif;
    font-size: 22px;
}

.yzc-tag {
    color: var(--yzc-red);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .15em;
}

.yzc-research-item h3 {
    margin: 7px 0 7px;
    font-size: clamp(25px, 3vw, 37px);
    font-weight: 400;
    letter-spacing: -.025em;
}

.yzc-research-item p {
    max-width: 760px;
    margin-bottom: 0;
    color: #64748b;
    font-size: 14px;
}

.yzc-arrow {
    color: #64748b;
    font-size: 28px;
    transition: .2s ease;
}

.yzc-research-item:hover .yzc-arrow {
    color: var(--yzc-red);
    transform: translate(4px, -4px);
}


/* =========================================================
   STATEMENT
   ========================================================= */

.yzc-statement {
    padding: 120px 0;
    color: white;
    text-align: center;
    background:
        linear-gradient(rgba(7,17,31,.94), rgba(7,17,31,.94)),
        var(--yzc-navy);
}

.yzc-statement-mark {
    color: var(--yzc-red);
    font-family: Georgia, serif;
    font-size: 90px;
    line-height: .7;
}

.yzc-statement blockquote {
    max-width: 900px;
    margin: 20px auto 35px;
    color: white;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 4vw, 53px);
    font-weight: 400;
    line-height: 1.22;
}

.yzc-statement blockquote em {
    color: #aab6c6;
}

.yzc-statement p {
    color: #68788e;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .2em;
}


/* =========================================================
   SELECTED WORK
   ========================================================= */

.yzc-work {
    background: white;
}

.yzc-work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.yzc-work-card {
    position: relative;
    min-height: 390px;
    padding: 34px;
    border: 1px solid var(--yzc-line);
    background: white;
    transition: .28s ease;
}

.yzc-work-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--yzc-red);
    transition: width .3s ease;
}

.yzc-work-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 55px rgba(15,23,42,.09);
}

.yzc-work-card:hover::before {
    width: 100%;
}

.yzc-work-top {
    display: flex;
    justify-content: space-between;
    color: #94a3b8;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
}

.yzc-work-card h3 {
    margin: 80px 0 18px;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.15;
}

.yzc-work-card p {
    color: #64748b;
    font-size: 14px;
}

.yzc-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 28px;
}

.yzc-chips span {
    padding: 5px 9px;
    background: #f1f5f9;
    color: #64748b;
    font-size: 10px;
}


/* =========================================================
   EXPERIENCE
   ========================================================= */

.yzc-experience {
    background: #f6f7f8;
}

.yzc-timeline {
    margin-top: 30px;
    border-top: 1px solid #cbd5e1;
}

.yzc-timeline-item {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 70px;
    padding: 45px 0;
    border-bottom: 1px solid #cbd5e1;
}

.yzc-year {
    color: var(--yzc-red);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .13em;
}

.yzc-timeline-item h3 {
    margin-bottom: 5px;
    font-size: 28px;
    font-weight: 500;
}

.yzc-timeline-item h4 {
    margin-bottom: 18px;
    color: #64748b;
    font-size: 15px;
    font-weight: 500;
}

.yzc-timeline-item p {
    max-width: 690px;
    margin-bottom: 0;
    color: #64748b;
}


/* =========================================================
   TEACHING
   ========================================================= */

.yzc-teaching {
    color: white;
    background: var(--yzc-navy);
}

.yzc-teaching .yzc-section-label {
    color: #7f8da0;
}

.yzc-teaching-box {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 70px;
    align-items: center;
    padding: 65px;
    border: 1px solid #28374b;
    background: #0a1727;
}

.yzc-teaching-box h2 {
    margin: 16px 0;
    color: white;
    font-size: clamp(40px, 5vw, 65px);
    font-weight: 300;
    letter-spacing: -.04em;
}

.yzc-teaching-box p {
    max-width: 650px;
    color: #91a0b4;
}

.yzc-teaching-symbol {
    color: white;
    font-family: Georgia, serif;
    font-size: 100px;
    text-align: center;
}

.yzc-teaching-symbol span {
    color: var(--yzc-red);
}


/* =========================================================
   CONNECT
   ========================================================= */

.yzc-connect {
    padding: 140px 0;
    text-align: center;
    background: white;
}

.yzc-connect .yzc-mini-label {
    color: #64748b;
}

.yzc-connect h2 {
    max-width: 850px;
    margin: 20px auto 25px;
    font-size: clamp(48px, 6vw, 78px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -.05em;
}

.yzc-connect p {
    max-width: 620px;
    margin: 0 auto;
    color: #64748b;
}

.yzc-connect-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 45px;
}

.yzc-connect-links a {
    padding: 13px 19px;
    border: 1px solid #cbd5e1;
    color: #334155 !important;
    font-size: 13px;
    font-weight: 650;
    transition: .2s ease;
}

.yzc-connect-links a:hover {
    color: white !important;
    border-color: var(--yzc-red);
    background: var(--yzc-red);
}


/* =========================================================
   WORDPRESS INTEGRATION
   ========================================================= */

/* Remove unwanted spacing around our custom page */
main,
.wp-site-blocks {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.yzc-portfolio {
    margin-block-start: 0 !important;
}

/* Make portfolio sections truly wide */
.yzc-portfolio,
.yzc-portfolio > section {
    max-width: none !important;
}

/* Header */
header.wp-block-template-part {
    position: relative;
    z-index: 50;
}

/* Remove accidental paragraph margins from WP */
.yzc-portfolio p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .yzc-container {
        width: min(calc(100% - 40px), var(--yzc-max));
    }

    .yzc-section {
        padding: 85px 0;
    }

    .yzc-hero {
        min-height: 680px;
    }

    .yzc-hero h1 {
        font-size: clamp(58px, 14vw, 90px);
    }

    .yzc-section-heading,
    .yzc-about-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .yzc-about-copy {
        padding-left: 0;
        border-left: 0;
    }

    .yzc-expertise-grid,
    .yzc-work-grid {
        grid-template-columns: 1fr;
    }

    .yzc-expertise-card {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid #263447;
    }

    .yzc-timeline-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .yzc-teaching-box {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .yzc-teaching-symbol {
        display: none;
    }
}


@media (max-width: 600px) {

    .yzc-container {
        width: min(calc(100% - 30px), var(--yzc-max));
    }

    .yzc-section {
        padding: 70px 0;
    }

    .yzc-hero {
        min-height: 650px;
    }

    .yzc-hero-inner {
        padding: 80px 0;
    }

    .yzc-hero h1 {
        font-size: 55px;
    }

    .yzc-role {
        font-size: 17px;
    }

    .yzc-lead {
        font-size: 15px;
    }

    .yzc-scroll {
        display: none;
    }

    .yzc-section-label {
        margin-bottom: 40px;
    }

    .yzc-section-heading h2,
    .yzc-about h2 {
        font-size: 42px;
    }

    .yzc-research-item {
        grid-template-columns: 42px 1fr;
        gap: 15px;
    }

    .yzc-research-item .yzc-arrow {
        display: none;
    }

    .yzc-expertise-card,
    .yzc-work-card {
        padding: 28px;
    }

    .yzc-work-card {
        min-height: 330px;
    }

    .yzc-connect {
        padding: 90px 0;
    }

    .yzc-connect h2 {
        font-size: 45px;
    }
}
/* =========================================================
   CUSTOM ACADEMIC FOOTER
   ========================================================= */

.yzc-footer {
    position: relative;
    overflow: hidden;
    padding: 85px 0 28px;
    color: #d9e1eb;
    background:
        radial-gradient(circle at 85% 20%, rgba(200,16,46,.11), transparent 28%),
        #050d18;
    border-top: 1px solid #243247;
}

.yzc-footer::before {
    content: "YZÇ";
    position: absolute;
    right: -15px;
    bottom: -85px;
    color: rgba(255,255,255,.025);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(180px, 24vw, 390px);
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
}

.yzc-footer-main {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.5fr .7fr .8fr;
    gap: 80px;
    padding-bottom: 70px;
}

.yzc-footer-brand {
    display: flex;
    gap: 22px;
    align-items: flex-start;
}

.yzc-footer-mark {
    display: flex;
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    align-items: center;
    justify-content: center;
    border: 1px solid #34445a;
    color: white;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
}

.yzc-footer-brand h3 {
    margin: 4px 0 7px;
    color: white;
    font-size: 23px;
    font-weight: 500;
    letter-spacing: -.02em;
}

.yzc-footer-brand p {
    color: #76879d;
    font-size: 13px;
    letter-spacing: .04em;
}

.yzc-footer-nav,
.yzc-footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.yzc-footer-label {
    margin-bottom: 20px;
    color: #6c7c91;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .2em;
}

.yzc-footer-nav a,
.yzc-footer-links a {
    position: relative;
    margin: 5px 0;
    color: #d1d9e4 !important;
    font-size: 13px;
    transition: .2s ease;
}

.yzc-footer-nav a:hover,
.yzc-footer-links a:hover {
    padding-left: 7px;
    color: white !important;
}

.yzc-footer-nav a::before,
.yzc-footer-links a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--yzc-red);
    transition: .2s ease;
}

.yzc-footer-nav a:hover::before,
.yzc-footer-links a:hover::before {
    left: -13px;
    width: 8px;
}

.yzc-footer-bottom {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.5fr auto;
    gap: 30px;
    align-items: center;
    padding-top: 26px;
    border-top: 1px solid #263449;
    color: #67788e;
    font-size: 10px;
    letter-spacing: .04em;
}

.yzc-footer-bottom p {
    margin: 0;
}

.yzc-footer-note {
    text-align: center;
}

.yzc-back-top {
    color: #9aa8ba !important;
    font-weight: 600;
    transition: .2s ease;
}

.yzc-back-top:hover {
    color: white !important;
}


/* FOOTER MOBILE */

@media (max-width: 900px) {

    .yzc-footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .yzc-footer-brand {
        grid-column: 1 / -1;
    }

    .yzc-footer-bottom {
        grid-template-columns: 1fr auto;
    }

    .yzc-footer-note {
        display: none;
    }
}


@media (max-width: 600px) {

    .yzc-footer {
        padding-top: 65px;
    }

    .yzc-footer-main {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .yzc-footer-brand {
        grid-column: auto;
    }

    .yzc-footer-bottom {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}
/* =========================================================
   CUSTOM HEADER
   ========================================================= */

.yzc-topbar {
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.08);
    background: rgba(5,13,24,.94);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.yzc-topbar-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    min-height: 76px;
    align-items: center;
}

.yzc-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    color: white !important;
}

.yzc-brand-mark {
    display: flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid #435066;
    font-family: Georgia, serif;
    font-size: 13px;
}

.yzc-brand-text {
    display: flex;
    flex-direction: column;
}

.yzc-brand-text strong {
    color: white;
    font-size: 13px;
    font-weight: 650;
}

.yzc-brand-text small {
    margin-top: 2px;
    color: #708096;
    font-size: 8px;
    letter-spacing: .1em;
}

.yzc-main-nav {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.yzc-main-nav a {
    position: relative;
    padding: 28px 0 25px;
    color: #9aa8ba !important;
    font-size: 11px;
    font-weight: 650;
    transition: .2s ease;
}

.yzc-main-nav a::after {
    content: "";
    position: absolute;
    bottom: 18px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--yzc-red);
    transform: translateX(-50%);
    transition: .2s ease;
}

.yzc-main-nav a:hover {
    color: white !important;
}

.yzc-main-nav a:hover::after {
    width: 100%;
}

.yzc-cv-link {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    padding: 10px 15px;
    border: 1px solid #455268;
    color: white !important;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    transition: .2s ease;
}

.yzc-cv-link:hover {
    border-color: var(--yzc-red);
    background: var(--yzc-red);
}


/* =========================================================
   PUBLICATIONS
   ========================================================= */

.yzc-publications {
    background: white;
}

.yzc-publication-list {
    border-top: 1px solid var(--yzc-line);
}

.yzc-publication-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 55px;
    padding: 42px 0;
    border-bottom: 1px solid var(--yzc-line);
    transition: .25s ease;
}

.yzc-publication-item:hover {
    padding-left: 18px;
    padding-right: 18px;
    background: #f8fafc;
}

.yzc-pub-year {
    color: var(--yzc-red);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
}

.yzc-pub-type {
    color: #94a3b8;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .16em;
}

.yzc-pub-content h3 {
    max-width: 900px;
    margin: 8px 0 10px;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -.025em;
}

.yzc-pub-authors {
    margin-bottom: 3px !important;
    color: #334155;
    font-size: 13px;
}

.yzc-pub-journal {
    color: #64748b;
    font-family: Georgia, serif;
    font-size: 13px;
    font-style: italic;
}

.yzc-pub-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.yzc-pub-links a {
    padding: 7px 11px;
    border: 1px solid #d7dee8;
    color: #475569 !important;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .05em;
    transition: .2s ease;
}

.yzc-pub-links a:hover {
    color: white !important;
    border-color: var(--yzc-red);
    background: var(--yzc-red);
}

.yzc-publications-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    margin-top: 38px;
}

.yzc-publications-bottom p {
    color: #94a3b8;
    font-size: 12px;
}

.yzc-publications-bottom a {
    color: var(--yzc-red) !important;
    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   HEADER / PUBLICATIONS RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .yzc-topbar-inner {
        grid-template-columns: 1fr auto;
    }

    .yzc-main-nav {
        display: none;
    }

}

@media (max-width: 600px) {

    .yzc-topbar-inner {
        min-height: 65px;
    }

    .yzc-brand-text small {
        display: none;
    }

    .yzc-publication-item {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 30px 0;
    }

    .yzc-pub-year {
        font-size: 22px;
    }

    .yzc-publications-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

}
/* =========================================================
   ACADEMIC PROFILE LINKS
   ========================================================= */

.yzc-academic-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    align-items: center;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.10);
}

.yzc-academic-label {
    margin-right: 8px;
    color: #66778d;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .18em;
}

.yzc-academic-links a {
    position: relative;
    color: #9aa8ba !important;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    transition: .2s ease;
}

.yzc-academic-links a:hover {
    color: #ffffff !important;
}

.yzc-academic-links a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -5px;
    left: 0;
    height: 1px;
    background: var(--yzc-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}

.yzc-academic-links a:hover::after {
    transform: scaleX(1);
}

@media (max-width: 600px) {

    .yzc-academic-links {
        gap: 14px 18px;
    }

    .yzc-academic-label {
        width: 100%;
        margin-bottom: 2px;
    }
}

/* =========================================================
   AVESIS PUBLICATIONS
   ========================================================= */

.yzc-avesis-list {
    margin-top: 54px;
    border-top: 1px solid rgba(15, 23, 42, .12);
}

.yzc-avesis-item {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 38px;

    padding: 34px 0;

    border-bottom: 1px solid rgba(15, 23, 42, .12);

    transition:
        background .2s ease,
        padding .2s ease;
}

.yzc-avesis-item:hover {
    padding-left: 16px;
    padding-right: 16px;

    background: rgba(15, 23, 42, .025);
}

.yzc-avesis-year {
    color: var(--yzc-red);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 31px;
    line-height: 1;
}

.yzc-avesis-type {
    display: block;

    margin-bottom: 10px;

    color: #7b8798;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .14em;
}

.yzc-avesis-item h3 {
    max-width: 900px;

    margin: 0 0 12px;

    color: #111827;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 500;
    line-height: 1.25;
}

.yzc-avesis-authors {
    margin: 0 0 7px;

    color: #475569;

    font-size: 13px;
    font-weight: 650;
}

.yzc-avesis-meta {
    max-width: 900px;

    margin: 0;

    color: #64748b;

    font-size: 12px;
    line-height: 1.7;
}

.yzc-avesis-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;

    margin-top: 15px;
}

.yzc-avesis-links a {
    color: var(--yzc-red) !important;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .07em;
}

.yzc-publication-profile-links {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.yzc-publication-profile-links a {
    color: var(--yzc-red) !important;

    font-size: 11px;
    font-weight: 750;
    letter-spacing: .04em;
}

@media (max-width: 700px) {

    .yzc-avesis-item {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .yzc-avesis-year {
        font-size: 24px;
    }

}

/* =========================================================
   FINAL SITE POLISH — MOBILE NAV / PUBLICATIONS / WORK
   ========================================================= */

.yzc-mobile-menu {
    display: none;
    position: relative;
    justify-self: end;
}

.yzc-mobile-menu summary {
    display: flex;
    width: 42px;
    height: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid #34445a;
    cursor: pointer;
    list-style: none;
}

.yzc-mobile-menu summary::-webkit-details-marker { display: none; }

.yzc-mobile-menu summary span {
    width: 17px;
    height: 1px;
    background: #ffffff;
}

.yzc-mobile-nav {
    position: absolute;
    top: 54px;
    right: 0;
    z-index: 10010;
    width: min(290px, 85vw);
    padding: 14px;
    border: 1px solid #263449;
    background: #07111f;
    box-shadow: 0 25px 60px rgba(0,0,0,.3);
}

.yzc-mobile-nav a {
    display: block;
    padding: 14px 12px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    color: #cbd5e1 !important;
    font-size: 11px;
    font-weight: 650;
}

.yzc-mobile-nav a:last-child { border-bottom: 0; }

.yzc-mobile-nav a:hover {
    padding-left: 18px;
    color: #ffffff !important;
}

.yzc-publications-redirect {
    margin-top: 34px;
}

.yzc-publications-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    border: 1px solid var(--yzc-red);
    color: var(--yzc-red) !important;
    background: transparent;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: .2s ease;
}

.yzc-publications-button:hover {
    background: var(--yzc-red);
    color: #ffffff !important;
}

.yzc-work-link {
    display: inline-block;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(15,23,42,.12);
    color: var(--yzc-red) !important;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    transition: .2s ease;
}

.yzc-work-link:hover {
    letter-spacing: .12em;
}

@media (max-width: 1000px) {
    .yzc-topbar-inner {
        grid-template-columns: 1fr auto;
    }
    .yzc-main-nav { display: none; }
    .yzc-mobile-menu { display: block; }
}

@media (max-width: 600px) {
    .yzc-publications-button {
        width: 100%;
        text-align: center;
    }
}