@layer reset, base, layout, responsive;

@layer reset {
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body, h1, h2, h3, p, ul, ol, blockquote { margin: 0; }
  img { display: block; max-width: 100%; }
  button, a { font: inherit; }
}

@layer base {
  :root {
    --blood: #98001d;
    --deep: #560010;
    --ink: #16090a;
    --paper: #fbf7ef;
    --bone: #f3eee4;
    --muted: #6d625a;
    --line: rgba(22,9,10,.18);
    --display: "Arial Black", "Arial Narrow", "Segoe UI", sans-serif;
    --body: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
    --max: 1260px;
    --gutter: clamp(20px, 5vw, 72px);
  }
  body { min-width: 320px; background: var(--paper); color: var(--ink); font-family: var(--body); line-height: 1.65; -webkit-font-smoothing: antialiased; }
  a { color: inherit; text-decoration: none; }
  ::selection { background: var(--blood); color: #fff; }
  :focus-visible { outline: 3px solid #d50a2e; outline-offset: 4px; }
  .skip-link { position: fixed; z-index: 9999; top: 10px; left: 10px; padding: 10px 16px; background: #fff; color: var(--ink); border-radius: 99px; transform: translateY(-160%); }
  .skip-link:focus { transform: translateY(0); }
}

@layer layout {
  .editorial-header { display: flex; min-height: 82px; padding: 15px var(--gutter); align-items: center; justify-content: space-between; background: var(--paper); border-bottom: 1px solid var(--line); }
  .editorial-brand { display: flex; align-items: center; gap: 12px; font-size: 12px; font-weight: 800; line-height: 1.1; text-transform: uppercase; }
  .editorial-brand span { display: grid; width: 46px; height: 46px; place-items: center; background: var(--blood); color: #fff; border-radius: 50%; font-family: var(--display); font-size: 18px; }
  .editorial-nav { display: flex; gap: 24px; align-items: center; font-size: 12px; font-weight: 800; }
  .editorial-nav a { border-bottom: 1px solid transparent; }
  .editorial-nav a:hover { border-color: var(--blood); }
  .editorial-nav .nav-cta { padding: 10px 16px; background: var(--blood); color: #fff; border-radius: 99px; }
  .breadcrumb { max-width: var(--max); margin-inline: auto; padding: 28px var(--gutter) 0; color: var(--muted); font-size: 12px; }
  .breadcrumb a { text-decoration: underline; text-underline-offset: 3px; }
  .editorial-hero { padding: clamp(68px, 10vw, 145px) var(--gutter); background: var(--deep); color: #fff; overflow: hidden; }
  .editorial-hero > div { position: relative; max-width: var(--max); margin-inline: auto; }
  .editorial-hero > div::after { content: "ST"; position: absolute; right: -3vw; bottom: -12vw; color: rgba(255,255,255,.06); font-family: var(--display); font-size: clamp(180px, 30vw, 440px); line-height: .7; letter-spacing: -.12em; }
  .eyebrow { position: relative; z-index: 2; margin-bottom: 24px; color: #ff9aad; font-size: 10px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
  .editorial-hero h1 { position: relative; z-index: 2; max-width: 1100px; font-family: var(--display); font-size: clamp(48px, 8.7vw, 132px); line-height: .82; letter-spacing: -.075em; text-transform: uppercase; }
  .editorial-hero .lead { position: relative; z-index: 2; max-width: 750px; margin-top: 34px; color: rgba(255,255,255,.68); font-size: clamp(17px, 2vw, 23px); }
  .article-meta { position: relative; z-index: 2; display: flex; margin-top: 34px; gap: 12px 24px; flex-wrap: wrap; color: rgba(255,255,255,.72); font-size: 12px; }
  .blog-index { max-width: var(--max); margin-inline: auto; padding: clamp(65px, 9vw, 130px) var(--gutter); }
  .blog-list { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
  .blog-list article a { display: flex; min-height: 470px; padding: clamp(24px, 3vw, 44px); flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background 180ms ease, color 180ms ease; }
  .blog-list article a:hover { background: var(--blood); color: #fff; }
  .card-label { color: var(--blood); font-size: 9px; font-weight: 850; letter-spacing: .15em; }
  .blog-list article a:hover .card-label { color: #fff; }
  .blog-list h2 { margin-top: auto; padding-top: 90px; font-family: var(--display); font-size: clamp(27px, 3.3vw, 47px); line-height: .91; letter-spacing: -.055em; text-transform: uppercase; }
  .blog-list p { margin-top: 20px; color: var(--muted); font-size: 14px; }
  .blog-list article a:hover p { color: rgba(255,255,255,.92); }
  .card-link { display: block; margin-top: 35px; font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
  .article-shell { display: grid; max-width: var(--max); margin-inline: auto; padding: clamp(60px, 9vw, 126px) var(--gutter); grid-template-columns: minmax(0, 1fr) 250px; gap: 9vw; align-items: start; }
  .article-body { max-width: 780px; }
  .article-body h2 { margin: 2.1em 0 .7em; font-family: var(--display); font-size: clamp(30px, 4vw, 49px); line-height: .96; letter-spacing: -.05em; text-transform: uppercase; }
  .article-body h2:first-child { margin-top: 0; }
  .article-body h3 { margin: 1.7em 0 .5em; font-size: 20px; }
  .article-body p + p { margin-top: 1.1em; }
  .article-body ul, .article-body ol { display: grid; margin: 1.2em 0; padding-left: 1.4em; gap: .6em; }
  .article-body ul { list-style: square; }
  .article-body ol { list-style: decimal; }
  .article-body a { color: var(--blood); text-decoration: underline; text-underline-offset: 3px; }
  .article-note { margin: 32px 0; padding: 22px 24px; background: var(--bone); border-left: 4px solid var(--blood); }
  .article-cta { margin-top: 54px; padding: clamp(28px, 5vw, 54px); background: var(--blood); color: #fff; }
  .article-cta h2 { margin-top: 0; }
  .article-cta p { color: rgba(255,255,255,.72); }
  .article-cta a { display: inline-flex; margin-top: 22px; padding: 12px 18px; background: #fff; color: var(--blood); border-radius: 99px; text-decoration: none; font-weight: 850; }
  .article-aside { position: sticky; top: 30px; padding-top: 18px; border-top: 3px solid var(--blood); }
  .article-aside strong { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
  .article-aside ul { display: grid; margin-top: 16px; gap: 10px; padding: 0; list-style: none; color: var(--muted); font-size: 12px; }
  .article-aside a { text-decoration: underline; text-underline-offset: 3px; }
  .source-check { margin-bottom: 28px; color: var(--muted); font-size: 12px; }
  .legal-page { max-width: 900px; margin-inline: auto; padding: clamp(55px, 8vw, 110px) var(--gutter); }
  .legal-page h1 { margin-bottom: 28px; font-family: var(--display); font-size: clamp(34px, 5.5vw, 68px); line-height: .9; letter-spacing: -.055em; text-transform: uppercase; }
  .legal-page > .eyebrow { color: var(--blood); }
  .legal-page h2 { margin: 2em 0 .55em; font-size: 25px; }
  .legal-page p + p, .legal-page ul + p { margin-top: 1em; }
  .legal-page ul { padding-left: 1.4em; list-style: square; }
  .legal-page a { color: var(--blood); text-decoration: underline; }
  .legal-page button[data-consent-settings] { min-height: 44px; margin-top: 12px; padding: 10px 16px; background: var(--blood); color: #fff; border: 0; border-radius: 99px; cursor: pointer; font-weight: 800; }
  .editorial-footer { padding: 54px var(--gutter); background: var(--ink); color: rgba(255,255,255,.72); }
  .editorial-footer > div { display: flex; max-width: var(--max); margin-inline: auto; gap: 24px; justify-content: space-between; flex-wrap: wrap; }
  .editorial-footer a, .editorial-footer button { display: inline-flex; min-height: 24px; padding: 0; align-items: center; background: transparent; color: inherit; border: 0; border-bottom: 1px solid currentColor; cursor: pointer; }
}

@layer responsive {
  @media (max-width: 820px) {
    .editorial-nav a:not(.nav-cta) { display: none; }
    .blog-list { grid-template-columns: 1fr; }
    .blog-list article a { min-height: 380px; }
    .article-shell { grid-template-columns: 1fr; }
    .article-aside { position: static; }
  }
}

/* WordPress template integration. Kept outside the cascade layers so editor and
   plugin-generated markup remains predictable. */
.editorial-brand-mark,
.editorial-custom-logo,
.editorial-brand-logo {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  overflow: hidden;
  background: var(--blood);
  color: #fff;
  border-radius: 50%;
  font-family: var(--display);
  font-size: 18px;
}
.editorial-custom-logo img,
.editorial-brand-logo { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.editorial-brand-name { display: block; width: auto; height: auto; background: transparent; color: inherit; border-radius: 0; font-family: inherit; font-size: inherit; }
.editorial-brand-name small { font-size: .82em; }
.editorial-nav-list { display: flex; margin: 0; padding: 0; gap: 24px; align-items: center; list-style: none; }
.editorial-header-actions { display: inline-flex; gap: 10px; align-items: center; }
.editorial-nav .nav-login { display: inline-flex; min-height: 42px; padding: 9px 14px; align-items: center; background: transparent; color: var(--ink); border: 1px solid var(--line); border-radius: 99px; cursor: pointer; font: inherit; font-weight: 800; }
.editorial-nav .nav-login:disabled { cursor: not-allowed; opacity: .58; }
.editorial-nav .nav-login:not(:disabled):hover { background: var(--ink); color: #fff; }
.editorial-nav-list li { position: relative; }
.editorial-nav-list .sub-menu { position: absolute; z-index: 40; top: calc(100% + 12px); left: 50%; display: grid; min-width: 220px; margin: 0; padding: 12px; gap: 8px; visibility: hidden; opacity: 0; transform: translate(-50%, 6px); background: #fff; border: 1px solid var(--line); box-shadow: 0 18px 45px rgba(22,9,10,.12); list-style: none; transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease; }
.editorial-nav-list li:hover > .sub-menu,
.editorial-nav-list li:focus-within > .sub-menu { visibility: visible; opacity: 1; transform: translate(-50%, 0); }
.editorial-nav-list .sub-menu a { display: block; padding: 8px 10px; }
.current-menu-item > a,
.current_page_item > a { border-color: var(--blood); }
.article-shell-page { display: block; }
.article-featured { margin: 0 0 clamp(30px, 5vw, 56px); }
.article-featured img { width: 100%; height: auto; }
.article-body blockquote { margin: 2em 0; padding: 22px 26px; background: var(--bone); border-left: 4px solid var(--blood); }
.article-body figure,
.article-body .wp-block-image,
.article-body .wp-block-embed { margin: 2em 0; }
.article-body iframe { max-width: 100%; }
.article-body table { width: 100%; margin: 2em 0; border-collapse: collapse; }
.article-body th,
.article-body td { padding: 12px; border: 1px solid var(--line); text-align: left; }
.article-body input:not([type="checkbox"]):not([type="radio"]),
.article-body textarea,
.search-form input[type="search"] { width: 100%; min-height: 46px; padding: 10px 12px; background: #fff; border: 1px solid var(--line); color: var(--ink); }
.article-body button,
.article-body input[type="submit"],
.search-form input[type="submit"] { min-height: 46px; padding: 10px 18px; background: var(--blood); color: #fff; border: 0; cursor: pointer; font-weight: 800; }
.post-navigation { display: flex; margin-top: 64px; padding-top: 24px; gap: 18px; justify-content: space-between; border-top: 1px solid var(--line); }
.article-tags { margin-top: 38px; color: var(--muted); font-size: 13px; }
.article-tags strong { color: var(--ink); }
.post-navigation a { max-width: 46%; }
.article-aside p { margin: 14px 0; color: var(--muted); font-size: 13px; }
.aside-cta { color: var(--blood); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.comments-area { margin-top: 70px; padding-top: 34px; border-top: 1px solid var(--line); }
.comments-title,
.comment-reply-title { margin-bottom: 20px; font-family: var(--display); line-height: 1; text-transform: uppercase; }
.comment-list { display: grid; padding: 0; gap: 20px; list-style: none; }
.comment-body { padding: 22px; background: var(--bone); }
.comment-meta { margin-bottom: 12px; font-size: 12px; }
.comment-form { display: grid; gap: 14px; }
.comment-form p { margin: 0; }
.comment-form label { display: block; margin-bottom: 5px; font-weight: 700; }
.navigation.pagination { margin-top: 38px; }
.nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.page-numbers { display: grid; min-width: 42px; min-height: 42px; padding: 8px; place-items: center; border: 1px solid var(--line); }
.page-numbers.current { background: var(--blood); color: #fff; border-color: var(--blood); }
.content-none { padding: clamp(30px, 6vw, 72px); background: var(--bone); }
.content-none h2 { margin-bottom: 14px; font-family: var(--display); text-transform: uppercase; }
.search-form { display: flex; max-width: 620px; margin-top: 24px; gap: 8px; }
.search-form label { flex: 1; }
.editorial-footer-main { padding-bottom: 28px; }
.editorial-institutions { padding: clamp(58px, 8vw, 105px) var(--gutter); background: var(--bone); border-top: 1px solid var(--line); }
.editorial-institutions-inner { max-width: var(--max); margin-inline: auto; }
.institution-eyebrow { color: var(--blood); font-size: 10px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.editorial-institutions h2 { max-width: 900px; margin: 14px 0 38px; font-family: var(--display); font-size: clamp(34px, 5vw, 68px); line-height: .9; letter-spacing: -.06em; text-transform: uppercase; }
.editorial-institution-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.editorial-institution-card { display: grid; min-width: 0; min-height: 220px; padding: clamp(18px, 2vw, 30px); place-items: center; align-content: center; gap: 18px; background: rgba(255,255,255,.38); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background 180ms ease, transform 180ms ease; }
.editorial-institution-card:hover { z-index: 1; background: #fff; transform: translateY(-4px); }
.editorial-institution-card img { width: 100%; height: 96px; object-fit: contain; }
.editorial-institution-card span { max-width: 24ch; color: var(--muted); font-size: 9px; font-weight: 800; line-height: 1.35; letter-spacing: .08em; text-align: center; text-transform: uppercase; }
.institution-disclaimer { margin-top: 20px; color: var(--muted); font-size: 11px; }
.editorial-footer-main p { max-width: 48ch; margin-top: 8px; }
.editorial-footer-contact { display: grid; gap: 8px; align-content: start; }
.editorial-footer-meta { padding-top: 26px; border-top: 1px solid rgba(255,255,255,.15); font-size: 12px; }
.editorial-footer-meta nav { display: flex; gap: 18px; flex-wrap: wrap; }
.no-script-home { min-height: 100vh; padding: 12vw 7vw; background: #560010; color: #fff; }
.no-script-home h1 { max-width: 10ch; font: 900 clamp(48px, 11vw, 150px)/.85 var(--display); text-transform: uppercase; }
.no-script-home p { max-width: 54ch; margin-top: 24px; }
.faq-list { display: grid; margin-top: 34px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { position: relative; min-height: 64px; padding: 20px 48px 20px 0; cursor: pointer; font-weight: 800; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; top: 50%; right: 8px; color: var(--blood); font-size: 26px; transform: translateY(-50%); }
.faq-item[open] summary::after { content: "−"; }
.faq-answer { max-width: 720px; padding: 0 44px 24px 0; color: var(--muted); }
.contact-directory { padding: clamp(24px, 4vw, 44px); background: #fff; border: 1px solid var(--line); }
.contact-directory h2 { max-width: 14ch; margin: 0 0 14px; font-family: var(--display); font-size: clamp(34px, 5vw, 58px); line-height: .9; letter-spacing: -.05em; text-transform: uppercase; }
.contact-directory > p:not(.form-kicker) { max-width: 60ch; color: var(--muted); }
.contact-directory-grid { display: grid; margin-top: 28px; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.contact-directory-card { display: grid; min-width: 0; min-height: 110px; padding: 20px; align-content: space-between; gap: 14px; background: var(--bone); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background 180ms ease, color 180ms ease; }
.contact-directory-card:hover, .contact-directory-card:focus-visible { background: var(--blood); color: #fff; }
.contact-directory-card span { font-size: 10px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.contact-directory-card strong { overflow-wrap: anywhere; font-size: clamp(16px, 2vw, 22px); }
.contact-directory-meta { display: grid; margin-top: 22px; grid-template-columns: 1fr 1fr auto; gap: 20px; align-items: end; }
.contact-directory-meta p { margin: 0; color: var(--muted); }
.contact-directory-meta strong { color: var(--ink); }
.contact-directory-meta a { color: var(--blood); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.contact-form-shell { margin-top: 44px; padding: clamp(24px, 5vw, 52px); background: var(--bone); border-top: 4px solid var(--blood); }
.contact-form-shell header { margin-bottom: 28px; }
.contact-form-shell h2 { margin: 0; }
.form-kicker { margin-bottom: 10px; color: var(--blood); font-size: 10px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { min-width: 0; }
.form-field-wide { grid-column: 1 / -1; }
.form-field label { display: block; margin-bottom: 6px; font-weight: 800; }
.form-field label small { color: var(--muted); font-weight: 500; }
.salih-contact-form input:not([type="checkbox"]),
.salih-contact-form select,
.salih-contact-form textarea { width: 100%; min-height: 48px; padding: 11px 13px; background: #fff; color: var(--ink); border: 1px solid #81766e; border-radius: 0; font: inherit; }
.salih-contact-form textarea { resize: vertical; }
.salih-contact-form [aria-invalid="true"] { border: 2px solid var(--blood); }
.field-error { display: block; margin-top: 5px; color: #7b0017; font-size: 13px; font-weight: 700; }
.form-consent { display: grid; margin-top: 22px; grid-template-columns: 24px 1fr; gap: 10px; align-items: start; }
.form-consent input { width: 20px; height: 20px; margin-top: 3px; accent-color: var(--blood); }
.form-consent label { font-size: 13px; }
.form-consent a { color: var(--blood); text-decoration: underline; text-underline-offset: 3px; }
.contact-submit { min-height: 50px; margin-top: 24px; padding: 12px 20px; background: var(--blood); color: #fff; border: 0; border-radius: 99px; cursor: pointer; font-weight: 850; }
.form-notice { margin-bottom: 20px; padding: 14px 16px; border-left: 4px solid; }
.form-notice-success { background: #e5f4e9; color: #174d25; border-color: #27783d; }
.form-notice-error { background: #f7e6e9; color: #6b0014; border-color: var(--blood); }
.contact-honeypot { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.floating-whatsapp { position: fixed; z-index: 7000; right: max(18px, env(safe-area-inset-right)); bottom: max(18px, env(safe-area-inset-bottom)); display: grid; width: 58px; height: 58px; place-items: center; background: #087d42; color: #fff; border: 2px solid #fff; border-radius: 50%; box-shadow: 0 12px 34px rgba(0,0,0,.28); transition: transform 180ms ease, background 180ms ease; }
.floating-whatsapp:hover { background: #056735; transform: translateY(-3px); }
.floating-whatsapp svg { width: 30px; height: 30px; }
body:has(.consent-banner) .floating-whatsapp { bottom: 190px; }

@media (max-width: 820px) {
  .editorial-header { min-height: 72px; }
  .editorial-brand-name { max-width: 130px; }
  .editorial-nav-list { display: none; }
  .editorial-nav { gap: 10px; }
  .editorial-nav .nav-cta { display: inline-flex; }
  .editorial-footer-main,
  .editorial-footer-meta { display: grid; }
  .search-form { display: grid; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field-wide { grid-column: auto; }
  .contact-directory-grid { grid-template-columns: 1fr; }
  .contact-directory-meta { grid-template-columns: 1fr; align-items: start; }
  .editorial-institution-grid { grid-template-columns: 1fr 1fr; }
  .contact-form-shell { margin-inline: -8px; }
  body:has(.consent-banner) .floating-whatsapp { bottom: 205px; }
}

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