@charset "UTF-8";

:root {
    --ink: #0d1b34;
    --ink-2: #21304b;
    --red: #c5162f;
    --red-dark: #9d1023;
    --paper: #ffffff;
    --mist: #f4f6f9;
    --line: #dfe4ec;
    --gold: #c9a66b;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--mist);
    color: var(--ink);
    font-family: "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}

.clear {
    display: none;
}

.header {
    min-height: 86px;
    background: rgba(12, 17, 28, 0.82);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    transition: background 0.18s ease, min-height 0.18s ease;
}

.header.active {
    min-height: 72px;
    background: rgba(12, 17, 28, 0.96);
}

.header-content,
.header-content.active {
    width: min(100% - 56px, 1360px);
    min-height: 86px;
    margin: 0 auto;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.header.active .header-content,
.header-content.active {
    min-height: 72px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--paper);
    flex: 0 0 auto;
}

.site-brand strong {
    display: block;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 30px;
    line-height: 1.05;
    letter-spacing: 0;
}

.site-brand em {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.78);
    font-style: normal;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.brand-symbol,
.hero__moon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    position: relative;
    flex: 0 0 auto;
    box-shadow: inset -13px 0 0 0 rgba(12, 17, 28, 0.98);
}

.brand-symbol:after,
.hero__moon:after {
    content: "";
    position: absolute;
    right: 8px;
    top: 11px;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 8px 3px 0 -3px #fff, 4px 9px 0 -4px #fff, -2px 6px 0 -4px #fff;
}

.menu-frame,
.menu-frame.active {
    float: none;
    width: auto;
    min-height: 0;
    margin: 0;
}

.menu {
    overflow: visible;
}

.menu ul {
    display: flex !important;
    align-items: center;
    gap: 6px;
}

.menu ul li {
    float: none;
}

.menu ul li a,
.menu ul li a:link,
.menu ul li a:visited {
    display: block;
    margin: 0;
    padding: 13px 15px;
    color: rgba(255, 255, 255, 0.86);
    border: 0;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
}

.menu ul li a:hover {
    color: #fff;
    border: 0;
}

.menu ul li a.is-current {
    color: #fff;
    position: relative;
}

.menu ul li a.is-current:after {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 4px;
    height: 3px;
    background: var(--red);
}

.menuAc {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 6px;
    font-size: 22px;
    line-height: 42px;
    text-align: center;
}

.hero {
    min-height: 760px;
    background:
        linear-gradient(90deg, rgba(9, 12, 19, 0.98) 0%, rgba(18, 20, 28, 0.9) 34%, rgba(26, 27, 33, 0.46) 62%, rgba(135, 12, 28, 0.9) 100%),
        url("../images/icerik-banner3.png") center/cover no-repeat;
    color: var(--paper);
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 170px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent);
    pointer-events: none;
}

.hero__inner {
    width: min(100% - 56px, 1360px);
    min-height: 760px;
    margin: 0 auto;
    padding: 130px 0 36px;
    display: grid;
    grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1.18fr);
    gap: 30px;
    align-items: end;
    position: relative;
}

.hero__content {
    align-self: center;
    padding-bottom: 60px;
    position: relative;
    z-index: 2;
}

.hero__brandmark {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 42px;
}

.hero__brandmark strong {
    display: block;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 31px;
    line-height: 1.1;
}

.hero__brandmark span span {
    display: block;
}

.hero__brandmark div span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 7px;
    text-transform: uppercase;
}

.hero__rule {
    display: block;
    width: 52px;
    height: 5px;
    margin-bottom: 22px;
    background: var(--red);
}

.hero h1 {
    margin: 0;
    max-width: 620px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(48px, 5vw, 76px);
    line-height: 0.95;
    letter-spacing: 0;
}

.hero h1 span {
    display: block;
    color: var(--red);
}

.hero__quote {
    margin: 24px 0 0;
    max-width: 520px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(25px, 2.3vw, 36px);
    font-style: italic;
    line-height: 1.16;
}

.hero__lead {
    margin: 22px 0 0;
    max-width: 500px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.38);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 23px;
    font-style: italic;
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.88);
}

.hero__pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero__pillars span {
    min-height: 42px;
    padding: 10px 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.28);
    color: rgba(255, 255, 255, 0.9);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 15px;
    font-weight: 700;
}

.hero__actions {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 4px;
    font-weight: 800;
    letter-spacing: 0;
}

.button--primary {
    background: var(--red);
    color: #fff;
}

.button--primary:hover {
    background: var(--red-dark);
}

.button--ghost {
    border: 1px solid rgba(255, 255, 255, 0.34);
    color: #fff;
}

.hero__socials {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.86);
}

.hero__socials span {
    margin-right: 8px;
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 700;
}

.hero__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 50%;
    color: #fff;
    font-weight: 800;
    font-size: 13px;
}

.hero__visual {
    position: relative;
    min-height: 630px;
    align-self: end;
    z-index: 1;
}

.hero__visual:before {
    content: "";
    position: absolute;
    right: 4px;
    bottom: 0;
    width: min(78%, 650px);
    height: 84%;
    background:
        radial-gradient(circle at 58% 34%, rgba(255, 255, 255, 0.2), transparent 28%),
        linear-gradient(112deg, rgba(255, 255, 255, 0.12), rgba(211, 17, 43, 0.52) 58%, rgba(128, 10, 26, 0.78));
    opacity: 0.95;
}

.hero__portrait {
    position: absolute;
    right: 76px;
    bottom: 0;
    width: min(38vw, 440px);
    height: min(58vw, 590px);
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.34);
    object-fit: cover;
    object-position: center top;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.hero__signature {
    position: absolute;
    right: 0;
    bottom: 46px;
    width: min(42vw, 510px);
    text-align: center;
    z-index: 2;
}

.hero__signature img {
    width: 100%;
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

.hero__signature span {
    display: block;
    margin-top: -4px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 7px;
    text-transform: uppercase;
}

.hero__news {
    display: none;
}

.hero__newsItem {
    display: block;
    width: 240px;
    min-height: 94px;
    padding: 15px 16px;
    color: #fff;
    background: rgba(12, 17, 28, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
}

.hero__newsItem span {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.hero__newsItem strong {
    display: block;
    font-size: 14px;
    line-height: 1.25;
}

.home-main,
.wrapper,
.ic-wrapper {
    width: min(100% - 56px, 1280px);
    max-width: 1280px;
    margin: 0 auto;
}

.home-main {
    padding: 36px 0 26px;
}

.section-heading,
.haber-baslik,
.haber-baslik2,
.haber-baslik3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: auto;
    margin: 0 0 18px;
    padding: 0 0 0 18px;
    border: 0;
    border-left: 6px solid var(--red);
    color: var(--ink);
    font-family: "Playfair Display", Georgia, serif;
    letter-spacing: 0;
}

.section-heading h2 {
    margin: 0;
    font-size: 34px;
    line-height: 1.1;
}

.section-heading a {
    color: var(--red);
    font-family: "Inter", Arial, sans-serif;
    font-size: 14px;
    font-weight: 800;
}

.news-grid,
.haber-sira,
.haber-sira-onepage {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    width: 100%;
    min-height: 0;
    margin: 0;
}

.news-card,
.haber-sol,
.haber-onepage-sol,
.haber-onepage-sag,
.sagblok-haber {
    float: none;
    width: auto;
    min-height: 0;
    margin: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(13, 27, 52, 0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.news-card:hover,
.haber-sol:hover,
.haber-onepage-sol:hover,
.haber-onepage-sag:hover,
.sagblok-haber:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(13, 27, 52, 0.12);
}

.news-card a {
    display: block;
}

.news-card img,
.haber-img,
.box,
.box .overbox {
    height: 190px;
}

.news-card img {
    width: 100%;
    background: #dfe6ef;
    object-fit: cover;
    object-position: center;
    display: block;
}

.news-card__body {
    padding: 14px 16px 16px;
}

.news-card time {
    display: block;
    margin-bottom: 8px;
    color: #697386;
    font-size: 13px;
}

.news-card h3 {
    margin: 0;
    min-height: 64px;
    color: var(--ink);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 20px;
    line-height: 1.18;
}

.news-card span,
.haber-text:after {
    color: var(--red);
    font-size: 14px;
    font-weight: 800;
}

.news-card span {
    display: inline-block;
    margin-top: 14px;
}

.haber-text {
    min-height: 88px;
    margin: 0;
    padding: 14px 16px 16px;
    border: 0;
    color: var(--ink);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.18;
    text-align: left;
}

.haber-text:after {
    content: "Devamını Oku";
    display: block;
    margin-top: 12px;
    font-family: "Inter", Arial, sans-serif;
}

.wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 34px;
    padding: 36px 0;
}

.wrapper_left,
.wrapper_right,
.ic-wrapper-sol,
.ic-wrapper-sag {
    float: none;
    width: auto;
}

.social-feed {
    display: none;
    margin-top: 34px;
}

.twitter_baslik {
    position: static;
    background: transparent;
    color: var(--ink);
}

.icerik-banner {
    height: auto;
    min-height: 330px;
    padding-top: 154px;
    background:
        linear-gradient(90deg, rgba(10, 18, 34, 0.92), rgba(10, 18, 34, 0.58), rgba(156, 18, 38, 0.72)),
        url("../images/icerik-banner3.png") center/cover no-repeat;
}

.icerik-banner-text {
    width: min(100% - 56px, 1280px);
    height: auto;
    max-width: 1280px;
    margin: 0 auto;
    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(38px, 6vw, 68px);
    font-weight: 800;
    line-height: 1.05;
    text-align: left;
    text-shadow: none;
}

.icerik-banner-text:before {
    content: "";
    display: block;
    width: 54px;
    height: 5px;
    margin-bottom: 18px;
    background: var(--red);
}

.ic-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 34px;
    margin-top: -58px;
    padding: 30px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 22px 60px rgba(13, 27, 52, 0.13);
    position: relative;
    z-index: 2;
}

.ic-wrapper p,
.ic-wrapper-sol {
    color: #26364f;
    font-size: 16px;
    line-height: 1.75;
    text-align: left;
}

.ic-wrapper-sol img,
#MainContent_imgas {
    border-radius: 6px;
}

.ic-wrapper-sag {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ic-wrapper-sag .haber-img,
.ic-wrapper-sag .box,
.ic-wrapper-sag .box .overbox {
    height: 160px;
}

.ic-wrapper-sag .haber-text {
    min-height: auto;
    font-size: 17px;
}

.konusma-frame {
    display: block;
    margin-top: 14px;
    padding: 18px 20px;
    background: var(--mist);
    border: 1px solid var(--line);
    border-left: 5px solid var(--red);
    border-radius: 6px;
    color: var(--ink);
    font-size: 16px;
    font-weight: 700;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.konusma-frame:hover {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
    transform: translateY(-2px);
}

.video-frame {
    float: none;
    width: auto;
    height: auto;
    margin: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
}

.video-frame iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    display: block;
}

.videotitle {
    height: auto;
    min-height: 0;
    padding: 14px 16px;
    color: var(--ink);
    font-weight: 800;
    line-height: 1.35;
}

.form-control {
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: 6px;
    box-shadow: none;
}

.btn,
.btn-orange {
    border-radius: 4px;
}

.btn-orange,
.gonderbuton {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

.btn-orange:hover,
.gonderbuton:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: #fff;
}

.footer-web {
    margin-top: 48px;
    background: var(--ink);
    border-top: 4px solid var(--red);
}

.footer-content {
    width: min(100% - 56px, 1280px);
    max-width: 1280px;
    min-height: 66px;
    line-height: 66px;
}

.footer-link,
.footer-link:hover {
    margin: 0 11px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
}

.footer-bottom {
    background: #080d18;
}

.footer-bottom-content {
    width: min(100% - 56px, 1280px);
    max-width: 1280px;
}

@media (max-width: 1120px) {
    .header-content,
    .header-content.active {
        width: min(100% - 36px, 1280px);
    }

    .site-brand strong {
        font-size: 25px;
    }

    .site-brand em {
        letter-spacing: 3px;
    }

    .menu ul li a {
        padding: 12px 10px;
        font-size: 12px;
    }

    .hero__inner {
        grid-template-columns: 1fr 0.9fr;
    }

    .hero__portrait {
        right: 10px;
        width: min(52vw, 500px);
    }

    .news-grid,
    .haber-sira,
    .haber-sira-onepage {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .header {
        min-height: 76px;
    }

    .header-content,
    .header-content.active {
        width: min(100% - 28px, 1280px);
        min-height: 76px;
        align-items: center;
    }

    .brand-symbol {
        width: 38px;
        height: 38px;
        box-shadow: inset -11px 0 0 0 rgba(12, 17, 28, 0.98);
    }

    .site-brand strong {
        font-size: 21px;
    }

    .site-brand em {
        max-width: 230px;
        font-size: 10px;
        letter-spacing: 2px;
    }

    .menuAc {
        display: block;
    }

    .menu ul {
        display: none !important;
        position: absolute;
        left: 14px;
        right: 14px;
        top: 76px;
        padding: 10px;
        background: rgba(12, 17, 28, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 8px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    }

    .menu ul li a {
        padding: 14px 12px;
    }

    .hero,
    .hero__inner {
        min-height: 0;
    }

    .hero__inner {
        width: min(100% - 28px, 1280px);
        padding: 112px 0 34px;
        grid-template-columns: 1fr;
        align-items: start;
    }

    .hero__content {
        padding-bottom: 0;
    }

    .hero__brandmark {
        margin-bottom: 28px;
    }

    .hero__visual {
        min-height: 440px;
    }

    .hero__portrait {
        right: 50%;
        transform: translateX(50%);
        bottom: 0;
        width: min(76vw, 380px);
        height: min(96vw, 440px);
    }

    .hero__signature {
        right: 50%;
        bottom: 18px;
        transform: translateX(50%);
        width: min(82vw, 420px);
    }

    .hero__news {
        display: none;
    }

    .hero__newsItem {
        width: auto;
        min-height: 0;
    }

    .home-main,
    .wrapper,
    .ic-wrapper,
    .icerik-banner-text,
    .footer-content,
    .footer-bottom-content {
        width: min(100% - 28px, 1280px);
    }

    .news-grid,
    .haber-sira,
    .haber-sira-onepage,
    .wrapper,
    .ic-wrapper {
        grid-template-columns: 1fr;
    }

    .ic-wrapper {
        padding: 22px;
    }

    .icerik-banner {
        min-height: 270px;
        padding-top: 124px;
    }
}

@media (max-width: 560px) {
    .site-brand {
        gap: 10px;
    }

    .site-brand strong {
        font-size: 18px;
    }

    .site-brand em {
        display: none;
    }

    .hero h1 {
        font-size: 38px;
        line-height: 1.03;
    }

    .hero__brandmark div span {
        letter-spacing: 3px;
    }

    .hero__pillars {
        gap: 8px;
    }

    .hero__pillars span {
        padding: 8px 10px;
        font-size: 14px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .footer-content {
        padding: 18px 0;
        line-height: 2;
    }

    .footer-link {
        display: inline-block;
    }
}

/* Homepage hero direction inspired by the approved reference composition. */
body > form {
    width: 100%;
}

.header {
    min-height: 82px;
    background: linear-gradient(90deg, rgba(22, 14, 10, 0.5), rgba(255, 255, 255, 0.12) 48%, rgba(18, 16, 18, 0.2));
    backdrop-filter: none;
    border-bottom: 0;
}

.header-content,
.header-content.active {
    width: min(100% - 64px, 1720px);
    max-width: none;
    min-height: 82px;
}

.site-brand strong {
    font-size: 31px;
}

.site-brand em {
    font-family: "Inter", Arial, sans-serif;
    letter-spacing: 5px;
}

.brand-symbol,
.hero__moon {
    width: 50px;
    height: 50px;
    box-shadow: inset -14px 0 0 0 rgba(33, 22, 15, 0.9);
}

.brand-symbol:after,
.hero__moon:after {
    right: 10px;
    top: 14px;
}

.menu ul {
    gap: 18px;
}

.menu ul li a,
.menu ul li a:link,
.menu ul li a:visited {
    padding: 12px 8px;
    color: #0d1b34;
    font-size: 13px;
}

.header.active .menu ul li a,
.header.active .menu ul li a:link,
.header.active .menu ul li a:visited {
    color: rgba(255, 255, 255, 0.88);
}

.menu ul li a.is-current:after {
    left: 8px;
    right: 8px;
    bottom: 1px;
    height: 4px;
}

.hero {
    min-height: 660px;
    background:
        linear-gradient(90deg, rgba(22, 13, 8, 0.88) 0%, rgba(24, 17, 13, 0.74) 30%, rgba(255, 255, 255, 0.04) 52%, rgba(24, 15, 13, 0.2) 78%, rgba(11, 10, 12, 0.46) 100%),
        url("../images/hero-office-bg.png") center/cover no-repeat;
    color: #fff;
}

.hero:before {
    height: 160px;
    background:
        linear-gradient(0deg, rgba(48, 25, 12, 0.58), transparent),
        linear-gradient(90deg, rgba(98, 54, 28, 0.35), rgba(142, 76, 38, 0.2), rgba(54, 30, 18, 0.3));
}

.hero:after {
    display: none;
}

.hero__inner {
    width: min(100% - 70px, 1720px);
    min-height: 660px;
    padding: 100px 0 0;
    grid-template-columns: minmax(380px, 0.78fr) minmax(520px, 1.22fr);
    gap: 18px;
    align-items: end;
}

.hero__content {
    align-self: end;
    height: 560px;
    padding: 0;
    position: relative;
}

.hero__rule {
    width: 58px;
    height: 5px;
    margin-bottom: 28px;
}

.hero h1,
.hero__quoteTitle {
    margin: 0;
    max-width: 390px;
    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(42px, 3.9vw, 58px);
    font-style: italic;
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: 0;
}

.hero h1 span {
    color: inherit;
}

.hero__lead {
    max-width: 430px;
    margin-top: 14px;
    padding-top: 14px;
    font-size: clamp(22px, 1.8vw, 27px);
    line-height: 1.12;
    color: rgba(255, 255, 255, 0.94);
}

.hero__pillars {
    max-width: 520px;
    gap: 0;
    margin-top: 24px;
}

.hero__pillars span {
    min-width: 78px;
    min-height: 52px;
    padding: 7px 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.34);
    text-align: center;
    font-size: 14px;
    line-height: 1.15;
}

.hero__pillars span:before {
    content: "";
    display: block;
    width: 30px;
    height: 26px;
    margin: 0 auto 7px;
    opacity: 0.95;
}

.hero__pillars span:nth-child(1):before {
    background:
        linear-gradient(#fff, #fff) center 0 / 30px 4px no-repeat,
        linear-gradient(#fff, #fff) 5px 8px / 4px 14px no-repeat,
        linear-gradient(#fff, #fff) 13px 8px / 4px 14px no-repeat,
        linear-gradient(#fff, #fff) 21px 8px / 4px 14px no-repeat,
        linear-gradient(#fff, #fff) center 23px / 30px 3px no-repeat;
}

.hero__pillars span:nth-child(2):before {
    background:
        linear-gradient(#fff, #fff) 2px 16px / 5px 10px no-repeat,
        linear-gradient(#fff, #fff) 12px 9px / 5px 17px no-repeat,
        linear-gradient(#fff, #fff) 22px 3px / 5px 23px no-repeat;
}

.hero__pillars span:nth-child(3):before {
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: inset 9px 0 0 -7px #fff, inset -9px 0 0 -7px #fff, inset 0 8px 0 -6px #fff, inset 0 -8px 0 -6px #fff;
}

.hero__pillars span:nth-child(4):before {
    background:
        radial-gradient(circle at 50% 7px, #fff 0 6px, transparent 7px),
        radial-gradient(circle at 17% 18px, #fff 0 5px, transparent 6px),
        radial-gradient(circle at 83% 18px, #fff 0 5px, transparent 6px),
        linear-gradient(#fff, #fff) center 21px / 28px 5px no-repeat;
}

.hero__pillars span:nth-child(5):before {
    border: 4px solid #fff;
    border-radius: 50%;
    box-shadow: 0 -8px 0 -5px #fff, 0 8px 0 -5px #fff, 8px 0 0 -5px #fff, -8px 0 0 -5px #fff;
}

.hero__books {
    display: none;
}

.hero__books span {
    display: block;
    height: 30px;
    padding: 5px 18px;
    color: #d9c594;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 2px 7px 7px 2px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 17px;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}

.hero__books span:nth-child(1) { width: 250px; background: #17130f; }
.hero__books span:nth-child(2) { width: 238px; background: #11395c; }
.hero__books span:nth-child(3) { width: 258px; background: #b31327; }
.hero__books span:nth-child(4) { width: 246px; background: #193d66; }
.hero__books span:nth-child(5) { width: 268px; background: #4d2f1d; }

.hero__socials {
    position: absolute;
    left: 0;
    bottom: 14px;
    margin-top: 0;
}

.hero__socials a {
    width: 34px;
    height: 34px;
    border-radius: 0;
    border-color: rgba(255, 255, 255, 0.24);
    border-width: 0 0 0 1px;
    font-size: 16px;
}

.hero__visual {
    min-height: 560px;
}

.hero__visual:before {
    display: none;
}

.hero__flag {
    display: none;
}

.hero__portrait {
    right: 26%;
    bottom: 0;
    width: auto;
    height: min(86vh, 620px);
    max-height: none;
    border: 0;
    background: transparent;
    object-fit: contain;
    object-position: bottom center;
    box-shadow: none;
    filter: contrast(1.04) saturate(1.03) drop-shadow(0 28px 42px rgba(0, 0, 0, 0.38));
    z-index: 2;
}

.hero__signature {
    right: 4%;
    bottom: 82px;
    width: min(35vw, 520px);
    z-index: 3;
}

.hero__signature span {
    font-size: 13px;
    letter-spacing: 9px;
}

.hero__bioButton {
    position: absolute;
    right: 2%;
    bottom: 34px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 184px;
    min-height: 58px;
    padding: 0 24px;
    background: var(--red);
    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 18px;
    font-weight: 700;
}

.home-main {
    width: min(100% - 110px, 1720px);
    max-width: 1720px;
    padding-top: 18px;
}

@media (max-width: 1120px) {
    .header-content,
    .header-content.active {
        width: min(100% - 36px, 1280px);
    }

    .site-brand strong {
        font-size: 26px;
    }

    .site-brand em {
        letter-spacing: 3px;
    }

    .menu ul {
        gap: 7px;
    }

    .menu ul li a,
    .menu ul li a:link,
    .menu ul li a:visited {
        font-size: 12px;
    }

    .hero__inner {
        grid-template-columns: minmax(330px, 0.85fr) minmax(420px, 1fr);
    }

    .hero__portrait {
        right: 3%;
        width: min(48vw, 500px);
    }
}

@media (max-width: 860px) {
    .header {
        background: rgba(12, 17, 28, 0.94);
    }

    .menu ul li a,
    .menu ul li a:link,
    .menu ul li a:visited {
        color: rgba(255, 255, 255, 0.9);
    }

    .hero {
        background:
            linear-gradient(90deg, rgba(10, 12, 19, 0.98), rgba(24, 25, 32, 0.82), rgba(171, 15, 38, 0.78)),
            linear-gradient(172deg, transparent 0 54%, rgba(116, 69, 37, 0.62) 55%, rgba(64, 35, 21, 0.88) 100%),
            linear-gradient(90deg, #1a120c 0%, #d8d4cd 58%, #7b121f 100%);
    }

    .hero__inner {
        min-height: 0;
        padding-top: 118px;
        grid-template-columns: 1fr;
    }

    .hero__content {
        height: auto;
        padding: 0;
    }

    .hero h1,
    .hero__quoteTitle {
        max-width: 330px;
        font-size: 42px;
        line-height: 1.02;
    }

    .hero__lead {
        max-width: 340px;
        font-size: 24px;
    }

    .hero__books {
        display: none;
    }

    .hero__socials {
        position: static;
        margin-top: 22px;
    }

    .hero__visual {
        min-height: 430px;
    }

    .hero__flag {
        right: -22%;
        top: -2%;
        width: 420px;
        height: 440px;
    }

    .hero__portrait {
        right: 50%;
        width: min(88vw, 380px);
        max-height: 430px;
        transform: translateX(50%);
    }

    .hero__signature {
        right: 50%;
        bottom: 72px;
        width: min(96vw, 430px);
        transform: translateX(50%);
    }

    .hero__signature span {
        font-size: 10px;
        letter-spacing: 6px;
    }

    .hero__bioButton {
        left: 14px;
        right: 14px;
        bottom: 18px;
    }

    .home-main {
        width: min(100% - 28px, 1280px);
        padding-top: 22px;
    }
}

@media (max-width: 560px) {
    .brand-symbol {
        width: 38px;
        height: 38px;
        box-shadow: inset -11px 0 0 0 rgba(12, 17, 28, 0.98);
    }

    .hero h1,
    .hero__quoteTitle {
        font-size: 39px;
    }

    .hero__pillars span {
        min-width: 86px;
        padding: 7px 9px;
        font-size: 13px;
    }
}

/* Final homepage hero: the supplied composition is the visual source of truth. */
.hero--final {
    height: clamp(560px, 40vw, 793px);
    min-height: 0;
    margin-top: 82px;
    background: url("../images/home-hero-final.png") center top / cover no-repeat;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero--final:before,
.hero--final:after {
    display: none;
}

.hero--final .hero__inner {
    width: 100%;
    min-height: 0;
    padding: 0;
    display: block;
}

.hero--final .hero__news {
    display: none;
}

.hero__imageLinks {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.heroLink {
    position: absolute;
    display: block;
    color: transparent;
    text-decoration: none;
}

.heroLink span {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.heroLink:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
    background: rgba(197, 22, 47, 0.12);
}

.heroLink--kamu { left: 7.2%; top: 58.7%; width: 5.3%; height: 8.5%; }
.heroLink--strateji { left: 14.5%; top: 58.7%; width: 5.2%; height: 8.5%; }
.heroLink--ticaret { left: 21.3%; top: 58.7%; width: 5.2%; height: 8.5%; }
.heroLink--insan { left: 28.4%; top: 58.7%; width: 5%; height: 8.5%; }
.heroLink--gelecek { left: 35.2%; top: 58.7%; width: 5.6%; height: 8.5%; }
.heroLink--books { left: 0; top: 70%; width: 22%; height: 28%; }
.heroLink--signature { left: 75.2%; top: 66%; width: 22%; height: 22%; }

.hero__socials--final {
    position: absolute;
    left: clamp(18px, 2.9vw, 58px);
    bottom: clamp(6px, 0.6vw, 12px);
    z-index: 3;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
    margin: 0;
    color: #fff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}

.hero__socials--final span {
    margin-right: 18px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 17px;
    font-weight: 700;
    white-space: nowrap;
}

.hero__socials--final a {
    width: 48px;
    height: 30px;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 0;
    color: #fff;
    font-family: "Inter", Arial, sans-serif;
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
}

.hero__socials--final a:hover,
.hero__socials--final a:focus-visible {
    color: #fff;
    background: rgba(197, 22, 47, 0.86);
    outline: 0;
}

.hero__socials--final #nsosyal {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 19px;
}

.hero__socials--final #linkedin {
    font-size: 15px;
    text-transform: lowercase;
}

@media (min-width: 1600px) {
    .hero--final {
        height: 793px;
    }
}

@media (max-width: 1120px) {
    .hero--final {
        height: clamp(520px, 40vw, 620px);
        margin-top: 82px;
    }

    .hero__socials--final {
        bottom: 10px;
    }
}

@media (max-width: 860px) {
    .hero--final {
        height: 720px;
        margin-top: 76px;
        background-image: url("../images/home-hero-final.png");
        background-size: auto 100%;
        background-position: left top;
    }

    .hero__imageLinks {
        display: none;
    }

    .hero__socials--final {
        left: 16px;
        right: 16px;
        bottom: 10px;
        justify-content: flex-start;
        flex-wrap: wrap;
        row-gap: 10px;
    }
}

@media (max-width: 560px) {
    .hero--final {
        height: 690px;
        background-size: auto 76%;
        background-position: -18px top;
        background-color: #22150f;
    }

    .hero__socials--final span {
        width: 100%;
        margin: 0 0 2px;
    }

    .hero__socials--final a {
        width: 42px;
        height: 32px;
    }
}

/* Refined transparent header over the final hero image. */
.header,
.header.active {
    min-height: 82px;
    background:
        linear-gradient(90deg, rgba(20, 13, 9, 0.42) 0%, rgba(255, 255, 255, 0.16) 48%, rgba(20, 14, 14, 0.18) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 30px rgba(8, 11, 18, 0.08);
}

.header-content,
.header-content.active {
    min-height: 82px;
}

.site-brand {
    gap: 16px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.32);
}

.site-brand strong {
    color: #fff;
    font-size: 30px;
}

.site-brand em {
    color: rgba(255, 255, 255, 0.84);
    letter-spacing: 5.5px;
}

.brand-symbol,
.hero__moon {
    width: 54px;
    height: 54px;
    border-radius: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M34 4C18.54 4 6 16.54 6 32s12.54 28 28 28c4.72 0 9.16-1.17 13.06-3.24A24.6 24.6 0 0 1 31.2 32 24.6 24.6 0 0 1 47.06 7.24 27.86 27.86 0 0 0 34 4Z'/%3E%3Cpath fill='%23fff' d='m48.12 22.2 2.7 6.05 6.58.7-4.92 4.43 1.36 6.48-5.72-3.34-5.73 3.34 1.37-6.48-4.92-4.43 6.58-.7 2.7-6.05Z'/%3E%3C/svg%3E") center / contain no-repeat;
    box-shadow: none;
}

.brand-symbol:after,
.hero__moon:after {
    display: none;
}

.menu ul li a,
.menu ul li a:link,
.menu ul li a:visited {
    color: #101b2e;
    text-shadow: 0 1px 18px rgba(255, 255, 255, 0.36);
}

.menu ul li a:hover,
.menu ul li a.is-current {
    color: #071326;
}

.hero--final {
    height: clamp(640px, calc(40vw + 48px), 841px);
    margin-top: 0;
    background-size: 100% auto;
    background-position: center 48px;
    background-color: #21150f;
}

@media (min-width: 1600px) {
    .hero--final {
        height: 841px;
    }
}

@media (max-width: 1120px) {
    .hero--final {
        height: clamp(600px, calc(40vw + 48px), 668px);
        margin-top: 0;
        background-position: center 48px;
    }
}

@media (max-width: 860px) {
    .header,
    .header.active {
        min-height: 76px;
        background: rgba(12, 17, 28, 0.72);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .header-content,
    .header-content.active {
        min-height: 76px;
    }

    .brand-symbol,
    .hero__moon {
        width: 42px;
        height: 42px;
    }

    .hero--final {
        height: 766px;
        margin-top: 0;
        background-size: auto 76%;
        background-position: -18px 76px;
    }
}

/* Header/logo and social icon polish. */
.header,
.header.active {
    background:
        linear-gradient(90deg, rgba(25, 15, 10, 0.34) 0%, rgba(19, 18, 18, 0.14) 46%, rgba(12, 12, 14, 0.22) 100%);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}

.header.active {
    background:
        linear-gradient(90deg, rgba(11, 13, 20, 0.9) 0%, rgba(18, 22, 32, 0.78) 48%, rgba(11, 13, 20, 0.9) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 14px 34px rgba(5, 8, 14, 0.24);
}

.site-brand {
    min-width: 0;
}

.site-brand img {
    display: block;
    width: auto;
    height: 62px;
    max-width: min(36vw, 440px);
    object-fit: contain;
}

.menu ul li a,
.menu ul li a:link,
.menu ul li a:visited,
.header.active .menu ul li a,
.header.active .menu ul li a:link,
.header.active .menu ul li a:visited {
    color: rgba(255, 255, 255, 0.94);
    font-weight: 650;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.52);
}

.menu ul li a:hover,
.menu ul li a.is-current {
    color: #fff;
}

.hero__socials--final > span {
    margin-right: 16px;
    font-family: "Inter", Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.1px;
}

.hero__socials--final a {
    width: 46px;
    height: 30px;
    color: #fff;
    font-size: 0;
}

.hero__socials--final .socialIcon {
    display: block;
    width: 19px;
    height: 19px;
    margin-right: 0;
    fill: currentColor;
}

.hero__socials--final .socialIcon--nsosyal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: 1.8px solid currentColor;
    border-radius: 50%;
    font-family: "Inter", Arial, sans-serif;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    text-indent: 0.5px;
}

.hero__socials--final a:hover,
.hero__socials--final a:focus-visible {
    background: transparent;
    color: #fff;
    opacity: 0.78;
}

@media (max-width: 1120px) {
    .site-brand img {
        height: 55px;
        max-width: min(42vw, 360px);
    }

    .menu ul li a,
    .menu ul li a:link,
    .menu ul li a:visited {
        font-weight: 650;
    }
}

@media (max-width: 860px) {
    .site-brand img {
        height: 44px;
        max-width: 268px;
    }

    .menu ul {
        background: rgba(12, 17, 28, 0.94);
    }
}

/* News listing page uses a full-width card grid, not the two-column detail layout. */
.news-listing {
    display: block;
    width: min(100% - 110px, 1720px);
    max-width: 1720px;
    margin-top: -58px;
    padding: 30px;
}

.news-listing .haber-baslik2 {
    margin: 0 0 24px;
    padding-left: 18px;
    min-height: auto;
    border-left: 6px solid var(--red);
    border-bottom: 0;
    color: var(--ink);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 32px;
    line-height: 1.15;
    text-shadow: none;
}

.news-listing .haber-sira-onepage {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
    margin: 0;
}

.news-listing .haber-onepage-sol {
    display: flex;
    flex-direction: column;
    float: none;
    width: auto;
    min-width: 0;
    min-height: 0;
    margin: 0;
    background: #fff;
}

.news-listing .haber-onepage-sol > a {
    display: block;
    flex: 0 0 auto;
}

.news-listing .haber-img,
.news-listing .box,
.news-listing .box .overbox {
    width: 100%;
    height: 214px;
}

.news-listing .haber-img img,
.news-listing .box img {
    display: block;
    width: 100%;
    height: 100%;
    background: #dfe6ef;
    object-fit: cover;
    object-position: center;
}

.news-listing .haber-text {
    flex: 1 1 auto;
    min-height: 124px;
    margin: 0;
    padding: 16px 18px 18px;
    border-top: 0;
    color: var(--ink);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.18;
    text-align: left;
    text-shadow: none;
}

.news-listing .haber-text:after {
    margin-top: 16px;
    font-family: "Inter", Arial, sans-serif;
    font-size: 14px;
    text-shadow: none;
}

.news-listing .row.text-center {
    grid-column: 1 / -1;
    margin: 8px 0 0 !important;
}

@media (max-width: 1120px) {
    .news-listing {
        width: min(100% - 36px, 1280px);
    }

    .news-listing .haber-sira-onepage {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .news-listing {
        width: min(100% - 28px, 1280px);
        margin-top: -42px;
        padding: 22px;
    }

    .news-listing .haber-sira-onepage {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (max-width: 560px) {
    .news-listing {
        padding: 18px;
    }

    .news-listing .haber-baslik2 {
        font-size: 28px;
    }

    .news-listing .haber-sira-onepage {
        grid-template-columns: 1fr;
    }
}

/* Contact page social links. */
.iletisim-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 8px 0 0;
}

.contact-method {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    min-height: 34px;
    color: var(--ink);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.contact-method:hover {
    color: var(--red);
}

.contact-method__icon {
    width: 24px;
    height: 24px;
    color: #25324a;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 6.5A2.5 2.5 0 0 1 5.5 4h13A2.5 2.5 0 0 1 21 6.5v11a2.5 2.5 0 0 1-2.5 2.5h-13A2.5 2.5 0 0 1 3 17.5v-11Zm2.4-.5 6.6 5.1L18.6 6H5.4Zm13.6 2.1-6.4 4.9a1 1 0 0 1-1.2 0L5 8.1v9.4c0 .3.2.5.5.5h13c.3 0 .5-.2.5-.5V8.1Z'/%3E%3C/svg%3E") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 6.5A2.5 2.5 0 0 1 5.5 4h13A2.5 2.5 0 0 1 21 6.5v11a2.5 2.5 0 0 1-2.5 2.5h-13A2.5 2.5 0 0 1 3 17.5v-11Zm2.4-.5 6.6 5.1L18.6 6H5.4Zm13.6 2.1-6.4 4.9a1 1 0 0 1-1.2 0L5 8.1v9.4c0 .3.2.5.5.5h13c.3 0 .5-.2.5-.5V8.1Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.contact-social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 8px;
}

.contact-social__label {
    width: 100%;
    color: #526078;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.contact-social__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: var(--ink);
    background: #f5f7fa;
    border: 1px solid var(--line);
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.contact-social__link:hover,
.contact-social__link:focus-visible {
    color: #fff;
    background: var(--red);
    border-color: var(--red);
    outline: 0;
    transform: translateY(-2px);
}

.contact-social__link span {
    display: block;
    width: 21px;
    height: 21px;
    color: currentColor;
}

.contact-social__link--nsosyal span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid currentColor;
    border-radius: 50%;
    font-family: "Inter", Arial, sans-serif;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.contact-social__link:not(.contact-social__link--nsosyal) span {
    background: currentColor;
}

.contact-social__link--x span {
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13.9 10.5 21.3 2h-2.9l-5.8 6.7L7.8 2H2l7.7 10.7L1.8 22h2.9l6.4-7.4 5.3 7.4H22l-8.1-11.5Zm-2 2.3-1.3-1.8-5-7h1.2l12.8 16.2h-1.2l-6.5-7.4Z'/%3E%3C/svg%3E") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13.9 10.5 21.3 2h-2.9l-5.8 6.7L7.8 2H2l7.7 10.7L1.8 22h2.9l6.4-7.4 5.3 7.4H22l-8.1-11.5Zm-2 2.3-1.3-1.8-5-7h1.2l12.8 16.2h-1.2l-6.5-7.4Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.contact-social__link--instagram span {
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7.2 2h9.6A5.2 5.2 0 0 1 22 7.2v9.6a5.2 5.2 0 0 1-5.2 5.2H7.2A5.2 5.2 0 0 1 2 16.8V7.2A5.2 5.2 0 0 1 7.2 2Zm0 2A3.2 3.2 0 0 0 4 7.2v9.6A3.2 3.2 0 0 0 7.2 20h9.6a3.2 3.2 0 0 0 3.2-3.2V7.2A3.2 3.2 0 0 0 16.8 4H7.2Zm4.8 3.5a4.5 4.5 0 1 1 0 9 4.5 4.5 0 0 1 0-9Zm0 2a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5Zm5-2.8a1.2 1.2 0 1 1 0 2.4 1.2 1.2 0 0 1 0-2.4Z'/%3E%3C/svg%3E") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7.2 2h9.6A5.2 5.2 0 0 1 22 7.2v9.6a5.2 5.2 0 0 1-5.2 5.2H7.2A5.2 5.2 0 0 1 2 16.8V7.2A5.2 5.2 0 0 1 7.2 2Zm0 2A3.2 3.2 0 0 0 4 7.2v9.6A3.2 3.2 0 0 0 7.2 20h9.6a3.2 3.2 0 0 0 3.2-3.2V7.2A3.2 3.2 0 0 0 16.8 4H7.2Zm4.8 3.5a4.5 4.5 0 1 1 0 9 4.5 4.5 0 0 1 0-9Zm0 2a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5Zm5-2.8a1.2 1.2 0 1 1 0 2.4 1.2 1.2 0 0 1 0-2.4Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.contact-social__link--linkedin span {
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5.2 8.8H2.3V22h2.9V8.8ZM3.8 2A1.8 1.8 0 1 0 3.8 5.6 1.8 1.8 0 0 0 3.8 2Zm7 6.8H8V22h2.9v-6.8c0-2 .9-3.5 2.9-3.5 1.6 0 2.4 1 2.4 3.2V22h2.9v-7.8c0-3.8-1.9-5.7-4.7-5.7-1.8 0-3 .8-3.7 1.8l.1-1.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5.2 8.8H2.3V22h2.9V8.8ZM3.8 2A1.8 1.8 0 1 0 3.8 5.6 1.8 1.8 0 0 0 3.8 2Zm7 6.8H8V22h2.9v-6.8c0-2 .9-3.5 2.9-3.5 1.6 0 2.4 1 2.4 3.2V22h2.9v-7.8c0-3.8-1.9-5.7-4.7-5.7-1.8 0-3 .8-3.7 1.8l.1-1.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.contact-social__link--youtube span {
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21.6 7.2a3 3 0 0 0-2.1-2.1C17.7 4.6 12 4.6 12 4.6s-5.7 0-7.5.5a3 3 0 0 0-2.1 2.1A31 31 0 0 0 2 12a31 31 0 0 0 .4 4.8 3 3 0 0 0 2.1 2.1c1.8.5 7.5.5 7.5.5s5.7 0 7.5-.5a3 3 0 0 0 2.1-2.1A31 31 0 0 0 22 12a31 31 0 0 0-.4-4.8ZM10 15.5v-7l6 3.5-6 3.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21.6 7.2a3 3 0 0 0-2.1-2.1C17.7 4.6 12 4.6 12 4.6s-5.7 0-7.5.5a3 3 0 0 0-2.1 2.1A31 31 0 0 0 2 12a31 31 0 0 0 .4 4.8 3 3 0 0 0 2.1 2.1c1.8.5 7.5.5 7.5.5s5.7 0 7.5-.5a3 3 0 0 0 2.1-2.1A31 31 0 0 0 22 12a31 31 0 0 0-.4-4.8ZM10 15.5v-7l6 3.5-6 3.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

@media (max-width: 560px) {
    .contact-method {
        font-size: 15px;
    }

    .contact-social__link {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 560px) {
    .site-brand img {
        height: 38px;
        max-width: 244px;
    }

    .hero__socials--final > span {
        width: 100%;
        margin: 0 0 2px;
        font-size: 15px;
        font-weight: 500;
    }

    .hero__socials--final a {
        width: 42px;
        height: 32px;
    }
}

/* Header search. */
.menu ul li.menu-search-item {
    position: relative;
    display: flex;
    align-items: center;
}

.menu ul li button.menu-search {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.menu ul li button.menu-search:hover,
.menu ul li button.menu-search:focus-visible,
.menu-search-item.is-open button.menu-search {
    color: #fff;
    background: rgba(214, 13, 42, 0.88);
    border-color: rgba(214, 13, 42, 0.95);
    outline: 0;
    transform: translateY(-1px);
}

.menu-search__icon {
    display: block;
    width: 19px;
    height: 19px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10.8 3a7.8 7.8 0 0 1 6.2 12.5l3.8 3.8-1.5 1.5-3.8-3.8A7.8 7.8 0 1 1 10.8 3Zm0 2.2a5.6 5.6 0 1 0 0 11.2 5.6 5.6 0 0 0 0-11.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10.8 3a7.8 7.8 0 0 1 6.2 12.5l3.8 3.8-1.5 1.5-3.8-3.8A7.8 7.8 0 1 1 10.8 3Zm0 2.2a5.6 5.6 0 1 0 0 11.2 5.6 5.6 0 0 0 0-11.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.site-search-panel {
    position: absolute;
    top: calc(100% + 16px);
    right: 0;
    z-index: 80;
    width: 350px;
    padding: 14px;
    background: rgba(10, 14, 24, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.site-search-panel:before {
    content: "";
    position: absolute;
    top: -7px;
    right: 15px;
    width: 14px;
    height: 14px;
    background: rgba(10, 14, 24, 0.94);
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    transform: rotate(45deg);
}

.menu-search-item.is-open .site-search-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.site-search-panel__label {
    display: block;
    margin: 0 0 9px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
}

.site-search-panel__row {
    display: flex;
    align-items: stretch;
    gap: 8px;
}

.site-search-panel__input {
    flex: 1 1 auto;
    min-width: 0;
    height: 42px;
    padding: 0 12px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-family: "Inter", Arial, sans-serif;
    font-size: 14px;
    outline: 0;
}

.site-search-panel__input:focus {
    border-color: rgba(255, 255, 255, 0.48);
    background: rgba(255, 255, 255, 0.14);
}

.site-search-panel__submit {
    flex: 0 0 auto;
    height: 42px;
    padding: 0 18px;
    color: #fff;
    background: var(--red);
    border: 1px solid var(--red);
    border-radius: 6px;
    font-family: "Inter", Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.site-search-panel__submit:hover,
.site-search-panel__submit:focus-visible {
    background: #b60928;
    border-color: #b60928;
    outline: 0;
}

.news-empty {
    grid-column: 1 / -1;
    padding: 34px 24px;
    color: #526078;
    background: #f6f8fb;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-family: "Inter", Arial, sans-serif;
    font-size: 16px;
    text-align: center;
}

@media (max-width: 860px) {
    .menu ul li.menu-search-item {
        display: block;
    }

    .menu ul li button.menu-search {
        width: 100%;
        height: 42px;
        justify-content: flex-start;
        padding: 0 12px;
        background: rgba(255, 255, 255, 0.08);
    }

    .menu ul li button.menu-search:after {
        content: "Arama";
        margin-left: 10px;
        font-size: 13px;
        font-weight: 500;
    }

    .site-search-panel {
        display: none;
        position: static;
        width: 100%;
        margin: 8px 0 0;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .site-search-panel:before {
        display: none;
    }

    .menu-search-item.is-open .site-search-panel {
        display: block;
        transform: none;
    }
}

@media (max-width: 560px) {
    .site-search-panel__row {
        flex-direction: column;
    }

    .site-search-panel__submit {
        width: 100%;
    }
}

/* Final mobile header and hero tuning. */
@media (max-width: 860px) {
    .header,
    .header.active {
        overflow: visible;
    }

    .header-content,
    .header-content.active {
        width: calc(100% - 28px);
        gap: 10px;
    }

    .site-brand img {
        height: 42px;
        max-width: min(68vw, 252px);
    }

    .menu {
        position: relative;
        overflow: visible;
    }

    .menuAc {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        line-height: 1;
    }

    .menu ul {
        display: none !important;
        position: fixed;
        top: 72px;
        left: 14px;
        right: 14px;
        z-index: 120;
        width: auto;
        padding: 10px;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        background: rgba(10, 14, 24, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 8px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.36);
    }

    .menu.is-open ul {
        display: flex !important;
    }

    .menu ul li {
        width: 100%;
    }

    .menu ul li a,
    .menu ul li a:link,
    .menu ul li a:visited {
        width: 100%;
        padding: 13px 12px;
        color: rgba(255, 255, 255, 0.94);
        text-align: left;
        text-shadow: none;
    }

    .menu ul li a.is-current:after {
        left: 12px;
        right: auto;
        width: 48px;
        bottom: 5px;
    }

    .hero--final {
        height: 636px;
        background-size: auto 70%;
        background-position: left 74px;
    }

    .hero__socials--final {
        left: 0;
        right: 0;
        bottom: 0;
        padding: 26px 12px 10px;
        justify-content: center;
        text-align: center;
        background: #21150f;
    }

    .hero__socials--final > span {
        width: 100%;
        margin: 0 0 4px;
        font-size: 15px;
        text-align: center;
    }

    .hero__socials--final a {
        width: 40px;
        height: 30px;
    }
}

@media (max-width: 560px) {
    .hero--final {
        height: 628px;
        background-size: auto 68%;
        background-position: left 68px;
    }

    .hero__socials--final {
        row-gap: 8px;
    }
}

/* Keep homepage social links inside the hero image, without a separate color band. */
.hero--final {
    height: min(841px, calc(40vw + 48px));
    background-size: 100% auto;
    background-position: center 48px;
}

.hero__socials--final {
    left: clamp(18px, 2.1vw, 42px);
    right: auto;
    bottom: 5px;
    padding: 0;
    background: transparent;
}

@media (max-width: 1120px) {
    .hero--final {
        height: calc(40vw + 48px);
    }
}

@media (max-width: 860px) {
    .hero--final {
        height: calc(68px + 70vw);
        min-height: 422px;
        max-height: 560px;
        background-size: auto calc(100% - 68px);
        background-position: left 68px;
    }

    .hero__socials--final {
        left: 0;
        right: 0;
        bottom: 5px;
        padding: 0 12px;
        justify-content: center;
        text-align: center;
        background: transparent;
        row-gap: 0;
    }

    .hero__socials--final > span {
        display: none;
    }
}

@media (max-width: 560px) {
    .hero--final {
        height: 452px;
        min-height: 452px;
        max-height: none;
        background-size: auto 384px;
        background-position: left 68px;
    }

    .hero__socials--final a {
        width: 38px;
        height: 30px;
    }
}
