* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #041d33;
    color: #ffffff;
    font-family: Roboto, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: minmax(180px, 260px) minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.5rem;
    min-height: 92px;
    padding: 0 max(1.2rem, 8vw);
    border-bottom: 1px solid rgba(0, 212, 255, 0.16);
    background:
        linear-gradient(180deg, rgba(3, 15, 30, 0.82), rgba(3, 15, 30, 0.66)),
        rgba(3, 15, 30, 0.76);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(20px);
}

.site-logo img {
    display: block;
    width: 220px;
    max-width: 100%;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
}

.site-header.is-scrolled {
    min-height: 76px;
    background:
        linear-gradient(180deg, rgba(3, 15, 30, 0.94), rgba(3, 15, 30, 0.82)),
        rgba(3, 15, 30, 0.9);
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.28);
}

.site-header,
.site-header .site-logo img {
    transition: min-height 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, width 0.2s ease;
}

.site-header.is-scrolled .site-logo img {
    width: 190px;
}

.site-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 212, 255, 0.65) 30%, rgba(0, 212, 255, 0.65) 70%, transparent 100%);
    pointer-events: none;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

.site-nav a,
.site-access {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0;
    text-decoration: none;
}

.site-nav > a,
.site-nav-parent {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 42px;
    padding: 0 0.85rem;
    border-radius: 9px;
    transition: background 0.18s ease, color 0.18s ease, box-shadow .18s ease;
}

.site-nav > a:hover,
.site-nav-parent:hover,
.site-nav-group:focus-within .site-nav-parent,
.site-nav-group:hover .site-nav-parent {
    background: rgba(0, 212, 255, 0.075);
    color: #00d4ff;
    box-shadow: inset 0 -1px 0 rgba(0, 212, 255, 0.55);
}

.site-nav-parent span {
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.18s ease;
}

.site-nav-group:hover .site-nav-parent span,
.site-nav-group:focus-within .site-nav-parent span {
    transform: rotate(225deg) translate(-2px, -1px);
}

.site-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(0, 212, 255, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    padding: 0.65rem;
}

.site-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 0 0 5px;
    border-radius: 999px;
    background: #dce9f7;
}

.site-menu-toggle span:last-child {
    margin-bottom: 0;
}

.site-nav-group {
    position: relative;
    padding: 1.35rem 0;
}

.site-dropdown {
    position: absolute;
    top: calc(100% - 0.05rem);
    left: 50%;
    display: grid;
    min-width: 248px;
    padding: 0.65rem;
    border: 1px solid rgba(0, 212, 255, 0.18);
    border-radius: 14px;
    background: linear-gradient(160deg, rgba(5, 22, 42, 0.98) 0%, rgba(3, 14, 27, 0.98) 100%);
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.44),
        0 0 0 1px rgba(255, 255, 255, 0.03),
        inset 0 0 60px rgba(0, 212, 255, 0.03);
    backdrop-filter: blur(28px);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -5px) scale(.985);
    transform-origin: top center;
    transition: opacity 0.2s ease, transform 0.24s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 30;
}

.site-dropdown::before {
    display: none;
}

.site-dropdown-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-width: 380px;
    gap: 0.25rem;
}

.site-nav-group:hover .site-dropdown,
.site-nav-group:focus-within .site-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0) scale(1);
}

.site-dropdown a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    padding: 0.58rem 0.75rem 0.58rem 1.55rem;
    border-radius: 8px;
    color: rgba(220, 236, 250, 0.76);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    transition: background 0.16s ease, color 0.16s ease, padding-left 0.16s ease;
}

.site-dropdown a::before {
    content: "";
    position: absolute;
    left: 0.7rem;
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: rgba(0, 212, 255, 0.38);
    transition: background 0.16s ease, transform 0.16s ease;
}

.site-dropdown a::after {
    content: "›";
    font-size: 1.15rem;
    line-height: 1;
    color: #00d4ff;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.16s ease, transform 0.16s ease;
}

.site-dropdown a:hover {
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.1), rgba(0, 212, 255, 0.03));
    color: #ffffff;
    padding-left: 1.65rem;
}

.site-dropdown a:hover::before {
    background: #00d4ff;
    transform: scale(1.5);
}

.site-dropdown a:hover::after {
    opacity: 0.7;
    transform: translateX(0);
}

.site-access {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 44px;
    padding: 0 1.15rem;
    border-radius: 10px;
    background: #1b84ff;
    color: #ffffff;
    border: 0;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(27, 132, 255, 0.28);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.site-access span {
    width: 14px;
    height: 14px;
    border: 1.8px solid currentColor;
    border-left: 0;
    border-radius: 3px;
    position: relative;
    opacity: 0.9;
}

.site-access span::before {
    content: "";
    position: absolute;
    left: -7px;
    top: 4px;
    width: 11px;
    height: 1.8px;
    border-radius: 999px;
    background: currentColor;
}

.site-access:hover {
    background: #056ee9;
    box-shadow: 0 14px 30px rgba(27, 132, 255, 0.36);
    transform: translateY(-1px);
}

.teknet-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.teknet-modal[aria-hidden="false"] {
    opacity: 1;
    pointer-events: auto;
}

.teknet-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 62% 46%, rgba(0, 212, 255, 0.13), transparent 34rem),
        rgba(0, 10, 20, 0.42);
    backdrop-filter: blur(4px);
}

.teknet-dialog {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(260px, 0.82fr) minmax(320px, 1fr);
    width: min(820px, 100%);
    border: 1px solid rgba(0, 212, 255, 0.22);
    border-radius: 16px;
    background: rgba(5, 22, 38, 0.82);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34), 0 0 38px rgba(0, 212, 255, 0.12);
    transform: translateY(18px) scale(0.98);
    transition: transform 0.2s ease;
}

.teknet-modal[aria-hidden="false"] .teknet-dialog {
    transform: translateY(0) scale(1);
}

.teknet-close {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    z-index: 2;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: #00d4ff;
    cursor: pointer;
    font-size: 1.6rem;
    line-height: 1;
}

.teknet-head {
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    padding: 2.2rem;
    background:
        linear-gradient(160deg, rgba(0, 212, 255, 0.14), transparent 42%),
        radial-gradient(circle at 20% 80%, rgba(230, 50, 58, 0.28), transparent 42%),
        #061728;
    text-align: left;
}

.teknet-head img {
    width: 235px;
    max-width: 100%;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.42));
}

.teknet-shield {
    display: none;
    place-items: center;
    width: 42px;
    height: 42px;
    margin: 1.2rem auto 0.7rem;
    border-radius: 14px;
    background: rgba(230, 50, 58, 0.2);
}

.teknet-shield::before {
    content: "";
    width: 16px;
    height: 18px;
    border: 2px solid #e6323a;
    border-top-width: 3px;
    border-radius: 9px 9px 7px 7px;
}

.teknet-head h2 {
    margin: 2.4rem 0 0;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 500;
}

.teknet-head p {
    margin: 0.35rem 0 0;
    color: #8fd8e8;
}

.teknet-form {
    grid-column: 2;
    display: grid;
    gap: 1.2rem;
    padding: 3.2rem 2.3rem 1.5rem;
    background: rgba(2, 21, 36, 0.72);
}

.teknet-field {
    display: grid;
    gap: 0.5rem;
}

.teknet-field label {
    color: #dce9f7;
    font-size: 0.95rem;
    font-weight: 650;
}

.teknet-field input {
    width: 100%;
    min-height: 52px;
    border: 1px solid rgba(0, 212, 255, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font: inherit;
    padding: 0 1rem;
    outline: none;
}

.teknet-field input:focus {
    border-color: #00d4ff;
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.12);
}

.teknet-help {
    justify-self: end;
    color: #00d4ff;
    font-size: 0.92rem;
    text-decoration: none;
}

.teknet-submit {
    min-height: 52px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, #e6323a, #b91f2c);
    color: #ffffff;
    cursor: pointer;
    font: inherit;
    font-size: 1.05rem;
    font-weight: 750;
    box-shadow: 0 16px 34px rgba(230, 50, 58, 0.26);
}

.teknet-safe {
    padding: 1rem;
    border: 1px solid rgba(0, 212, 255, 0.16);
    border-radius: 8px;
    background: rgba(0, 212, 255, 0.04);
    color: #a8b5c8;
    font-size: 0.86rem;
    line-height: 1.55;
    text-align: center;
}

.teknet-foot {
    grid-column: 2;
    padding: 0 2.3rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(2, 21, 36, 0.72);
    color: #7f8fa3;
    font-size: 0.8rem;
    text-align: center;
}

.teknet-foot strong {
    color: #ffffff;
}

body.teknet-open {
    overflow: hidden;
}

main {
    min-height: 60vh;
}

.site-footer {
    padding: 4rem 10vw 2rem;
    background: #052843;
    color: #b7c7d9;
}

.site-footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) 0.7fr 0.7fr;
    gap: 4rem;
}

.site-footer img {
    width: 230px;
    max-width: 100%;
    margin-bottom: 1.5rem;
}

.site-footer h2 {
    margin: 0 0 1.2rem;
    color: #ffffff;
    font-size: 1.05rem;
}

.site-footer p {
    max-width: 440px;
    color: #a8bed5;
    line-height: 1.7;
}

.site-footer a {
    display: block;
    margin: 0 0 0.8rem;
    color: #a8bed5;
    text-decoration: none;
    transition: color 0.18s ease;
}

.site-footer a:hover {
    color: #00d4ff;
}

.site-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.25rem;
}

.site-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 34px;
    margin: 0;
    padding: 0 0.85rem;
    border: 1px solid rgba(0, 212, 255, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
    color: #d7e8f7;
    font-size: 0.86rem;
    font-weight: 700;
    transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.site-social a:hover {
    border-color: rgba(0, 212, 255, 0.5);
    background: rgba(0, 212, 255, 0.08);
    color: #00d4ff;
}

.site-footer-cta {
    width: min(900px, 100%);
    margin: 3rem auto;
    padding: 2.4rem 2rem;
    border: 1px solid rgba(0, 132, 99, 0.38);
    border-radius: 12px;
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 132, 99, 0.14), transparent 65%);
    text-align: center;
}

.site-footer-cta h2 {
    font-size: 2rem;
    color: #ffffff;
}

.site-footer-cta p {
    margin: 0 auto 1.6rem;
    max-width: 580px;
}

.site-footer-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 1.6rem;
    border-radius: 10px;
    background: linear-gradient(135deg, #009e78, #006b50);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(0, 132, 99, 0.26);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.site-footer-cta a:hover {
    background: linear-gradient(135deg, #00b589, #008463);
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(0, 132, 99, 0.38);
    color: #ffffff;
}

.site-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #819ab5;
    font-size: 0.9rem;
}

.site-footer-legal {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: .45rem 1rem;
}

.site-footer-legal a,
.site-footer-legal button {
    display: inline-flex;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #9eb3c8;
    font: inherit;
    cursor: pointer;
}

.site-footer-legal a:hover,
.site-footer-legal button:hover {
    color: #00d4ff;
}

.cookie-consent {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(0, 12, 23, .58);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
}

.cookie-consent[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
}

.cookie-consent-panel {
    position: relative;
    width: min(1100px, 100%);
    max-height: calc(100vh - 3rem);
    overflow: auto;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 1.25rem;
    align-items: center;
    padding: 1.5rem;
    border: 1px solid rgba(0, 212, 255, .28);
    border-radius: 20px;
    background: #061d31;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .4);
    transform: translateY(20px);
    transition: transform .22s ease;
}

.cookie-consent[aria-hidden="false"] .cookie-consent-panel { transform: translateY(0); }
.cookie-consent-icon { display:grid; place-items:center; width:52px; height:52px; border-radius:15px; background:rgba(0, 190, 224, .12); color:#00d4ff; font-size:1.35rem; }
.cookie-consent-copy h2 { margin:0 0 .45rem; color:#fff; font-size:1.25rem; }
.cookie-consent-copy p { margin:0; max-width:700px; color:#b7c8d8; line-height:1.55; }
.cookie-consent-copy a { color:#00d4ff; }
.cookie-consent-actions { display:flex; justify-content:flex-end; flex-wrap:wrap; gap:.65rem; }
.cookie-button { min-height:43px; padding:0 1rem; border:1px solid rgba(0,212,255,.3); border-radius:10px; font-weight:700; cursor:pointer; }
.cookie-button-primary { background:#00a982; border-color:#00a982; color:#fff; }
.cookie-button-secondary { background:rgba(255,255,255,.04); color:#dcebf7; }
.cookie-consent-preferences { grid-column:1 / -1; border-top:1px solid rgba(255,255,255,.1); padding-top:1rem; }
.cookie-consent-option { display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:1rem; border-radius:12px; background:rgba(255,255,255,.035); color:#fff; }
.cookie-consent-option + .cookie-consent-option { margin-top:.7rem; }
.cookie-consent-option p { margin:.35rem 0 0; color:#a9bdcf; line-height:1.5; }
.cookie-always { flex:0 0 auto; color:#00c99a; font-size:.85rem; font-weight:700; }
.cookie-switch { position:relative; flex:0 0 auto; width:48px; height:27px; }
.cookie-switch input { position:absolute; opacity:0; }
.cookie-switch span { position:absolute; inset:0; border-radius:99px; background:#526476; transition:.2s; }
.cookie-switch span::after { content:""; position:absolute; top:4px; left:4px; width:19px; height:19px; border-radius:50%; background:#fff; transition:.2s; }
.cookie-switch input:checked + span { background:#00a982; }
.cookie-switch input:checked + span::after { transform:translateX(21px); }
.cookie-consent-close { position:absolute; top:.65rem; right:.75rem; display:none; border:0; background:transparent; color:#b7c8d8; font-size:1.5rem; cursor:pointer; }
.cookie-consent.has-decision .cookie-consent-close { display:block; }
body.cookie-consent-open { overflow:hidden; }

.legal-page { min-height:70vh; padding:5rem 1.5rem; background:#061d31; color:#d6e2ec; }
.legal-page-inner { width:min(980px, 100%); margin:0 auto; }
.legal-breadcrumb { display:flex; gap:.7rem; color:#8da5b9; font-size:.9rem; }
.legal-breadcrumb a { color:#00d4ff; text-decoration:none; }
.legal-page h1 { margin:2rem 0; color:#fff; font-size:clamp(2.2rem, 5vw, 4rem); }
.legal-content { padding:clamp(1.4rem, 4vw, 3rem); border:1px solid rgba(0,212,255,.2); border-radius:18px; background:rgba(255,255,255,.035); line-height:1.75; }
.legal-content h2,.legal-content h3 { color:#fff; }
.legal-content a { color:#00d4ff; }

@media (max-width: 800px) {
    .cookie-consent { padding:.75rem; }
    .cookie-consent-panel { max-height:calc(100vh - 1.5rem); grid-template-columns:auto minmax(0,1fr); padding:1.2rem; border-radius:16px; }
    .cookie-consent-actions { grid-column:1 / -1; justify-content:stretch; }
    .cookie-button { flex:1 1 145px; }
}

@media (max-width: 560px) {
    .cookie-consent-icon { display:none; }
    .cookie-consent-panel { grid-template-columns:1fr; }
    .cookie-consent-actions,.cookie-consent-preferences { grid-column:1; }
    .cookie-button { flex-basis:100%; }
    .cookie-consent-option { align-items:flex-start; }
    .site-footer-legal { justify-content:flex-start; }
}

.back-top {
    position: fixed;
    right: 1.8rem;
    bottom: 1.8rem;
    z-index: 15;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(0, 212, 255, 0.35);
    background: linear-gradient(135deg, rgba(0, 200, 234, 0.92), rgba(0, 160, 200, 0.9));
    color: #ffffff;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(0, 200, 234, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px) scale(0.9);
    transition: opacity 0.22s ease, transform 0.22s ease, box-shadow 0.18s ease;
}

.news-index,
.news-detail {
    width: min(1420px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 3.5rem 0;
}

.news-index-head,
.news-detail-head {
    width: min(880px, 100%);
    margin: 0 auto 3rem;
    text-align: center;
}

.news-index-hero {
    margin: -3.5rem calc(50% - 50vw) 2.2rem;
    padding: 4rem max(1rem, calc((100vw - 1420px) / 2)) 3rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.16);
    background:
        radial-gradient(circle at 50% 0%, rgba(0, 212, 255, 0.16), transparent 32rem),
        linear-gradient(180deg, rgba(4, 29, 51, 0.96), rgba(5, 37, 63, 0.72));
}

.news-index-hero .news-index-head {
    margin-bottom: 0;
}

.news-index-head > span,
.news-back {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 0.85rem;
    border: 1px solid rgba(0, 212, 255, 0.28);
    border-radius: 999px;
    background: rgba(0, 212, 255, 0.08);
    color: #00d4ff;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
}

.news-index h1,
.news-detail h1 {
    margin: 1rem 0 0;
    color: #ffffff;
    font-size: clamp(2rem, 2.8vw, 2.9rem);
    font-weight: 400;
    line-height: 1.15;
}

.news-index-head p,
.news-detail-head p {
    margin: 1rem auto 0;
    max-width: 720px;
    color: #a8bed5;
    font-size: 1.08rem;
    line-height: 1.65;
}

.news-index-head small {
    display: inline-flex;
    margin-top: 1rem;
    color: #7fa4c6;
    font-size: 0.9rem;
    font-weight: 700;
}

.news-index-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.news-featured-card {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    margin: 0 auto 1.5rem;
    max-width: 1120px;
    border: 1px solid rgba(0, 212, 255, 0.24);
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(13, 43, 70, 0.88), rgba(5, 37, 63, 0.62)),
        rgba(13, 43, 70, 0.68);
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.news-featured-media {
    display: block;
    min-height: 260px;
    background:
        radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.18), transparent 16rem),
        rgba(0, 212, 255, 0.07);
}

.news-featured-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
}

.news-featured-media span,
.news-index-media span {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    min-height: inherit;
    padding: 1rem;
    color: #8fb0cf;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
}

.news-featured-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.3rem, 2.4vw, 2.1rem);
}

.news-featured-body h2 {
    margin: 0.8rem 0 0;
    color: #ffffff;
    font-size: clamp(1.55rem, 2.3vw, 2.45rem);
    font-weight: 400;
    line-height: 1.08;
}

.news-featured-body p {
    margin: 0.8rem 0 1.2rem;
    color: #c6d7e7;
    font-size: 0.98rem;
    line-height: 1.6;
}

.news-index-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 1px solid rgba(0, 212, 255, 0.18);
    border-radius: 10px;
    background: rgba(13, 43, 70, 0.52);
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.news-index-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26), 0 0 0 1px rgba(0, 212, 255, 0.08);
}

.news-index-media {
    display: block;
    aspect-ratio: 16 / 9;
    background: rgba(0, 212, 255, 0.07);
}

.news-index-media img,
.news-detail-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-index-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1rem;
}

.news-index-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

.news-index-card .news-index-meta {
    justify-content: flex-start;
}

.news-index-meta span,
.news-index-meta small {
    color: #a8bed5;
    font-size: 0.82rem;
}

.news-index-meta span {
    color: #00d4ff;
    font-weight: 700;
}

.news-index-card h2 {
    margin: 0.75rem 0 0;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.28;
}

.news-index-card h2 a,
.news-index-link {
    color: inherit;
    text-decoration: none;
}

.news-index-card p {
    margin: 0.65rem 0 1rem;
    color: #a8bed5;
    font-size: 0.92rem;
    line-height: 1.5;
}

.news-index-link {
    margin-top: auto;
    color: #00d4ff;
    font-size: 0.9rem;
    font-weight: 700;
}

.news-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    align-items: center;
    justify-content: center;
    margin-top: 2.2rem;
}

.news-pagination a,
.news-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 0 0.85rem;
    border: 1px solid rgba(0, 212, 255, 0.18);
    border-radius: 999px;
    background: rgba(13, 43, 70, 0.52);
    color: #a8bed5;
    font-weight: 700;
    text-decoration: none;
}

.news-pagination a:hover,
.news-pagination .is-current {
    border-color: rgba(0, 212, 255, 0.45);
    background: rgba(0, 212, 255, 0.12);
    color: #00d4ff;
}

.news-pagination .is-disabled {
    opacity: 0.45;
}

.news-index-empty,
.news-detail-empty {
    grid-column: 1 / -1;
    padding: 3rem;
    border: 1px solid rgba(0, 212, 255, 0.18);
    border-radius: 8px;
    background: rgba(13, 43, 70, 0.52);
    text-align: center;
}

.news-detail {
    width: min(1080px, calc(100% - 2rem));
}

.news-detail-head {
    position: relative;
    padding: 0;
}

.news-detail-head.has-news-image {
    display: grid;
    place-items: center;
    width: min(1180px, 100%);
    min-height: 480px;
    padding: clamp(2rem, 5vw, 4.5rem);
    border: 1px solid rgba(0, 212, 255, 0.22);
    border-radius: 16px;
    background: #061f36;
    overflow: hidden;
}

.news-detail-head-bg {
    display: none;
}

.news-detail-head.has-news-image .news-detail-head-bg {
    position: absolute;
    inset: 0;
    display: block;
    background:
        linear-gradient(180deg, rgba(4, 29, 51, 0.42), rgba(4, 29, 51, 0.88)),
        linear-gradient(90deg, rgba(4, 29, 51, 0.76), rgba(4, 29, 51, 0.24)),
        var(--news-hero-image) center / cover no-repeat;
    transform: scale(1.02);
}

.news-detail-head.has-news-image > *:not(.news-detail-head-bg) {
    position: relative;
    z-index: 1;
}

.news-detail-head.has-news-image h1 {
    max-width: 900px;
    text-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
}

.news-detail-image-note {
    margin: 1.4rem auto 0;
    max-width: 680px;
    padding: 0.85rem 1rem;
    border: 1px dashed rgba(0, 212, 255, 0.28);
    border-radius: 10px;
    background: rgba(0, 212, 255, 0.07);
    color: #a8bed5;
    font-size: 0.92rem;
}

.news-detail-media {
    margin: 0 0 2.5rem;
    border: 1px solid rgba(0, 212, 255, 0.18);
    border-radius: 8px;
    overflow: hidden;
}

.news-detail-media img {
    aspect-ratio: 16 / 8.2;
}

.news-detail-byline {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.3rem;
    color: #a8bed5;
}

.news-detail-content {
    color: #d8e7f7;
    font-size: 1.08rem;
    line-height: 1.82;
}

.news-detail-content h2,
.news-detail-content h3 {
    margin: 2rem 0 0.9rem;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.25;
}

.news-detail-content h2 {
    font-size: 1.85rem;
}

.news-detail-content h3 {
    font-size: 1.45rem;
}

.news-detail-content p,
.news-detail-content ul,
.news-detail-content ol,
.news-detail-content blockquote {
    margin-top: 0;
    margin-bottom: 1.25rem;
}

.news-detail-content a {
    color: #00d4ff;
}

.news-detail-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 1.8rem auto;
    border: 1px solid rgba(0, 212, 255, 0.18);
    border-radius: 8px;
}

.news-detail-content blockquote {
    padding: 1.2rem 1.4rem;
    border-left: 4px solid #00d4ff;
    border-radius: 8px;
    background: rgba(0, 212, 255, 0.07);
    color: #ffffff;
}

.news-detail-content .ql-align-center {
    text-align: center;
}

.news-detail-content .ql-align-right {
    text-align: right;
}

.news-detail-content .ql-align-justify {
    text-align: justify;
}

.n10-custom-html {
    width: min(1080px, calc(100% - 2rem));
    margin: 0 auto;
}

.n10-custom-html > h2 {
    margin: 0 0 1.5rem;
    color: #ffffff;
    font-size: clamp(2rem, 3vw, 3.2rem);
    font-weight: 400;
    text-align: center;
}

.n10-custom-html-content {
    color: #d8e7f7;
    font-size: 1.06rem;
    line-height: 1.82;
}

.n10-custom-html-content h2,
.n10-custom-html-content h3,
.n10-custom-html-content h4 {
    margin: 1.8rem 0 0.8rem;
    color: #ffffff;
    font-weight: 500;
}

.n10-custom-html-content p,
.n10-custom-html-content ul,
.n10-custom-html-content ol,
.n10-custom-html-content blockquote {
    margin-top: 0;
    margin-bottom: 1.2rem;
}

.n10-custom-html-content a {
    color: #00d4ff;
}

.n10-custom-html-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 1.6rem auto;
    border: 1px solid rgba(0, 212, 255, 0.18);
    border-radius: 10px;
}

.n10-custom-html-content blockquote {
    padding: 1.2rem 1.4rem;
    border-left: 4px solid #00d4ff;
    border-radius: 8px;
    background: rgba(0, 212, 255, 0.07);
    color: #ffffff;
}

.n10-custom-html-content .ql-align-center {
    text-align: center;
}

.n10-custom-html-content .ql-align-right {
    text-align: right;
}

.n10-custom-html-content .ql-align-justify {
    text-align: justify;
}

.back-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.back-top:hover {
    box-shadow: 0 18px 42px rgba(0, 200, 234, 0.52), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transform: translateY(-2px) scale(1);
}

.maintenance-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 50% 18%, rgba(0, 212, 255, 0.18), transparent 32rem),
        radial-gradient(circle at 18% 80%, rgba(230, 50, 58, 0.18), transparent 26rem),
        #041d33;
}

.maintenance-page {
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding: 2rem;
}

.maintenance-panel {
    width: min(680px, 100%);
    padding: 3rem;
    border: 1px solid rgba(0, 212, 255, 0.22);
    border-radius: 8px;
    background: rgba(5, 28, 48, 0.72);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    text-align: center;
}

.maintenance-panel img {
    width: min(250px, 82%);
    margin-bottom: 2rem;
    filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.34));
}

.maintenance-panel span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 0.9rem;
    border: 1px solid rgba(0, 212, 255, 0.24);
    border-radius: 999px;
    background: rgba(0, 212, 255, 0.06);
    color: #00d4ff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.maintenance-panel h1 {
    margin: 1.3rem 0 0;
    color: #ffffff;
    font-size: clamp(2.1rem, 6vw, 4rem);
    font-weight: 500;
    line-height: 1.08;
}

.maintenance-panel p {
    margin: 1.2rem auto 0;
    max-width: 520px;
    color: #a8bed5;
    font-size: 1.08rem;
    line-height: 1.7;
}

.maintenance-panel a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin-top: 1.8rem;
    padding: 0 1.2rem;
    border-radius: 8px;
    background: #1b84ff;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
}

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

    .news-featured-card {
        grid-template-columns: 1fr;
    }

    .news-featured-media,
    .news-featured-media img {
        min-height: 240px;
    }

    .site-header {
        grid-template-columns: 1fr auto auto;
        padding: 1rem;
        gap: 0.75rem;
    }

    .site-menu-toggle {
        display: grid;
        align-content: center;
        order: 2;
    }

    .site-access {
        order: 3;
    }

    .site-nav {
        order: 4;
        grid-column: 1 / -1;
        display: none;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        max-height: calc(100vh - 96px);
        overflow-y: auto;
        padding: 0.65rem;
        border: 1px solid rgba(0, 212, 255, 0.18);
        border-radius: 12px;
        background: rgba(4, 29, 51, 0.98);
        box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
    }

    .site-nav.is-open {
        display: grid;
    }

    .site-nav a,
    .site-nav-parent {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 42px;
        padding: 0.72rem 0.8rem;
        border-radius: 10px;
        font-size: 0.98rem;
    }

    .site-nav a:hover {
        background: rgba(0, 212, 255, 0.08);
    }

    .site-nav-group {
        padding: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.055);
    }

    .site-nav-group:first-of-type {
        border-top: 0;
    }

    .site-nav-parent span {
        transform: rotate(45deg);
    }

    .site-nav-group:hover .site-nav-parent span,
    .site-nav-group:focus-within .site-nav-parent span {
        transform: rotate(45deg);
    }

    .site-dropdown {
        position: static;
        display: none;
        grid-template-columns: 1fr;
        min-width: 0;
        margin: 0 0 0.35rem;
        padding: 0 0 0.2rem 0.9rem;
        border: 0;
        border-left: 1px solid rgba(0, 212, 255, 0.18);
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .site-nav-group:hover .site-dropdown,
    .site-nav-group:focus-within .site-dropdown,
    .site-nav-group.is-open .site-dropdown {
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .site-nav-group.is-open .site-dropdown {
        display: grid;
    }

    .site-nav-group.is-open .site-nav-parent {
        color: #00d4ff;
        background: rgba(0, 212, 255, 0.08);
    }

    .site-nav-group.is-open .site-nav-parent span {
        transform: rotate(225deg) translate(-2px, -1px);
    }

    .site-dropdown::before {
        display: none;
    }

    .site-dropdown-wide {
        min-width: 0;
        column-gap: 0;
    }

    .site-dropdown a {
        min-height: 36px;
        padding: 0.44rem 0.7rem 0.44rem 1rem;
        color: rgba(255, 255, 255, 0.68);
        font-size: 0.9rem;
        border-radius: 8px;
        letter-spacing: 0;
    }

    .site-dropdown a::before {
        left: 0.25rem;
        width: 4px;
        height: 4px;
    }

    .site-dropdown a::after {
        display: none;
    }

    .site-dropdown a:hover {
        background: rgba(0, 212, 255, 0.055);
        padding-left: 1rem;
    }

    .site-footer,
    .site-header {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .site-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .site-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 720px) {
    .news-index,
    .news-detail {
        padding: 3.5rem 0;
    }

    .news-index-hero {
        margin-top: -3.5rem;
        padding: 4.5rem 1rem 3rem;
    }

    .news-featured-media,
    .news-featured-media img {
        min-height: 220px;
    }

    .news-index-grid {
        grid-template-columns: 1fr;
    }

    .news-featured-card {
        margin-bottom: 1.2rem;
    }

    .news-detail-head.has-news-image {
        min-height: 380px;
        padding: 2rem 1.2rem;
        border-radius: 12px;
    }

    .news-detail-byline {
        flex-direction: column;
        gap: 0.45rem;
    }

    .news-index h1,
    .news-detail h1 {
        font-size: 2.05rem;
    }

    .site-logo img {
        width: 155px;
    }

    .site-access {
        min-height: 38px;
        padding: 0 0.8rem;
        font-size: 0.82rem;
    }

    .teknet-dialog {
        grid-template-columns: 1fr;
        width: min(430px, 100%);
        max-height: 92vh;
        overflow-y: auto;
    }

    .teknet-head,
    .teknet-form,
    .teknet-foot {
        grid-column: 1;
    }

    .teknet-head {
        grid-row: auto;
        min-height: auto;
        padding-top: 1.6rem;
        text-align: center;
    }

    .teknet-head h2 {
        margin-top: 1.4rem;
        font-size: 1.55rem;
    }

    .teknet-form {
        padding-left: 1.1rem;
        padding-right: 1.1rem;
    }

    .teknet-foot {
        padding-left: 1.1rem;
        padding-right: 1.1rem;
    }
}

@media (max-width: 920px) and (min-width: 721px) {
    .news-index-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
