:root {
    --storm: #071425;
    --storm-2: #0b1730;
    --ink: #0f172a;
    --blue: #1f58a8;
    --sky: #28aee4;
    --ice: #eaf8ff;
    --line: rgba(255, 255, 255, .12);
    --muted: rgba(226, 232, 240, .78);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--storm);
    color: #fff;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 20, 37, .86);
    backdrop-filter: blur(18px);
}

.desktop-nav a,
.drawer-links a {
    border-radius: 999px;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    font-weight: 700;
    padding: 10px 15px;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.drawer-links a:hover,
.drawer-links a.active {
    background: rgba(40, 174, 228, .14);
    color: #fff;
}

.desktop-nav .nav-cta {
    background: linear-gradient(135deg, var(--sky), var(--blue));
    color: #fff;
    margin-left: 8px;
}

.mobile-nav[hidden],
.mobile-backdrop[hidden],
.admin-drawer-backdrop[hidden] {
    display: none;
}

.mobile-backdrop,
.admin-drawer-backdrop {
    background: rgba(2, 6, 23, .58);
    backdrop-filter: blur(6px);
    inset: 0;
    position: fixed;
    z-index: 58;
}

.mobile-nav {
    align-content: start;
    background:
        linear-gradient(180deg, rgba(6, 17, 31, .98), rgba(7, 28, 54, .98)),
        radial-gradient(circle at 80% 10%, rgba(40, 174, 228, .22), transparent 34%);
    border-left: 1px solid rgba(255, 255, 255, .14);
    box-shadow: -28px 0 80px rgba(0, 0, 0, .42);
    display: grid;
    gap: 10px;
    height: 100vh;
    max-width: 370px;
    overflow-y: auto;
    padding: 20px;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(104%);
    transition: transform .28s ease;
    width: min(88vw, 370px);
    z-index: 60;
}

.mobile-nav.is-open {
    transform: translateX(0);
}

.drawer-head {
    align-items: center;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding: 12px;
}

.drawer-head strong {
    display: block;
    font-size: 14px;
    font-weight: 950;
}

.drawer-head span {
    color: rgba(226, 232, 240, .7);
    display: block;
    font-size: 12px;
    margin-top: 3px;
}

.drawer-close,
.admin-drawer-close {
    align-items: center;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 26px;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.drawer-links {
    display: grid;
    gap: 10px;
}

.drawer-links a {
    align-items: center;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    padding: 15px;
}

.drawer-links a small {
    align-items: center;
    background: rgba(103, 215, 255, .1);
    border: 1px solid rgba(103, 215, 255, .18);
    border-radius: 999px;
    color: rgba(103, 215, 255, .9);
    display: inline-flex;
    font-size: 11px;
    font-weight: 800;
    height: 26px;
    justify-content: center;
    width: 34px;
}

.drawer-links a.active {
    background: linear-gradient(135deg, rgba(40, 174, 228, .22), rgba(31, 88, 168, .12));
    border-color: rgba(103, 215, 255, .28);
}

.drawer-contact {
    background: linear-gradient(135deg, rgba(40, 174, 228, .16), rgba(255, 255, 255, .055));
    border: 1px solid rgba(103, 215, 255, .18);
    border-radius: 8px;
    margin-top: 12px;
    padding: 16px;
}

.drawer-contact > span {
    color: rgba(226, 232, 240, .72);
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 5px;
}

.drawer-contact strong {
    display: block;
    font-size: 17px;
    font-weight: 800;
}

.drawer-contact a {
    align-items: center;
    background: #28aee4;
    border-radius: 999px;
    color: #03101f;
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
    margin-top: 14px;
    min-height: 36px;
    padding: 8px 16px;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 8px;
    background: #fff;
    content: "";
    transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle span::before {
    transform: translateY(-6px);
}

.menu-toggle span::after {
    transform: translateY(4px);
}

.menu-toggle.is-open span {
    transform: rotate(45deg);
}

.menu-toggle.is-open span::before {
    opacity: 0;
}

.menu-toggle.is-open span::after {
    transform: translateY(-2px) rotate(90deg);
}

.hero-section,
.article-hero {
    position: relative;
    overflow: hidden;
    background: #06111f;
}

.hero-bg,
.article-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4, 13, 28, .95), rgba(8, 20, 40, .74) 42%, rgba(8, 20, 40, .34)),
        linear-gradient(0deg, rgba(7, 20, 37, .96), rgba(7, 20, 37, .18) 44%, rgba(7, 20, 37, .7));
}

.hero-panel {
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    background: rgba(6, 17, 31, .72);
    box-shadow: 0 24px 80px rgba(0, 0, 0, .35);
    padding: 28px;
    backdrop-filter: blur(18px);
}

.hero-panel-link {
    align-items: center;
    border: 1px solid rgba(103, 215, 255, .2);
    border-radius: 999px;
    color: #dff7ff;
    display: flex;
    font-size: 13px;
    font-weight: 800;
    justify-content: center;
    margin-top: 18px;
    min-height: 40px;
}

.stat-card {
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background: rgba(255, 255, 255, .07);
    padding: 16px 10px;
    text-align: center;
}

.stat-card strong {
    display: block;
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
}

.stat-card span {
    display: block;
    margin-top: 7px;
    color: rgba(226, 232, 240, .72);
    font-size: 12px;
    font-weight: 700;
}

.btn-primary,
.btn-secondary {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-size: 14px;
    font-weight: 900;
    justify-content: center;
    min-height: 46px;
    padding: 13px 22px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--sky), var(--blue));
    box-shadow: 0 16px 40px rgba(40, 174, 228, .22);
    color: #fff;
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-1px);
}

.section-shell {
    padding: 86px 0;
}

.home-snapshot {
    background: #06111f;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.home-snapshot a {
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    min-height: 106px;
    padding: 18px;
    transition: background .2s ease, transform .2s ease;
}

.home-snapshot a:hover {
    background: rgba(40, 174, 228, .1);
    transform: translateY(-2px);
}

.home-snapshot span {
    color: #67d7ff;
    display: block;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.home-snapshot strong {
    color: #fff;
    display: block;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.25;
}

.section-shell h2,
.contact-band h2,
.page-hero h1,
.article-hero h1,
.inner-page-hero h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 950;
    line-height: 1.05;
    margin: 0;
}

.eyebrow {
    color: #67d7ff;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .12em;
    margin: 0 0 12px;
    text-transform: uppercase;
}

.lead,
.section-heading p,
.contact-band p,
.page-hero p,
.article-hero p,
.inner-page-hero p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.section-heading {
    margin: 0 auto 34px;
    max-width: 760px;
    text-align: center;
}

.section-heading.left {
    margin-left: 0;
    text-align: left;
}

.split-heading,
.gallery-toolbar {
    align-items: end;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 28px;
}

.split-heading .section-heading,
.gallery-toolbar .section-heading {
    margin-bottom: 0;
}

.media-stack {
    min-height: 520px;
    position: relative;
}

.primary-photo {
    border-radius: 8px;
    box-shadow: 0 22px 80px rgba(0, 0, 0, .32);
    height: 520px;
    object-fit: cover;
    width: 88%;
}

.logo-mark {
    bottom: 26px;
    position: absolute;
    right: 0;
    width: 178px;
    border: 10px solid #fff;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
}

.info-tile,
.program-card,
.blog-card,
.contact-card,
.metric,
.admin-card,
.form-section,
.article-side,
.prose-panel {
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
}

.info-tile {
    padding: 22px;
}

.info-tile span,
.program-card div {
    color: #67d7ff;
    display: block;
    font-size: 13px;
    font-weight: 950;
    margin-bottom: 18px;
}

.info-tile h3,
.program-card h3,
.blog-card h3,
.blog-card h2 {
    color: #fff;
    font-size: 21px;
    font-weight: 900;
    line-height: 1.2;
    margin: 0;
}

.info-tile p,
.program-card p,
.blog-card p {
    color: rgba(226, 232, 240, .74);
    line-height: 1.7;
    margin: 12px 0 0;
}

.program-card {
    min-height: 230px;
    padding: 24px;
    transition: background .2s ease, transform .2s ease;
}

.program-card:hover {
    background: rgba(40, 174, 228, .1);
    transform: translateY(-3px);
}

.gallery-section {
    background:
        linear-gradient(180deg, rgba(11, 23, 48, .98), rgba(7, 20, 37, .98));
}

.gallery-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.gallery-item {
    aspect-ratio: 4 / 3;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    padding: 0;
    position: relative;
}

.gallery-item img {
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
    width: 100%;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-item span {
    bottom: 10px;
    left: 10px;
    position: absolute;
    border-radius: 999px;
    background: rgba(7, 20, 37, .82);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    padding: 7px 10px;
}

.gallery-card strong {
    background: linear-gradient(0deg, rgba(7, 20, 37, .92), rgba(7, 20, 37, 0));
    bottom: 0;
    color: #fff;
    display: block;
    font-size: 16px;
    font-weight: 900;
    left: 0;
    line-height: 1.25;
    padding: 58px 16px 16px;
    position: absolute;
    text-align: left;
    width: 100%;
}

.gallery-card span {
    bottom: auto;
    top: 10px;
}

.gallery-page-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
}

.gallery-page-grid .gallery-item {
    aspect-ratio: 4 / 3;
    min-height: 0;
}

.gallery-page-grid .gallery-item[hidden] {
    display: none;
}

.filter-pills {
    align-items: center;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 6px;
}

.filter-pills button {
    background: transparent;
    border: 0;
    border-radius: 8px;
    color: rgba(226, 232, 240, .78);
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    min-height: 38px;
    padding: 8px 13px;
}

.filter-pills button.is-active {
    background: linear-gradient(135deg, var(--sky), var(--blue));
    color: #fff;
    box-shadow: 0 10px 24px rgba(40, 174, 228, .18);
}

.empty-gallery {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    margin-bottom: 18px;
    padding: 26px;
}

.empty-gallery h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    margin: 0 0 8px;
}

.empty-gallery p {
    color: var(--muted);
    margin: 0;
}

.blog-card {
    overflow: hidden;
}

.blog-card img {
    aspect-ratio: 16 / 11;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.blog-card > div {
    padding: 22px;
}

.blog-card time {
    color: #67d7ff;
    display: block;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 10px;
}

.read-more {
    color: #70dcff;
    display: inline-flex;
    font-size: 14px;
    font-weight: 900;
    margin-top: 18px;
}

.contact-band {
    background: linear-gradient(135deg, #08203d, #0b65a4 52%, #28aee4);
}

.contact-card {
    background: rgba(6, 17, 31, .82);
    padding: 24px;
}

.contact-card p {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-size: 15px;
    margin: 0;
    padding: 13px 0;
}

.contact-card strong {
    color: #67d7ff;
    display: block;
    font-size: 12px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.contact-card a {
    display: inline-flex;
    margin-top: 18px;
    font-weight: 900;
}

.contact-workspace {
    background: linear-gradient(180deg, #071425, #0b1730);
}

.contact-info-panel,
.contact-form-card {
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
}

.contact-info-panel {
    align-self: start;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .045)),
        linear-gradient(135deg, rgba(40, 174, 228, .14), transparent 48%);
    padding: 28px;
}

.contact-info-panel h2,
.contact-form-card h2 {
    color: #fff;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
}

.contact-info-panel p:not(.eyebrow),
.form-intro p:not(.eyebrow) {
    color: var(--muted);
    line-height: 1.75;
    margin: 12px 0 0;
}

.contact-info-list {
    display: grid;
    gap: 12px;
    margin: 26px 0;
}

.contact-info-list div {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    padding: 16px;
}

.contact-info-list span {
    color: #67d7ff;
    display: block;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.contact-info-list strong,
.contact-info-list a {
    color: #fff;
    display: block;
    font-weight: 800;
    line-height: 1.55;
}

.contact-form-card {
    background: #fff;
    color: #102033;
    padding: 28px;
}

.contact-form-card h2 {
    color: #102033;
}

.contact-form-card .eyebrow {
    color: #176ba8;
}

.contact-form-card label {
    color: #334155;
    display: grid;
    font-size: 13px;
    font-weight: 700;
    gap: 8px;
    margin-bottom: 16px;
}

.contact-form-card input,
.contact-form-card textarea {
    background: #f8fbfe;
    border: 1px solid rgba(15, 23, 42, .12);
    border-radius: 8px;
    color: #102033;
    font: inherit;
    font-size: 15px;
    min-height: 46px;
    padding: 12px;
    width: 100%;
}

.contact-form-card textarea {
    resize: vertical;
}

.public-form-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-intro {
    margin-bottom: 22px;
}

.hidden-field {
    height: 0;
    left: -9999px;
    overflow: hidden;
    position: absolute;
    width: 0;
}

footer a,
footer p {
    color: rgba(226, 232, 240, .78);
    display: block;
    font-size: 14px;
    line-height: 1.8;
    margin: 0 0 7px;
}

.footer-title {
    color: #fff;
    font-weight: 900;
    margin-bottom: 14px;
}

.lightbox {
    align-items: center;
    background: rgba(2, 6, 23, .92);
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 24px;
    position: fixed;
    z-index: 80;
}

.lightbox[hidden] {
    display: none;
}

.lightbox button {
    align-items: center;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 30px;
    height: 48px;
    justify-content: center;
    position: absolute;
    right: 22px;
    top: 22px;
    width: 48px;
}

.lightbox figure {
    margin: 0;
    max-width: 980px;
    width: 100%;
}

.lightbox img {
    border-radius: 8px;
    max-height: 82vh;
    object-fit: contain;
    width: 100%;
}

.lightbox figcaption {
    color: #fff;
    font-weight: 800;
    margin-top: 12px;
    text-align: center;
}

.page-hero {
    background:
        linear-gradient(135deg, rgba(7, 20, 37, .96), rgba(31, 88, 168, .76)),
        url("icerikler/4.jpeg") center / cover;
}

.page-hero.compact {
    background: var(--storm);
}

.page-hero h1 {
    max-width: 820px;
}

.page-hero p {
    max-width: 720px;
}

.inner-page-hero {
    background: #06111f;
    min-height: 520px;
    overflow: hidden;
    position: relative;
}

.inner-page-bg {
    background-position: center;
    background-size: cover;
    inset: 0;
    position: absolute;
    transform: scale(1.03);
}

.inner-page-shade {
    background:
        linear-gradient(90deg, rgba(4, 13, 28, .96), rgba(7, 20, 37, .78) 44%, rgba(7, 20, 37, .22)),
        linear-gradient(0deg, rgba(7, 20, 37, .98), rgba(7, 20, 37, .16) 48%, rgba(7, 20, 37, .66));
    inset: 0;
    position: absolute;
}

.inner-page-hero h1 {
    margin: 12px 0 18px;
    max-width: 860px;
}

.inner-page-hero p:not(.eyebrow) {
    max-width: 740px;
}

.page-summary-card {
    align-self: end;
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    padding: 24px;
    backdrop-filter: blur(18px);
}

.page-summary-card img {
    background: #fff;
    border-radius: 50%;
    height: 78px;
    margin-bottom: 18px;
    object-fit: cover;
    width: 78px;
}

.page-summary-card strong {
    color: #fff;
    display: block;
    font-size: 26px;
    font-weight: 900;
    line-height: 1.15;
}

.page-summary-card span {
    color: #67d7ff;
    display: block;
    font-size: 13px;
    font-weight: 800;
    margin-top: 6px;
}

.page-summary-card p {
    color: rgba(226, 232, 240, .76);
    line-height: 1.7;
    margin: 14px 0 0;
}

.page-summary-card a {
    color: #67d7ff;
    display: inline-flex;
    font-weight: 900;
    margin-top: 16px;
}

.about-page {
    background: #071425;
}

.about-cover {
    background: #06111f;
    min-height: 640px;
    overflow: hidden;
    position: relative;
}

.about-cover-media {
    background-position: center;
    background-size: cover;
    inset: 0;
    position: absolute;
    transform: scale(1.03);
}

.about-cover-shade {
    background:
        linear-gradient(90deg, rgba(4, 13, 28, .96), rgba(7, 20, 37, .78) 42%, rgba(7, 20, 37, .26)),
        linear-gradient(0deg, rgba(7, 20, 37, 1), rgba(7, 20, 37, .15) 48%, rgba(7, 20, 37, .68));
    inset: 0;
    position: absolute;
}

.about-cover-copy h1 {
    color: #fff;
    font-size: clamp(44px, 6vw, 82px);
    font-weight: 950;
    letter-spacing: 0;
    line-height: .96;
    margin: 12px 0 22px;
    max-width: 900px;
}

.about-cover-copy p:not(.eyebrow) {
    color: rgba(226, 232, 240, .86);
    font-size: 20px;
    line-height: 1.75;
    max-width: 760px;
}

.about-breadcrumb {
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    color: rgba(226, 232, 240, .84);
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 18px;
    padding: 9px 14px;
}

.about-identity {
    align-items: center;
    align-self: end;
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    display: grid;
    gap: 18px;
    grid-template-columns: 96px 1fr;
    padding: 22px;
    backdrop-filter: blur(18px);
}

.about-identity img {
    background: #fff;
    border-radius: 50%;
    height: 96px;
    object-fit: cover;
    width: 96px;
}

.about-identity span {
    color: #67d7ff;
    display: block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
    margin-bottom: 7px;
    text-transform: uppercase;
}

.about-identity strong {
    color: #fff;
    display: block;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.15;
}

.about-identity p {
    color: rgba(226, 232, 240, .76);
    line-height: 1.6;
    margin: 8px 0 0;
}

.about-stats-band {
    background: #071425;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 18px 0;
}

.about-stat {
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    padding: 20px;
}

.about-stat span {
    color: rgba(226, 232, 240, .65);
    display: block;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.about-stat strong {
    color: #fff;
    display: block;
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
}

.about-content-band {
    background: linear-gradient(180deg, #071425, #0b1730);
}

.about-main-copy .section-heading {
    margin-bottom: 22px;
}

.about-prose {
    box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
}

.about-sticky {
    align-self: start;
    display: grid;
    gap: 16px;
    position: sticky;
    top: 104px;
}

.about-focus-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 8px;
    color: #102033;
    padding: 24px;
}

.about-focus-card.dark {
    background: linear-gradient(180deg, #06111f, #0b1730);
    border-color: rgba(255, 255, 255, .12);
    color: #fff;
}

.about-focus-card p:not(.eyebrow) {
    color: inherit;
    line-height: 1.75;
    margin: 0;
}

.about-values-band {
    background: #06111f;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.about-values-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-value-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    min-height: 230px;
    padding: 24px;
}

.about-value-card span {
    color: #67d7ff;
    display: block;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 22px;
}

.about-value-card h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.2;
    margin: 0;
}

.about-value-card p {
    color: rgba(226, 232, 240, .74);
    line-height: 1.7;
    margin: 13px 0 0;
}

.about-gallery-band {
    background: #071425;
}

.about-gallery-head {
    align-items: end;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin-bottom: 22px;
}

.about-gallery-head h2,
.about-cta h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
}

.about-gallery-head a {
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    padding: 11px 16px;
}

.about-gallery-strip {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.about-gallery-strip img {
    aspect-ratio: 3 / 4;
    border-radius: 8px;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.about-cta {
    background: linear-gradient(135deg, #08203d, #0b65a4 54%, #28aee4);
}

.about-cta p:not(.eyebrow) {
    color: rgba(255, 255, 255, .82);
    line-height: 1.8;
    margin: 12px 0 0;
    max-width: 740px;
}

.article-hero {
    min-height: 560px;
}

.article-hero .relative {
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.article-hero h1 {
    margin-top: 16px;
    max-width: 900px;
}

.article-hero time,
.back-link {
    color: #67d7ff;
    font-size: 13px;
    font-weight: 900;
    margin-top: 20px;
}

.article-body {
    background: #071425;
}

.prose-panel {
    background: #fff;
    color: #152033;
    font-size: 18px;
    line-height: 1.9;
    padding: 34px;
}

.prose-panel h2,
.prose-panel h3 {
    color: #071425;
    font-weight: 800;
    line-height: 1.2;
    margin: 28px 0 12px;
}

.prose-panel h2 {
    font-size: 30px;
}

.prose-panel h3 {
    font-size: 24px;
}

.prose-panel p,
.prose-panel ul,
.prose-panel ol,
.prose-panel blockquote,
.prose-panel pre {
    margin: 0 0 18px;
}

.prose-panel ul,
.prose-panel ol {
    padding-left: 24px;
}

.prose-panel blockquote {
    border-left: 4px solid #28aee4;
    color: #334155;
    padding-left: 18px;
}

.prose-panel img {
    border-radius: 8px;
    display: block;
    margin: 24px auto;
    max-height: 620px;
    object-fit: cover;
    width: min(100%, 860px);
}

.prose-panel a {
    color: #0b65a4;
    font-weight: 700;
}

.article-side {
    align-self: start;
    padding: 24px;
    position: sticky;
    top: 110px;
}

.article-side img {
    background: #fff;
    border-radius: 50%;
    height: 98px;
    object-fit: cover;
    width: 98px;
}

.article-side h2 {
    font-size: 23px;
    font-weight: 950;
    margin: 20px 0 10px;
}

.article-side p {
    color: var(--muted);
    line-height: 1.7;
}

.article-side a {
    color: #67d7ff;
    font-weight: 900;
}

.admin-login {
    align-items: center;
    background:
        linear-gradient(135deg, rgba(7, 20, 37, .94), rgba(11, 101, 164, .64)),
        url("icerikler/1.jpeg") center / cover;
    display: flex;
    min-height: 100vh;
    padding: 24px;
}

.login-card {
    background: rgba(7, 20, 37, .92);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .38);
    margin: auto;
    max-width: 440px;
    padding: 30px;
    width: 100%;
}

.login-card img {
    background: #fff;
    border-radius: 50%;
    height: 86px;
    margin-bottom: 18px;
    object-fit: cover;
    width: 86px;
}

.login-card h1 {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 20px;
}

.login-card label {
    color: rgba(226, 232, 240, .9);
    display: grid;
    font-size: 13px;
    font-weight: 700;
    gap: 8px;
    margin-bottom: 16px;
}

.admin-form label {
    color: #334155;
    display: grid;
    font-size: 13px;
    font-weight: 500;
    gap: 8px;
    margin-bottom: 16px;
}

.login-card input,
.admin-form input,
.admin-form textarea,
.admin-form select {
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(15, 23, 42, .12);
    border-radius: 8px;
    color: #102033;
    font: inherit;
    font-size: 15px;
    min-height: 44px;
    padding: 11px 12px;
    width: 100%;
}

.admin-form textarea {
    resize: vertical;
}

.login-hint {
    color: rgba(226, 232, 240, .74);
    font-size: 13px;
    margin: 14px 0;
}

.admin-layout {
    background: #eef5fa;
    color: #102033;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    min-height: 100vh;
}

.admin-sidebar {
    background: linear-gradient(180deg, #06111f, #0a1b33);
    color: #fff;
    min-height: 100vh;
    padding: 22px;
    position: relative;
}

.admin-brand {
    align-items: center;
    display: flex;
    gap: 12px;
    font-weight: 800;
    margin-bottom: 26px;
}

.admin-brand img {
    background: #fff;
    border-radius: 50%;
    height: 48px;
    object-fit: cover;
    width: 48px;
}

.admin-sidebar nav {
    display: grid;
    gap: 8px;
}

.admin-drawer-close {
    display: none;
    position: absolute;
    right: 18px;
    top: 22px;
}

.admin-sidebar nav a,
.logout-link,
.quick-actions a,
.admin-topbar a,
.admin-cancel {
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 14px;
}

.admin-sidebar nav a {
    color: rgba(255, 255, 255, .72);
}

.admin-sidebar nav a.active,
.admin-sidebar nav a:hover {
    background: rgba(40, 174, 228, .16);
    color: #fff;
}

.logout-link {
    border: 1px solid rgba(255, 255, 255, .16);
    display: block;
    margin-top: 22px;
    text-align: center;
}

.admin-main {
    padding: 28px;
}

.admin-topbar {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-bottom: 22px;
}

.admin-topbar h1 {
    color: #102033;
    font-size: 34px;
    font-weight: 800;
    margin: 0;
}

.admin-main .eyebrow {
    color: #176ba8;
}

.admin-menu-toggle {
    align-items: center;
    background: #06111f;
    border: 0;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    display: none;
    font-size: 14px;
    font-weight: 700;
    gap: 10px;
    min-height: 44px;
    padding: 10px 14px;
}

.admin-menu-toggle span,
.admin-menu-toggle span::before,
.admin-menu-toggle span::after {
    background: #fff;
    border-radius: 8px;
    content: "";
    display: block;
    height: 2px;
    width: 18px;
}

.admin-menu-toggle span::before {
    transform: translateY(-6px);
}

.admin-menu-toggle span::after {
    transform: translateY(4px);
}

.admin-topbar a,
.quick-actions a,
.admin-cancel {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .1);
    color: #123;
    display: inline-flex;
}

.admin-grid {
    display: grid;
    gap: 16px;
}

.admin-grid.three,
.form-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric {
    background: #fff;
    padding: 24px;
}

.metric span {
    color: #58708a;
    display: block;
    font-size: 13px;
    font-weight: 700;
}

.metric strong {
    display: block;
    font-size: 42px;
    font-weight: 800;
    margin-top: 8px;
}

.admin-card,
.form-section {
    background: #fff;
    border-color: rgba(15, 23, 42, .08);
    margin-top: 18px;
    padding: 22px;
}

.form-section {
    box-shadow: 0 12px 34px rgba(15, 23, 42, .05);
}

.admin-card h2,
.form-section h2 {
    color: #102033;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 16px;
}

.admin-card p {
    color: #54657a;
    line-height: 1.7;
}

.quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.admin-form {
    max-width: 1160px;
}

.admin-form.narrow {
    max-width: 620px;
}

.settings-intro {
    align-items: center;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(239, 247, 252, .98));
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 8px;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-top: 18px;
    padding: 22px;
}

.settings-intro h2 {
    color: #102033;
    font-size: 25px;
    font-weight: 700;
    margin: 0 0 8px;
}

.settings-intro p:not(.eyebrow),
.section-help {
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

.section-help {
    margin: -5px 0 18px;
}

.settings-tabs {
    background: #f8fbfe;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 8px;
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    margin-top: 18px;
    padding: 10px;
    position: sticky;
    top: 12px;
    z-index: 10;
}

.settings-tabs button {
    background: #fff;
    border: 1px solid transparent;
    border-radius: 8px;
    color: #334155;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    min-height: 48px;
    padding: 11px 13px;
}

.settings-tabs button.is-active {
    background: #071425;
    border-color: rgba(40, 174, 228, .35);
    color: #fff;
}

.settings-panel {
    display: none;
}

.settings-panel.is-active {
    display: block;
}

.inline-admin-link {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
}

.inline-admin-link a {
    background: #edf7ff;
    border: 1px solid rgba(23, 107, 168, .12);
    border-radius: 8px;
    color: #0f4f86;
    display: inline-flex;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 12px;
}

.editor-source {
    display: none;
}

.quill-editor {
    background: #fff;
    border-radius: 8px;
    color: #102033;
    margin-bottom: 16px;
}

.quill-editor .ql-toolbar,
.ql-toolbar.ql-snow {
    border-color: rgba(15, 23, 42, .12);
    border-radius: 8px 8px 0 0;
}

.quill-editor .ql-container,
.ql-container.ql-snow {
    border-color: rgba(15, 23, 42, .12);
    border-radius: 0 0 8px 8px;
    font-size: 16px;
    min-height: 280px;
}

.quill-editor .ql-editor {
    min-height: 280px;
}

.quill-editor .ql-editor img {
    border-radius: 8px;
    display: block;
    margin: 16px auto;
    max-width: 100%;
}

.form-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mini-group {
    background: #f8fbfe;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 8px;
    padding: 14px;
}

.mini-group h3 {
    color: #102033;
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 14px;
}

.page-settings-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.current-image img {
    border-radius: 8px;
    height: 160px;
    object-fit: cover;
    width: 240px;
}

.admin-split {
    align-items: start;
    display: grid;
    gap: 20px;
    grid-template-columns: minmax(0, 1fr) 430px;
}

.admin-list {
    display: grid;
    gap: 12px;
}

.list-row {
    align-items: center;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 8px;
    display: grid;
    gap: 10px;
    grid-template-columns: 64px minmax(0, 1fr) auto auto;
    padding: 10px;
}

.list-row img {
    border-radius: 8px;
    height: 54px;
    object-fit: cover;
    width: 64px;
}

.list-row strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
}

.list-row span {
    color: #64748b;
    display: block;
    font-size: 12px;
    margin-top: 3px;
}

.list-row a,
.list-row button {
    background: #edf7ff;
    border: 0;
    border-radius: 8px;
    color: #0f4f86;
    cursor: pointer;
    font-size: 12px;
    font-weight: 900;
    padding: 9px 10px;
}

.list-row button {
    background: #fee2e2;
    color: #991b1b;
}

.message-list {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.message-row {
    background: #f8fbfe;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 8px;
    padding: 18px;
}

.message-row.unread {
    border-color: rgba(23, 107, 168, .35);
    box-shadow: 0 12px 34px rgba(23, 107, 168, .08);
}

.message-head {
    align-items: flex-start;
    display: flex;
    gap: 14px;
    justify-content: space-between;
}

.message-head span {
    color: #176ba8;
    display: block;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.message-head h3 {
    color: #102033;
    font-size: 18px;
    font-weight: 800;
    margin: 0;
}

.message-head p {
    color: #64748b;
    font-size: 13px;
    margin: 5px 0 0;
}

.message-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.message-actions button {
    background: #edf7ff;
    border: 0;
    border-radius: 8px;
    color: #0f4f86;
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
    padding: 9px 11px;
}

.message-actions button.danger {
    background: #fee2e2;
    color: #991b1b;
}

.message-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0;
}

.message-contact a {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 999px;
    color: #0f4f86;
    font-size: 13px;
    font-weight: 800;
    padding: 8px 11px;
}

.message-body {
    color: #334155;
    line-height: 1.75;
    margin: 0;
}

.empty-state {
    background: #f8fbfe;
    border: 1px dashed rgba(15, 23, 42, .2);
    border-radius: 8px;
    color: #64748b;
    padding: 18px;
}

.check-line {
    align-items: center;
    display: flex !important;
    gap: 10px !important;
}

.check-line input {
    min-height: auto;
    width: auto;
}

.alert {
    border-radius: 8px;
    font-weight: 800;
    margin: 0 0 18px;
    padding: 13px 15px;
}

.alert.success {
    background: #dcfce7;
    color: #166534;
}

.alert.error {
    background: #fee2e2;
    color: #991b1b;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .page-settings-grid {
        grid-template-columns: 1fr;
    }

    .settings-tabs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .about-gallery-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .about-sticky {
        position: static;
    }

    .admin-layout,
    .admin-split {
        grid-template-columns: 1fr;
    }

    .admin-menu-toggle {
        display: inline-flex;
    }

    .admin-sidebar {
        box-shadow: -24px 0 70px rgba(0, 0, 0, .3);
        height: 100vh;
        max-width: 360px;
        overflow-y: auto;
        position: fixed;
        right: 0;
        top: 0;
        transform: translateX(104%);
        transition: transform .28s ease;
        width: min(86vw, 360px);
        z-index: 70;
    }

    .admin-sidebar.is-open {
        transform: translateX(0);
    }

    .admin-drawer-close {
        display: flex;
    }

    .admin-brand {
        padding-right: 54px;
    }
}

@media (max-width: 768px) {
    .section-shell {
        padding: 64px 0;
    }

    .section-shell h2,
    .contact-band h2,
    .page-hero h1,
    .article-hero h1,
    .inner-page-hero h1 {
        font-size: 34px;
    }

    .split-heading,
    .gallery-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .filter-pills {
        width: 100%;
    }

    .filter-pills button {
        flex: 1 1 auto;
    }

    .hero-panel {
        padding: 20px;
    }

    .media-stack {
        min-height: 390px;
    }

    .primary-photo {
        height: 380px;
        width: 100%;
    }

    .logo-mark {
        bottom: -20px;
        right: 18px;
        width: 132px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-cover {
        min-height: 560px;
    }

    .about-cover-copy p:not(.eyebrow) {
        font-size: 17px;
    }

    .about-identity {
        grid-template-columns: 72px 1fr;
        padding: 16px;
    }

    .about-identity img {
        height: 72px;
        width: 72px;
    }

    .about-identity strong {
        font-size: 19px;
    }

    .about-gallery-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .form-grid,
    .public-form-grid,
    .admin-grid.three,
    .form-grid.three {
        grid-template-columns: 1fr;
    }

    .admin-main {
        padding: 18px;
    }

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

    .settings-intro .btn-primary {
        width: 100%;
    }

    .settings-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        position: static;
    }

    .admin-topbar {
        align-items: flex-start;
        gap: 14px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .list-row {
        align-items: start;
        grid-template-columns: 58px minmax(0, 1fr);
    }

    .list-row a,
    .list-row form {
        grid-column: 2;
    }

    .message-head {
        display: grid;
    }

    .message-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 520px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .about-gallery-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-gallery-head h2,
    .about-cta h2 {
        font-size: 32px;
    }

    .gallery-item {
        aspect-ratio: 4 / 3;
    }

    .stat-card strong {
        font-size: 18px;
    }

    .stat-card span {
        font-size: 11px;
    }

    .prose-panel {
        font-size: 16px;
        padding: 22px;
    }
}
