:root {
    --navy-950: #031829;
    --navy-900: #062c4f;
    --navy-850: #07375f;
    --navy-800: #08416e;
    --blue-750: #075f94;
    --blue-700: #096ca4;
    --blue-600: #0d86bf;
    --blue-500: #20a5d8;
    --blue-400: #49bce2;
    --cyan-200: #bdebf4;
    --cyan-100: #ddf4f8;
    --cyan-50: #f0fafc;
    --white: #ffffff;
    --surface: #f6f9fb;
    --surface-light: #fbfdfe;
    --border: #e2e9ee;
    --border-dark: #d4dfe6;
    --text-dark: #172630;
    --text: #425462;
    --text-light: #71808b;
    --success: #1a9b75;
    --warning: #e6a225;
    --shadow-small: 0 10px 30px rgba(3, 24, 41, 0.07);
    --shadow-medium: 0 18px 50px rgba(3, 24, 41, 0.11);
    --shadow-large: 0 30px 80px rgba(3, 24, 41, 0.15);
    --transition: 0.25s ease;
}

/* =========================================================
   GENEL AYARLAR
========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 105px;
}

body {
    min-width: 320px;
    overflow-x: hidden;
    background: var(--white);
    color: var(--text);
    font-family: "Manrope", sans-serif;
    line-height: 1.65;
}

    body.mobile-menu-open {
        overflow: hidden;
    }

main {
    min-height: 500px;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    border: none;
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
}

ul {
    list-style: none;
}

.site-container {
    width: min(1180px, calc(100% - 40px));
    margin-right: auto;
    margin-left: auto;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 12px 18px;
    border-radius: 10px;
    background: var(--white);
    color: var(--navy-900);
    font-size: 13px;
    font-weight: 800;
    box-shadow: var(--shadow-medium);
    transform: translateY(-160%);
    transition: transform var(--transition);
}

    .skip-link:focus {
        transform: translateY(0);
    }

/* =========================================================
   ÜNİVERSİTE ÜST ŞERİDİ
========================================================= */
.university-bar {
    position: relative;
    z-index: 1100;
    background: #000f5f;
    color: rgba(255, 255, 255, 0.78);
}
.university-bar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.university-bar-text,
.university-bar-contact,
.university-bar-contact a {
    display: flex;
    align-items: center;
}

.university-bar-text {
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
}

.university-bar-contact {
    gap: 22px;
}

    .university-bar-contact a {
        gap: 7px;
        font-size: 11px;
        font-weight: 600;
        transition: color var(--transition);
    }

        .university-bar-contact a:hover {
            color: var(--white);
        }

/* =========================================================
   ANA MENÜ
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(6, 44, 79, 0.08);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
    transition: background var(--transition), box-shadow var(--transition);
}

    .site-header.is-scrolled {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow-small);
    }

.header-container {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    flex-shrink: 0;
}
.site-logo-symbol {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}
    .site-logo-symbol img {
        width: 72px;
        height: 72px;
        object-fit: contain;
        display: block;
    }
.site-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

    .site-logo-text strong {
        color: var(--navy-900);
        font-size: 15px;
        font-weight: 800;
    }

    .site-logo-text span {
        color: var(--blue-700);
        font-size: 12px;
        font-weight: 700;
    }

.main-navigation {
    display: flex;
    align-items: center;
    gap: 3px;
}

.navigation-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: 10px;
    color: var(--text);
    font-size: 12px;
    font-weight: 700;
    transition: background var(--transition), color var(--transition);
}

    .navigation-link:hover,
    .navigation-link:focus-visible {
        background: var(--cyan-50);
        color: var(--blue-700);
    }
.navigation-contact-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-left: 8px;
    padding: 0 18px;
    border-radius: 12px;
    background: #000f5f;
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(0, 15, 95, 0.20);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

    .navigation-contact-link:hover,
    .navigation-contact-link:focus-visible {
        background: #00266f;
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: 0 15px 30px rgba(0, 38, 111, 0.30);
    }
    .navigation-contact-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 30px rgba(9, 104, 159, 0.27);
    }

.mobile-menu-button {
    width: 45px;
    height: 45px;
    display: none;
    padding: 11px;
    border-radius: 12px;
    background: var(--cyan-50);
}

    .mobile-menu-button span {
        width: 100%;
        height: 2px;
        display: block;
        margin: 5px 0;
        border-radius: 10px;
        background: var(--navy-900);
        transition: opacity var(--transition), transform var(--transition);
    }

    .mobile-menu-button.is-active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-button.is-active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-button.is-active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

/* =========================================================
   HERO ALANI
========================================================= */

.career-hero {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    display: flex;
    align-items: center;
    padding: 90px 0;
    background: linear-gradient( 135deg, #f3fbfd 0%, #ffffff 46%, #edf8fc 100% );
}

.career-hero-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.4;
    background-image: radial-gradient( rgba(9, 108, 164, 0.12) 1px, transparent 1px );
    background-size: 25px 25px;
    mask-image: linear-gradient( to right, black, transparent 75% );
}

.career-hero-light {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    pointer-events: none;
}

.career-hero-light-one {
    top: -180px;
    left: -130px;
    width: 430px;
    height: 430px;
    background: rgba(32, 165, 216, 0.12);
}

.career-hero-light-two {
    right: -100px;
    bottom: -170px;
    width: 480px;
    height: 480px;
    background: rgba(6, 44, 79, 0.08);
}

.career-hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    align-items: center;
    gap: 75px;
}

.career-hero-content {
    max-width: 610px;
}

.career-hero-label {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    padding: 8px 14px 8px 9px;
    border: 1px solid rgba(13, 134, 191, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--blue-700);
    font-size: 11px;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(6, 44, 79, 0.05);
}

.career-hero-label-icon {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--cyan-100);
    color: var(--blue-700);
    font-size: 10px;
}

.career-hero h1 {
    max-width: 650px;
    color: var(--navy-950);
    font-size: clamp(43px, 5vw, 68px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2.7px;
}

    .career-hero h1 span {
        display: block;
        color: var(--blue-600);
    }

.career-hero-description {
    max-width: 570px;
    margin-top: 24px;
    color: var(--text);
    font-size: 16px;
    line-height: 1.9;
}

.career-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 32px;
}

.career-primary-link,
.career-secondary-link {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 800;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.career-primary-link {
    background: linear-gradient( 135deg, var(--blue-700), var(--navy-900) );
    color: var(--white);
    box-shadow: 0 16px 32px rgba(9, 108, 164, 0.22);
}

    .career-primary-link:hover {
        transform: translateY(-3px);
        box-shadow: 0 22px 42px rgba(9, 108, 164, 0.28);
    }

.career-secondary-link {
    border: 1px solid var(--border-dark);
    background: rgba(255, 255, 255, 0.72);
    color: var(--navy-900);
}

    .career-secondary-link:hover {
        border-color: rgba(9, 108, 164, 0.4);
        background: var(--white);
        transform: translateY(-2px);
    }

.career-hero-information {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 42px;
}

.career-information-item {
    display: flex;
    align-items: center;
    gap: 11px;
}

.career-information-icon {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 12px;
    background: var(--white);
    color: var(--blue-700);
    font-size: 14px;
    box-shadow: var(--shadow-small);
}

.career-information-item div {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.career-information-item strong {
    color: var(--navy-950);
    font-size: 18px;
    font-weight: 800;
}

.career-information-item span:last-child {
    margin-top: 3px;
    color: var(--text-light);
    font-size: 9px;
    font-weight: 700;
}

.career-information-divider {
    width: 1px;
    height: 35px;
    background: var(--border);
}

/* =========================================================
   HERO GÖRSEL KARTI
========================================================= */

.career-hero-visual {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.career-visual-background {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: linear-gradient( 135deg, rgba(32, 165, 216, 0.15), rgba(6, 44, 79, 0.07) );
}

    .career-visual-background::before,
    .career-visual-background::after {
        position: absolute;
        content: "";
        border-radius: 50%;
        border: 1px solid rgba(9, 108, 164, 0.12);
    }

    .career-visual-background::before {
        inset: 35px;
    }

    .career-visual-background::after {
        inset: 75px;
    }

.career-dashboard-card {
    position: relative;
    z-index: 3;
    width: min(410px, 100%);
    padding: 27px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-large);
    backdrop-filter: blur(20px);
    transform: rotate(1.5deg);
}

.career-dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.career-dashboard-title {
    display: flex;
    align-items: center;
    gap: 11px;
}

.career-dashboard-logo {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: linear-gradient( 135deg, var(--blue-600), var(--navy-900) );
    color: var(--white);
    font-size: 16px;
}

.career-dashboard-title div {
    display: flex;
    flex-direction: column;
}

.career-dashboard-title small {
    color: var(--text-light);
    font-size: 9px;
    font-weight: 700;
}

.career-dashboard-title strong {
    margin-top: 2px;
    color: var(--navy-950);
    font-size: 13px;
    font-weight: 800;
}

.career-dashboard-status {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(26, 155, 117, 0.11);
    color: var(--success);
    font-size: 8px;
    font-weight: 800;
}

.career-progress-area {
    padding: 22px 0;
}

.career-progress-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 13px;
}

    .career-progress-header div {
        display: flex;
        flex-direction: column;
    }

    .career-progress-header span {
        color: var(--text-light);
        font-size: 9px;
        font-weight: 700;
    }

    .career-progress-header strong {
        margin-top: 3px;
        color: var(--navy-950);
        font-size: 13px;
        font-weight: 800;
    }

    .career-progress-header .career-progress-percentage {
        color: var(--blue-700);
        font-size: 17px;
        font-weight: 800;
    }

.career-progress-line {
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: #e8eef2;
}

    .career-progress-line span {
        width: 75%;
        height: 100%;
        display: block;
        border-radius: inherit;
        background: linear-gradient( to right, var(--blue-500), var(--blue-700) );
    }

.career-dashboard-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.career-dashboard-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid transparent;
    border-radius: 14px;
    background: var(--surface-light);
}

    .career-dashboard-step > span {
        width: 31px;
        height: 31px;
        display: grid;
        place-items: center;
        flex-shrink: 0;
        border-radius: 10px;
        background: #e9eef2;
        color: var(--text-light);
        font-size: 10px;
        font-weight: 800;
    }

    .career-dashboard-step div {
        display: flex;
        flex-direction: column;
    }

    .career-dashboard-step strong {
        color: var(--navy-950);
        font-size: 10px;
        font-weight: 800;
    }

    .career-dashboard-step small {
        margin-top: 2px;
        color: var(--text-light);
        font-size: 8px;
    }

    .career-dashboard-step.is-completed > span {
        background: rgba(26, 155, 117, 0.12);
        color: var(--success);
    }

    .career-dashboard-step.is-current {
        border-color: rgba(13, 134, 191, 0.17);
        background: var(--cyan-50);
    }

        .career-dashboard-step.is-current > span {
            background: var(--blue-600);
            color: var(--white);
        }

.career-floating-card {
    position: absolute;
    z-index: 5;
    min-width: 205px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-medium);
    backdrop-filter: blur(15px);
}

    .career-floating-card > span {
        width: 39px;
        height: 39px;
        display: grid;
        place-items: center;
        flex-shrink: 0;
        border-radius: 12px;
        background: var(--cyan-100);
        color: var(--blue-700);
        font-size: 13px;
    }

    .career-floating-card div {
        display: flex;
        flex-direction: column;
    }

    .career-floating-card small {
        color: var(--text-light);
        font-size: 8px;
        font-weight: 700;
    }

    .career-floating-card strong {
        margin-top: 2px;
        color: var(--navy-950);
        font-size: 10px;
        font-weight: 800;
    }

.career-floating-job {
    top: 60px;
    right: -20px;
}

.career-floating-event {
    bottom: 60px;
    left: -30px;
}

/* =========================================================
   ORTAK BÖLÜM BAŞLIKLARI
========================================================= */

.career-content-section,
.career-audience-section {
    padding: 100px 0;
}

.career-light-section {
    background: var(--surface);
}

.career-section-heading {
    max-width: 650px;
}

.career-heading-centered {
    margin: 0 auto 50px;
    text-align: center;
}

.career-section-label,
.career-services-label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    color: var(--blue-700);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.career-section-heading h2,
.career-services-introduction h2,
.career-contact-content h2 {
    color: var(--navy-950);
    font-size: clamp(29px, 3vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1.2px;
}

.career-section-heading p {
    margin-top: 13px;
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.8;
}

.career-section-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 35px;
    margin-bottom: 42px;
}

.career-section-count {
    min-width: 105px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 19px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: var(--white);
    box-shadow: var(--shadow-small);
}

    .career-section-count strong {
        color: var(--blue-700);
        font-size: 22px;
        font-weight: 800;
        line-height: 1;
    }

    .career-section-count span {
        margin-top: 6px;
        color: var(--text-light);
        font-size: 8px;
        font-weight: 700;
    }

/* =========================================================
   HEDEF KİTLE KARTLARI
========================================================= */

.career-audience-section {
    background: var(--white);
}

.career-audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.career-audience-card {
    position: relative;
    overflow: hidden;
    padding: 29px;
    border: 1px solid var(--border);
    border-radius: 23px;
    background: var(--white);
    box-shadow: 0 12px 35px rgba(3, 24, 41, 0.05);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

    .career-audience-card::after {
        position: absolute;
        right: -40px;
        bottom: -40px;
        width: 130px;
        height: 130px;
        content: "";
        border-radius: 50%;
        background: var(--cyan-50);
        transition: transform var(--transition);
    }

    .career-audience-card:hover {
        border-color: rgba(13, 134, 191, 0.22);
        box-shadow: var(--shadow-medium);
        transform: translateY(-6px);
    }

        .career-audience-card:hover::after {
            transform: scale(1.15);
        }

.career-audience-card-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.career-audience-icon {
    width: 53px;
    height: 53px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    font-size: 19px;
}

.student-icon {
    background: rgba(13, 134, 191, 0.12);
    color: var(--blue-700);
}

.graduate-icon {
    background: rgba(26, 155, 117, 0.12);
    color: var(--success);
}

.employer-icon {
    background: rgba(230, 162, 37, 0.12);
    color: #c48212;
}

.career-audience-number {
    color: #e4ebef;
    font-size: 34px;
    font-weight: 800;
}

.career-audience-card h3 {
    position: relative;
    z-index: 2;
    margin-top: 23px;
    color: var(--navy-950);
    font-size: 18px;
    font-weight: 800;
}

.career-audience-card > p {
    position: relative;
    z-index: 2;
    margin-top: 10px;
    color: var(--text-light);
    font-size: 11px;
    line-height: 1.8;
}

.career-audience-card ul {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
}

.career-audience-card li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--text);
    font-size: 10px;
    font-weight: 700;
}

    .career-audience-card li i {
        width: 20px;
        height: 20px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: var(--cyan-50);
        color: var(--blue-700);
        font-size: 8px;
    }

/* =========================================================
   İŞ İLANLARI
========================================================= */

.career-job-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 23px;
}

.career-job-card {
    display: flex;
    flex-direction: column;
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: 21px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(3, 24, 41, 0.045);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

    .career-job-card:hover {
        border-color: rgba(13, 134, 191, 0.24);
        box-shadow: var(--shadow-medium);
        transform: translateY(-5px);
    }

.career-job-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.career-company-logo,
.career-internship-icon {
    overflow: hidden;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--navy-900);
    font-weight: 800;
}

.career-company-logo {
    width: 51px;
    height: 51px;
    border-radius: 14px;
    font-size: 17px;
}

    .career-company-logo img,
    .career-internship-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.career-featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(230, 162, 37, 0.11);
    color: #bb7808;
    font-size: 8px;
    font-weight: 800;
}

.career-company-name {
    margin-top: 20px;
    color: var(--blue-700);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.career-job-card h3 {
    margin-top: 7px;
    color: var(--navy-950);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.45;
}

.career-job-information,
.career-internship-information {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 13px;
    margin-top: 15px;
}

    .career-job-information span,
    .career-internship-information span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: var(--text-light);
        font-size: 8px;
        font-weight: 700;
    }

    .career-job-information i,
    .career-internship-information i {
        color: var(--blue-600);
    }

.career-job-description {
    flex: 1;
    margin-top: 18px;
    color: var(--text-light);
    font-size: 10px;
    line-height: 1.8;
}

.career-job-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

    .career-job-footer span {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        color: var(--text-light);
        font-size: 8px;
    }

    .career-job-footer strong {
        color: var(--navy-900);
    }

/* =========================================================
   STAJ İLANLARI
========================================================= */

.career-internship-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.career-internship-card {
    display: flex;
    gap: 18px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--white);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

    .career-internship-card:hover {
        border-color: rgba(13, 134, 191, 0.23);
        box-shadow: var(--shadow-medium);
        transform: translateY(-4px);
    }

.career-internship-icon {
    width: 57px;
    height: 57px;
    flex-shrink: 0;
    border-radius: 16px;
    font-size: 18px;
}

.career-internship-content {
    min-width: 0;
    flex: 1;
}

.career-internship-company {
    color: var(--blue-700);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.career-internship-content h3 {
    margin-top: 5px;
    color: var(--navy-950);
    font-size: 16px;
    font-weight: 800;
}

.career-internship-content > p {
    margin-top: 14px;
    color: var(--text-light);
    font-size: 10px;
    line-height: 1.8;
}

.career-internship-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
    margin-top: 17px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

    .career-internship-footer span {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        color: var(--text-light);
        font-size: 8px;
    }

    .career-internship-footer strong {
        color: var(--navy-900);
    }

/* =========================================================
   KARİYER HİZMETLERİ
========================================================= */

.career-services-section {
    position: relative;
    overflow: hidden;
    padding: 105px 0;
    background: linear-gradient( 135deg, var(--navy-950), var(--navy-850) );
}

.career-services-pattern,
.career-statistics-pattern,
.career-contact-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient( rgba(255, 255, 255, 0.07) 1px, transparent 1px );
    background-size: 24px 24px;
}

.career-services-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 70px;
}

.career-services-label {
    color: var(--cyan-200);
}

.career-services-introduction h2 {
    color: var(--white);
}

.career-services-introduction > p {
    margin-top: 17px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    line-height: 1.9;
}

.career-services-note {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-top: 26px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.06);
}

    .career-services-note > span {
        width: 30px;
        height: 30px;
        display: grid;
        place-items: center;
        flex-shrink: 0;
        border-radius: 9px;
        background: rgba(189, 235, 244, 0.12);
        color: var(--cyan-200);
        font-size: 11px;
    }

    .career-services-note p {
        color: rgba(255, 255, 255, 0.68);
        font-size: 9px;
        line-height: 1.7;
    }

.career-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.career-service-card {
    min-height: 210px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.065);
    backdrop-filter: blur(12px);
    transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

    .career-service-card:hover {
        border-color: rgba(189, 235, 244, 0.22);
        background: rgba(255, 255, 255, 0.095);
        transform: translateY(-5px);
    }

.career-service-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(189, 235, 244, 0.12);
    color: var(--cyan-200);
    font-size: 16px;
}

.career-service-card h3 {
    margin-top: 18px;
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
}

.career-service-card p {
    margin-top: 9px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 9px;
    line-height: 1.8;
}

/* =========================================================
   ETKİNLİKLER
========================================================= */

.career-event-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.career-event-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 21px;
    background: var(--white);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

    .career-event-card:hover {
        border-color: rgba(13, 134, 191, 0.22);
        box-shadow: var(--shadow-medium);
        transform: translateY(-4px);
    }

.career-event-date {
    width: 76px;
    min-height: 92px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 16px;
    background: linear-gradient( 145deg, var(--blue-700), var(--navy-900) );
    color: var(--white);
}

    .career-event-date span {
        font-size: 8px;
        font-weight: 800;
    }

    .career-event-date strong {
        margin: 2px 0;
        font-size: 25px;
        font-weight: 800;
        line-height: 1;
    }

    .career-event-date small {
        font-size: 8px;
        opacity: 0.76;
    }

.career-event-content {
    flex: 1;
}

.career-event-type {
    display: inline-flex;
    padding: 5px 8px;
    border-radius: 999px;
    background: var(--cyan-50);
    color: var(--blue-700);
    font-size: 7px;
    font-weight: 800;
    text-transform: uppercase;
}

.career-event-content h3 {
    margin-top: 8px;
    color: var(--navy-950);
    font-size: 15px;
    font-weight: 800;
}

.career-event-content > p {
    margin-top: 8px;
    color: var(--text-light);
    font-size: 9px;
    line-height: 1.75;
}

.career-event-information {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-top: 14px;
}

    .career-event-information span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: var(--text-light);
        font-size: 8px;
        font-weight: 700;
    }

    .career-event-information i {
        color: var(--blue-600);
    }

/* =========================================================
   İSTATİSTİKLER
========================================================= */

.career-statistics-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0;
    background: linear-gradient( 135deg, var(--blue-700), var(--navy-900) );
}

.career-statistics-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

    .career-statistics-grid article {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 15px 20px;
        text-align: center;
    }

        .career-statistics-grid article:not(:last-child)::after {
            position: absolute;
            top: 15%;
            right: 0;
            width: 1px;
            height: 70%;
            content: "";
            background: rgba(255, 255, 255, 0.13);
        }

        .career-statistics-grid article > span {
            width: 42px;
            height: 42px;
            display: grid;
            place-items: center;
            margin-bottom: 12px;
            border-radius: 13px;
            background: rgba(255, 255, 255, 0.11);
            color: var(--cyan-200);
            font-size: 15px;
        }

    .career-statistics-grid strong {
        color: var(--white);
        font-size: 29px;
        font-weight: 800;
        line-height: 1;
    }

    .career-statistics-grid p {
        margin-top: 8px;
        color: rgba(255, 255, 255, 0.67);
        font-size: 9px;
        font-weight: 700;
    }

/* =========================================================
   BAŞARI HİKÂYELERİ
========================================================= */

.career-story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 23px;
}

.career-story-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: 21px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(3, 24, 41, 0.045);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

    .career-story-card:hover {
        border-color: rgba(13, 134, 191, 0.22);
        box-shadow: var(--shadow-medium);
        transform: translateY(-5px);
    }

.career-story-person {
    display: flex;
    align-items: center;
    gap: 12px;
}

.career-story-photo {
    width: 50px;
    height: 50px;
    overflow: hidden;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--cyan-50);
    color: var(--blue-700);
}

    .career-story-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.career-story-person > div:last-child {
    display: flex;
    flex-direction: column;
}

.career-story-person strong {
    color: var(--navy-950);
    font-size: 11px;
    font-weight: 800;
}

.career-story-person span {
    margin-top: 2px;
    color: var(--text-light);
    font-size: 8px;
}

.career-story-quote {
    margin-top: 22px;
    color: var(--cyan-200);
    font-size: 24px;
}

.career-story-card h3 {
    margin-top: 7px;
    color: var(--navy-950);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.45;
}

.career-story-card > p {
    flex: 1;
    margin-top: 11px;
    color: var(--text-light);
    font-size: 9px;
    line-height: 1.8;
}

.career-story-position {
    display: flex;
    flex-direction: column;
    margin-top: 19px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

    .career-story-position strong {
        color: var(--navy-900);
        font-size: 9px;
        font-weight: 800;
    }

    .career-story-position span {
        margin-top: 2px;
        color: var(--blue-700);
        font-size: 8px;
        font-weight: 700;
    }

/* =========================================================
   DUYURULAR
========================================================= */

.career-announcement-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.career-announcement-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 23px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--white);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

    .career-announcement-card:hover {
        border-color: rgba(13, 134, 191, 0.2);
        box-shadow: var(--shadow-small);
        transform: translateX(5px);
    }

.career-announcement-date {
    width: 67px;
    min-height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 14px;
    background: var(--surface);
}

    .career-announcement-date strong {
        color: var(--navy-950);
        font-size: 20px;
        font-weight: 800;
        line-height: 1;
    }

    .career-announcement-date span {
        margin-top: 3px;
        color: var(--blue-700);
        font-size: 8px;
        font-weight: 800;
        text-transform: uppercase;
    }

    .career-announcement-date small {
        margin-top: 2px;
        color: var(--text-light);
        font-size: 7px;
    }

.career-announcement-content {
    flex: 1;
}

.career-announcement-featured {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 7px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(230, 162, 37, 0.12);
    color: #b87508;
    font-size: 7px;
    font-weight: 800;
}

.career-announcement-content h3 {
    color: var(--navy-950);
    font-size: 14px;
    font-weight: 800;
}

.career-announcement-content p {
    margin-top: 6px;
    color: var(--text-light);
    font-size: 9px;
    line-height: 1.75;
}

/* =========================================================
   BOŞ DURUM
========================================================= */

.career-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 52px 25px;
    border: 1px dashed var(--border-dark);
    border-radius: 22px;
    background: var(--surface-light);
    text-align: center;
}

.career-empty-icon {
    width: 61px;
    height: 61px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--cyan-50);
    color: var(--blue-700);
    font-size: 21px;
}

.career-empty-state h3 {
    margin-top: 18px;
    color: var(--navy-950);
    font-size: 15px;
    font-weight: 800;
}

.career-empty-state p {
    max-width: 450px;
    margin-top: 8px;
    color: var(--text-light);
    font-size: 10px;
}

/* =========================================================
   İLETİŞİM BANDI
========================================================= */

.career-contact-banner {
    position: relative;
    overflow: hidden;
    padding: 75px 0;
    background: linear-gradient( 135deg, var(--cyan-50), #ffffff );
}

.career-contact-pattern {
    opacity: 0.6;
    background-image: radial-gradient( rgba(9, 108, 164, 0.09) 1px, transparent 1px );
}

.career-contact-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
}

.career-contact-icon {
    width: 69px;
    height: 69px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: linear-gradient( 135deg, var(--blue-700), var(--navy-900) );
    color: var(--white);
    font-size: 24px;
    box-shadow: var(--shadow-medium);
}

.career-contact-content span {
    color: var(--blue-700);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.career-contact-content h2 {
    margin-top: 5px;
    font-size: clamp(25px, 2.8vw, 36px);
}

.career-contact-content p {
    margin-top: 8px;
    color: var(--text-light);
    font-size: 10px;
}

.career-contact-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .career-contact-options a {
        min-width: 240px;
        display: flex;
        align-items: center;
        gap: 11px;
        padding: 13px 15px;
        border: 1px solid var(--border);
        border-radius: 14px;
        background: var(--white);
        box-shadow: var(--shadow-small);
        transition: transform var(--transition), border-color var(--transition);
    }

        .career-contact-options a:hover {
            border-color: rgba(13, 134, 191, 0.28);
            transform: translateX(-4px);
        }

        .career-contact-options a > i {
            width: 35px;
            height: 35px;
            display: grid;
            place-items: center;
            border-radius: 11px;
            background: var(--cyan-50);
            color: var(--blue-700);
            font-size: 12px;
        }

        .career-contact-options a > span {
            display: flex;
            flex-direction: column;
        }

    .career-contact-options small {
        color: var(--text-light);
        font-size: 7px;
        font-weight: 700;
    }

    .career-contact-options strong {
        margin-top: 2px;
        color: var(--navy-950);
        font-size: 10px;
        font-weight: 800;
    }

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    position: relative;
    overflow: hidden;
    padding-top: 75px;
    background: var(--navy-950);
    color: rgba(255, 255, 255, 0.67);
}

.footer-background-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.footer-shape-one {
    top: -220px;
    right: -180px;
    width: 460px;
    height: 460px;
    background: rgba(32, 165, 216, 0.08);
}

.footer-shape-two {
    bottom: -250px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: rgba(13, 130, 189, 0.05);
}

.footer-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 1fr;
    gap: 70px;
    padding-bottom: 55px;
}

.footer-logo .site-logo-text strong,
.footer-logo .site-logo-text span {
    color: var(--white);
}

.footer-about p {
    max-width: 390px;
    margin-top: 22px;
    font-size: 12px;
    line-height: 1.9;
}

.footer-navigation,
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

    .footer-navigation h2,
    .footer-contact h2 {
        margin-bottom: 20px;
        color: var(--white);
        font-size: 15px;
        font-weight: 800;
    }

.footer-navigation {
    gap: 12px;
}

    .footer-navigation h2 {
        margin-bottom: 8px;
    }

    .footer-navigation a {
        font-size: 11px;
        transition: color var(--transition), transform var(--transition);
    }

        .footer-navigation a:hover {
            color: var(--white);
            transform: translateX(4px);
        }

.footer-contact {
    gap: 14px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: 11px;
    line-height: 1.7;
}

.footer-contact-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: rgba(32, 165, 216, 0.12);
    color: #78d5f3;
}

a.footer-contact-item {
    transition: color var(--transition);
}

    a.footer-contact-item:hover {
        color: var(--white);
    }

.footer-bottom {
    position: relative;
    z-index: 2;
    min-height: 68px;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

    .footer-bottom p {
        font-size: 10px;
    }

/* =========================================================
   YUKARI DÖN BUTONU
========================================================= */

.scroll-top-button {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 900;
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: var(--blue-700);
    color: var(--white);
    box-shadow: var(--shadow-medium);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}

    .scroll-top-button.is-visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

/* =========================================================
   1100 PX
========================================================= */

@media (max-width: 1100px) {
    .career-hero-container {
        gap: 40px;
    }

    .career-hero-information {
        gap: 16px;
    }

    .career-floating-job {
        right: 0;
    }

    .career-floating-event {
        left: 0;
    }

    .career-contact-container {
        grid-template-columns: auto 1fr;
    }

    .career-contact-options {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

        .career-contact-options a {
            min-width: 0;
        }
}

/* =========================================================
   1000 PX
========================================================= */

@media (max-width: 1000px) {
    .navigation-link {
        padding: 0 8px;
        font-size: 11px;
    }

    .navigation-contact-link {
        padding: 0 13px;
    }

    .career-hero {
        min-height: auto;
    }

    .career-hero-container {
        grid-template-columns: 1fr;
    }

    .career-hero-content {
        max-width: 720px;
    }

    .career-hero-visual {
        min-height: 520px;
    }

    .career-audience-grid,
    .career-job-grid,
    .career-story-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .career-services-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .footer-content {
        gap: 40px;
    }
}

/* =========================================================
   900 PX MOBİL MENÜ
========================================================= */

@media (max-width: 900px) {
    .university-bar {
        display: none;
    }

    .header-container {
        min-height: 72px;
    }

    .mobile-menu-button {
        display: block;
    }

    .main-navigation {
        position: fixed;
        top: 72px;
        right: -100%;
        bottom: 0;
        width: min(360px, 90%);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
        padding: 24px;
        overflow-y: auto;
        background: var(--white);
        box-shadow: -20px 30px 60px rgba(3, 26, 46, 0.18);
        transition: right 0.3s ease;
    }

        .main-navigation.is-active {
            right: 0;
        }

    .navigation-link,
    .navigation-contact-link {
        width: 100%;
        min-height: 49px;
        justify-content: flex-start;
        margin: 0;
        padding: 0 15px;
        font-size: 13px;
    }

    .career-internship-grid,
    .career-event-grid {
        grid-template-columns: 1fr;
    }

    .career-statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 0;
    }

        .career-statistics-grid article:nth-child(2)::after {
            display: none;
        }
}

/* =========================================================
   760 PX
========================================================= */

@media (max-width: 760px) {
    .career-hero {
        padding: 70px 0;
    }

        .career-hero h1 {
            letter-spacing: -1.8px;
        }

    .career-hero-information {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .career-information-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px;
        border: 1px solid var(--border);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.75);
    }

    .career-information-divider {
        display: none;
    }

    .career-floating-card {
        display: none;
    }

    .career-audience-grid,
    .career-job-grid,
    .career-story-grid {
        grid-template-columns: 1fr;
    }

    .career-services-grid {
        grid-template-columns: 1fr;
    }

    .career-section-heading-row {
        align-items: flex-start;
    }

    .career-content-section,
    .career-audience-section {
        padding: 78px 0;
    }

    .career-services-section {
        padding: 80px 0;
    }

    .career-contact-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .career-contact-icon {
        margin: auto;
    }

    .career-contact-options {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-about {
        grid-column: 1 / -1;
    }
}

/* =========================================================
   600 PX TELEFON
========================================================= */

@media (max-width: 600px) {
    .site-container {
        width: min(100% - 28px, 1180px);
    }

    .site-logo-symbol {
        width: 43px;
        height: 43px;
        border-radius: 13px;
    }

    .site-logo-text strong {
        font-size: 13px;
    }

    .site-logo-text span {
        font-size: 11px;
    }

    .career-hero {
        padding: 55px 0 65px;
    }

        .career-hero h1 {
            font-size: 40px;
            letter-spacing: -1.6px;
        }

    .career-hero-description {
        font-size: 13px;
    }

    .career-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .career-primary-link,
    .career-secondary-link {
        width: 100%;
    }

    .career-hero-information {
        grid-template-columns: 1fr;
    }

    .career-information-item {
        flex-direction: row;
        align-items: center;
    }

    .career-hero-visual {
        min-height: 470px;
    }

    .career-visual-background {
        width: 340px;
        height: 340px;
    }

    .career-dashboard-card {
        padding: 20px;
        border-radius: 22px;
        transform: none;
    }

    .career-section-heading-row {
        flex-direction: column;
    }

    .career-section-count {
        align-items: flex-start;
    }

    .career-internship-card,
    .career-event-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .career-job-footer,
    .career-internship-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .career-event-date {
        width: 100%;
        min-height: auto;
        flex-direction: row;
        gap: 8px;
        padding: 12px;
    }

        .career-event-date strong {
            font-size: 18px;
        }

    .career-statistics-grid {
        grid-template-columns: 1fr 1fr;
    }

        .career-statistics-grid article {
            padding: 15px 8px;
        }

            .career-statistics-grid article::after {
                display: none;
            }

    .career-announcement-card {
        align-items: flex-start;
    }

    .career-announcement-date {
        width: 56px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-about {
        grid-column: auto;
    }

    .site-footer {
        padding-top: 60px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .scroll-top-button {
        right: 16px;
        bottom: 16px;
    }
}

/* =========================================================
   420 PX KÜÇÜK TELEFON
========================================================= */

@media (max-width: 420px) {
    .site-logo-text strong {
        font-size: 11px;
    }

    .site-logo-text span {
        font-size: 9px;
    }

    .career-hero h1 {
        font-size: 34px;
    }

    .career-dashboard-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .career-dashboard-status {
        align-self: flex-start;
    }

    .career-audience-card,
    .career-job-card,
    .career-internship-card,
    .career-event-card,
    .career-story-card {
        padding: 20px;
    }

    .career-statistics-grid {
        grid-template-columns: 1fr;
    }

    .career-announcement-card {
        flex-direction: column;
    }

    .career-announcement-date {
        width: 100%;
        min-height: auto;
        flex-direction: row;
        gap: 7px;
        padding: 10px;
    }
}
/* =========================================================
   BLOG LİSTE SAYFASI
========================================================= */

.blog-page-hero {
    position: relative;
    overflow: hidden;
    padding: 95px 0 85px;
    background: radial-gradient( circle at 85% 15%, rgba(32, 165, 216, 0.16), transparent 30% ), linear-gradient( 135deg, var(--navy-950), var(--navy-850) );
}

    .blog-page-hero::after {
        position: absolute;
        inset: 0;
        content: "";
        opacity: 0.35;
        pointer-events: none;
        background-image: radial-gradient( rgba(255, 255, 255, 0.08) 1px, transparent 1px );
        background-size: 25px 25px;
    }

.blog-page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.blog-page-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: var(--cyan-200);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.blog-page-hero h1 {
    margin-top: 22px;
    color: var(--white);
    font-size: clamp(40px, 5vw, 65px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
}

    .blog-page-hero h1 span {
        display: block;
        color: var(--cyan-200);
    }

.blog-page-hero p {
    max-width: 670px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.67);
    font-size: 14px;
    line-height: 1.9;
}

.blog-page-content {
    padding: 75px 0 100px;
    background: var(--surface);
}

.blog-category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 38px;
}

.blog-category-filter-link {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 15px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    color: var(--text);
    font-size: 10px;
    font-weight: 800;
    transition: color var(--transition), border-color var(--transition), background var(--transition), transform var(--transition);
}

    .blog-category-filter-link:hover,
    .blog-category-filter-link.is-active {
        border-color: var(--blue-700);
        background: var(--blue-700);
        color: var(--white);
        transform: translateY(-2px);
    }

.blog-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-page-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--white);
    box-shadow: 0 12px 35px rgba(3, 24, 41, 0.055);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

    .blog-page-card:hover {
        border-color: rgba(13, 134, 191, 0.25);
        box-shadow: var(--shadow-medium);
        transform: translateY(-6px);
    }

.blog-page-card-visual {
    position: relative;
    min-height: 215px;
    overflow: hidden;
    display: block;
}

    .blog-page-card-visual img {
        width: 100%;
        height: 215px;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

.blog-page-card:hover .blog-page-card-visual img {
    transform: scale(1.04);
}

.blog-card-placeholder {
    min-height: 215px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 13px;
    background: radial-gradient( circle at 75% 20%, rgba(189, 235, 244, 0.25), transparent 35% ), linear-gradient( 135deg, var(--navy-900), var(--blue-700) );
    color: var(--white);
}

    .blog-card-placeholder i {
        font-size: 39px;
        color: var(--cyan-200);
    }

    .blog-card-placeholder span {
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 0.8px;
    }

.blog-featured-label {
    position: absolute;
    top: 15px;
    left: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #b87508;
    font-size: 8px;
    font-weight: 800;
    box-shadow: var(--shadow-small);
}

.blog-page-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 23px;
}

.blog-page-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 15px;
}

    .blog-page-card-meta span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: var(--text-light);
        font-size: 8px;
        font-weight: 700;
    }

    .blog-page-card-meta i {
        color: var(--blue-600);
    }

.blog-page-card h2 {
    margin-top: 13px;
    color: var(--navy-950);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.45;
}

    .blog-page-card h2 a {
        transition: color var(--transition);
    }

        .blog-page-card h2 a:hover {
            color: var(--blue-700);
        }

.blog-page-card-content > p {
    flex: 1;
    margin-top: 11px;
    color: var(--text-light);
    font-size: 10px;
    line-height: 1.8;
}

.blog-page-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 13px;
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.blog-card-author {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 9px;
}

.blog-author-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--cyan-50);
    color: var(--blue-700);
    font-size: 11px;
}

.blog-card-author div {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.blog-card-author strong {
    max-width: 135px;
    overflow: hidden;
    color: var(--navy-950);
    font-size: 8px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.blog-card-author small {
    margin-top: 2px;
    color: var(--text-light);
    font-size: 7px;
}

.blog-read-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex-shrink: 0;
    color: var(--blue-700);
    font-size: 9px;
    font-weight: 800;
    transition: gap var(--transition);
}

    .blog-read-link:hover {
        gap: 10px;
    }

.blog-empty-link {
    margin-top: 20px;
}

/* =========================================================
   BLOG DETAY SAYFASI
========================================================= */

.blog-detail-hero {
    padding: 55px 0 75px;
    background: linear-gradient( 135deg, var(--navy-950), var(--navy-850) );
}

.blog-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.53);
    font-size: 9px;
    font-weight: 700;
}

    .blog-breadcrumb a {
        transition: color var(--transition);
    }

        .blog-breadcrumb a:hover {
            color: var(--white);
        }

    .blog-breadcrumb i {
        font-size: 7px;
    }

.blog-detail-heading {
    max-width: 850px;
    margin-top: 40px;
}

.blog-detail-category {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(189, 235, 244, 0.12);
    color: var(--cyan-200);
    font-size: 9px;
    font-weight: 800;
}

.blog-detail-heading h1 {
    margin-top: 21px;
    color: var(--white);
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
}

.blog-detail-heading > p {
    max-width: 780px;
    margin-top: 21px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
    line-height: 1.9;
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 23px;
    margin-top: 26px;
}

    .blog-detail-meta span {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        color: rgba(255, 255, 255, 0.62);
        font-size: 9px;
        font-weight: 700;
    }

    .blog-detail-meta i {
        color: var(--cyan-200);
    }

.blog-detail-section {
    padding: 75px 0 95px;
    background: var(--surface);
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 285px;
    align-items: start;
    gap: 32px;
}

.blog-detail-article {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow-small);
}

.blog-detail-cover img {
    width: 100%;
    max-height: 470px;
    object-fit: cover;
}

.blog-detail-placeholder {
    min-height: 390px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 40px;
    text-align: center;
    background: radial-gradient( circle at 75% 15%, rgba(189, 235, 244, 0.22), transparent 34% ), linear-gradient( 135deg, var(--navy-900), var(--blue-700) );
    color: var(--white);
}

    .blog-detail-placeholder i {
        font-size: 58px;
        color: var(--cyan-200);
    }

    .blog-detail-placeholder strong {
        margin-top: 5px;
        font-size: 18px;
        font-weight: 800;
    }

    .blog-detail-placeholder span {
        color: rgba(255, 255, 255, 0.65);
        font-size: 10px;
    }

.blog-detail-body {
    padding: 42px 48px;
    color: var(--text);
    font-size: 13px;
    line-height: 2;
}

    .blog-detail-body h2 {
        margin: 35px 0 12px;
        color: var(--navy-950);
        font-size: 23px;
        font-weight: 800;
        line-height: 1.35;
    }

        .blog-detail-body h2:first-child {
            margin-top: 0;
        }

    .blog-detail-body h3 {
        margin: 28px 0 10px;
        color: var(--navy-900);
        font-size: 18px;
        font-weight: 800;
    }

    .blog-detail-body p + p {
        margin-top: 16px;
    }

    .blog-detail-body ul,
    .blog-detail-body ol {
        margin: 18px 0;
        padding-left: 22px;
    }

    .blog-detail-body ul {
        list-style: disc;
    }

    .blog-detail-body ol {
        list-style: decimal;
    }

    .blog-detail-body li {
        margin: 8px 0;
    }

.blog-detail-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 0 48px;
    padding: 24px 0 34px;
    border-top: 1px solid var(--border);
}

    .blog-detail-bottom > div {
        display: flex;
        flex-direction: column;
    }

    .blog-detail-bottom span {
        color: var(--text-light);
        font-size: 8px;
        font-weight: 700;
    }

    .blog-detail-bottom div a {
        margin-top: 3px;
        color: var(--blue-700);
        font-size: 10px;
        font-weight: 800;
    }

.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy-900);
    font-size: 10px;
    font-weight: 800;
}

.blog-detail-sidebar {
    position: sticky;
    top: 115px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.blog-sidebar-card {
    padding: 23px;
    border: 1px solid var(--border);
    border-radius: 19px;
    background: var(--white);
    box-shadow: var(--shadow-small);
}

.blog-sidebar-icon {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: var(--cyan-50);
    color: var(--blue-700);
    font-size: 15px;
}

.blog-sidebar-card h2 {
    margin-top: 15px;
    color: var(--navy-950);
    font-size: 14px;
    font-weight: 800;
}

.blog-sidebar-card > p {
    margin-top: 9px;
    color: var(--text-light);
    font-size: 9px;
    line-height: 1.8;
}

.blog-sidebar-small-title {
    color: var(--navy-950);
    font-size: 12px;
    font-weight: 800;
}

.blog-information-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 18px;
}

    .blog-information-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

        .blog-information-list li > i {
            width: 31px;
            height: 31px;
            display: grid;
            place-items: center;
            flex-shrink: 0;
            border-radius: 9px;
            background: var(--cyan-50);
            color: var(--blue-700);
            font-size: 10px;
        }

    .blog-information-list div {
        min-width: 0;
        display: flex;
        flex-direction: column;
    }

    .blog-information-list span {
        color: var(--text-light);
        font-size: 7px;
    }

    .blog-information-list strong {
        margin-top: 2px;
        color: var(--navy-950);
        font-size: 8px;
        font-weight: 800;
        line-height: 1.5;
    }

.blog-related-section {
    padding: 80px 0 95px;
    background: var(--white);
}

.blog-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.blog-related-card {
    display: flex;
    gap: 15px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--surface-light);
    transition: transform var(--transition), box-shadow var(--transition);
}

    .blog-related-card:hover {
        box-shadow: var(--shadow-medium);
        transform: translateY(-4px);
    }

.blog-related-icon {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 13px;
    background: var(--cyan-50);
    color: var(--blue-700);
    font-size: 15px;
}

.blog-related-content > span {
    color: var(--blue-700);
    font-size: 7px;
    font-weight: 800;
    text-transform: uppercase;
}

.blog-related-content h3 {
    margin-top: 5px;
    color: var(--navy-950);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.45;
}

.blog-related-content p {
    margin-top: 8px;
    color: var(--text-light);
    font-size: 8px;
    line-height: 1.7;
}

.blog-related-content a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    color: var(--blue-700);
    font-size: 8px;
    font-weight: 800;
}

/* =========================================================
   BLOG RESPONSIVE
========================================================= */

@media (max-width: 1000px) {
    .blog-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-detail-layout {
        grid-template-columns: 1fr;
    }

    .blog-detail-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .blog-page-hero {
        padding: 70px 0;
    }

    .blog-page-grid {
        grid-template-columns: 1fr;
    }

    .blog-page-card-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .blog-detail-heading h1 {
        letter-spacing: -1.3px;
    }

    .blog-detail-body {
        padding: 30px 24px;
    }

    .blog-detail-bottom {
        align-items: flex-start;
        flex-direction: column;
        margin: 0 24px;
    }

    .blog-detail-sidebar {
        grid-template-columns: 1fr;
    }

    .blog-related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 460px) {
    .blog-page-hero h1 {
        font-size: 37px;
        letter-spacing: -1.2px;
    }

    .blog-category-filter-link {
        width: 100%;
        justify-content: center;
    }

    .blog-detail-placeholder {
        min-height: 290px;
    }

        .blog-detail-placeholder i {
            font-size: 45px;
        }
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 70px;
    align-items: flex-start;
}

.footer-navigation,
.footer-contact {
    width: 100%;
}

    .footer-navigation h2,
    .footer-contact h2 {
        margin-bottom: 22px;
    }

.footer-contact {
    justify-self: start;
}

@media(max-width:991px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    /* =========================================================
   KÜÇÜLTÜLMÜŞ FOOTER TASARIMI
========================================================= */

    .site-footer {
        padding-top: 38px;
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        align-items: flex-start;
        gap: 45px;
        padding-bottom: 30px;
    }

    .footer-navigation,
    .footer-contact {
        gap: 8px;
    }

        .footer-navigation h2,
        .footer-contact h2 {
            margin-bottom: 10px;
            font-size: 13px;
        }

        .footer-navigation a {
            font-size: 10px;
            line-height: 1.5;
        }

    .footer-contact-item {
        gap: 9px;
        font-size: 10px;
        line-height: 1.55;
    }

    .footer-contact-icon {
        width: 27px;
        height: 27px;
        border-radius: 7px;
        font-size: 10px;
    }

    .footer-map-link {
        font-size: 10px;
        line-height: 1.55;
    }

    .footer-bottom {
        min-height: 45px;
    }

        .footer-bottom p {
            margin: 0;
            font-size: 9px;
        }

    .footer-shape-one {
        width: 350px;
        height: 350px;
    }

    .footer-shape-two {
        width: 390px;
        height: 390px;
    }

    @media (max-width: 991px) {
        .site-footer {
            padding-top: 32px;
        }

        .footer-content {
            grid-template-columns: 1fr;
            gap: 25px;
            padding-bottom: 25px;
        }

        .footer-navigation,
        .footer-contact {
            gap: 7px;
        }

        .footer-bottom {
            min-height: 44px;
            padding: 12px 0;
        }
    }

    @media (max-width: 600px) {
        .site-footer {
            padding-top: 27px;
        }

        .footer-content {
            gap: 22px;
            padding-bottom: 22px;
        }

        .footer-navigation h2,
        .footer-contact h2 {
            margin-bottom: 7px;
            font-size: 12px;
        }

        .footer-navigation a,
        .footer-contact-item,
        .footer-map-link {
            font-size: 9px;
        }

        .footer-contact-icon {
            width: 25px;
            height: 25px;
        }

        .footer-bottom {
            min-height: 40px;
            text-align: center;
        }

            .footer-bottom p {
                width: 100%;
                font-size: 8px;
                line-height: 1.5;
            }
    }
}