
    :root {
      --red: #d7193f;
      --deep-red: #8d1230;
      --ink: #101820;
      --muted: #64717f;
      --line: rgba(16, 24, 32, 0.1);
      --cream: #f4fbfb;
      --paper: #ffffff;
      --navy: #12304a;
      --blue: #00a6b4;
      --green: #0d8f78;
      --gold: #f0b43c;
      --plum: #6e3bd7;
      --sky: #d9f6f7;
      --shadow: 0 18px 48px rgba(18, 48, 74, 0.13);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--ink);
      font-family: Manrope, Arial, sans-serif;
      background:
        radial-gradient(circle at 12% 8%, rgba(0, 166, 180, 0.24), transparent 24rem),
        radial-gradient(circle at 88% 18%, rgba(240, 180, 60, 0.2), transparent 22rem),
        linear-gradient(135deg, #f8ffff 0%, #eef9f8 42%, #f6f2ff 100%);
      letter-spacing: 0;
    }

    img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button {
      font: inherit;
    }

    .progress {
      position: fixed;
      inset: 0 auto auto 0;
      z-index: 30;
      width: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--blue), var(--gold), var(--red), var(--plum));
      box-shadow: 0 0 18px rgba(0, 166, 180, 0.38);
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 20;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.75rem clamp(1rem, 4vw, 4rem);
      border-bottom: 1px solid rgba(255, 255, 255, 0.18);
      color: #fff;
      background: rgba(10, 22, 34, 0.84);
      backdrop-filter: blur(18px);
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      min-width: 10rem;
      font-weight: 800;
    }

    .brand-mark {
      display: grid;
      place-items: center;
      min-width: 2.3rem;
      height: 2.3rem;
      padding: 0 0.45rem;
      border-radius: 8px;
      background: linear-gradient(135deg, #00b8c7, #d7193f 54%, #f0b43c);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
      font-size: 0.82rem;
      line-height: 1;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: clamp(0.7rem, 2vw, 1.8rem);
      overflow-x: auto;
      white-space: nowrap;
      scrollbar-width: none;
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.82);
    }

    .nav::-webkit-scrollbar {
      display: none;
    }

    .edition {
      display: flex;
      align-items: center;
      gap: 0.45rem;
      white-space: nowrap;
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.78);
    }

    .edition::before {
      content: "";
      width: 0.5rem;
      height: 0.5rem;
      border-radius: 50%;
      background: #39d28f;
      box-shadow: 0 0 0 5px rgba(57, 210, 143, 0.18);
    }

    .hero {
      position: relative;
      min-height: 92svh;
      display: grid;
      align-items: end;
      overflow: hidden;
      color: #fff;
      background: #101820;
    }

    .hero-media {
      position: absolute;
      inset: 0;
    }

    .hero-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(7, 18, 28, 0.14) 0%, rgba(7, 18, 28, 0.42) 44%, rgba(7, 18, 28, 0.91) 100%),
        linear-gradient(90deg, rgba(0, 104, 122, 0.72), transparent 48%),
        linear-gradient(135deg, transparent 38%, rgba(215, 25, 63, 0.36) 100%);
    }

    .hero-content {
      position: relative;
      z-index: 1;
      width: min(1180px, calc(100% - 2rem));
      margin: 0 auto;
      padding: 8rem 0 2.2rem;
    }

    .issue-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.65rem;
      margin-bottom: 1rem;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      min-height: 2rem;
      padding: 0.4rem 0.75rem;
      border: 1px solid rgba(255, 255, 255, 0.28);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.14);
      color: rgba(255, 255, 255, 0.9);
      font-size: 0.73rem;
      font-weight: 700;
      backdrop-filter: blur(12px);
    }

    h1 {
      max-width: 880px;
      margin: 0;
      font-family: "Source Serif 4", Georgia, serif;
      font-size: clamp(3rem, 8.5vw, 7.5rem);
      line-height: 0.9;
      letter-spacing: 0;
      text-wrap: balance;
    }

    .lead {
      max-width: 760px;
      margin: 1.1rem 0 0;
      color: rgba(255, 255, 255, 0.86);
      font-size: clamp(1rem, 2vw, 1.35rem);
      line-height: 1.65;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 360px;
      gap: 1rem;
      align-items: end;
      margin-top: 2.2rem;
    }

    .ticker {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0.75rem;
    }

    .ticker-item,
    .mini-panel {
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.13);
      backdrop-filter: blur(16px);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
    }

    .ticker-item {
      padding: 0.9rem;
    }

    .ticker-item span {
      display: block;
      color: rgba(255, 255, 255, 0.68);
      font-size: 0.72rem;
    }

    .ticker-item strong {
      display: block;
      margin-top: 0.25rem;
      font-size: 1.22rem;
    }

    .ticker-item em {
      display: block;
      margin-top: 0.15rem;
      color: #92e0b9;
      font-style: normal;
      font-size: 0.72rem;
      font-weight: 700;
    }

    .mini-panel {
      padding: 1rem;
    }

    .mini-panel h2 {
      margin: 0 0 0.75rem;
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.72);
      text-transform: uppercase;
    }

    .mini-panel ol {
      display: grid;
      gap: 0.75rem;
      margin: 0;
      padding-left: 1.2rem;
    }

    .mini-panel li {
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.35;
      font-size: 0.9rem;
    }

    main {
      overflow: hidden;
    }

    .section {
      width: min(1180px, calc(100% - 2rem));
      margin: 0 auto;
      padding: clamp(2.5rem, 7vw, 5.5rem) 0;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 2rem;
      margin-bottom: 1.3rem;
    }

    .eyebrow {
      margin: 0 0 0.4rem;
      color: var(--red);
      font-size: 0.75rem;
      font-weight: 800;
      text-transform: uppercase;
    }

    h2 {
      margin: 0;
      font-family: "Source Serif 4", Georgia, serif;
      font-size: clamp(2rem, 4vw, 4rem);
      line-height: 1;
      letter-spacing: 0;
    }

    .section-copy {
      max-width: 440px;
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
      font-size: 0.96rem;
    }

    .story-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
      gap: 1rem;
      align-items: stretch;
    }

    .main-card,
    .story-card,
    .brief-card,
    .data-card,
    .quote-card,
    .timeline-card,
    .market-card,
    .portrait-card {
      border: 1px solid var(--line);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.9);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .main-card {
      display: grid;
      min-height: 620px;
      color: #fff;
      background: #14161b;
    }

    .main-card .image {
      min-height: 360px;
    }

    .image {
      position: relative;
      overflow: hidden;
      background: #d7d7d7;
    }

    .image.broken img,
    .hero-media.broken img,
    .city-card.broken img {
      opacity: 0;
    }

    .image.broken,
    .hero-media.broken,
    .city-card.broken {
      background:
        linear-gradient(135deg, rgba(182, 18, 37, 0.86), rgba(16, 36, 61, 0.9)),
        radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.28), transparent 14rem),
        linear-gradient(120deg, #b61225, #10243d 58%, #17745c);
    }

    .image.broken::before,
    .hero-media.broken::before,
    .city-card.broken::before {
      content: attr(data-topic);
      position: absolute;
      inset: auto 1rem 1rem 1rem;
      z-index: 1;
      color: #fff;
      font-family: "Source Serif 4", Georgia, serif;
      font-size: clamp(1.5rem, 6vw, 3rem);
      font-weight: 800;
      line-height: 1;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      width: fit-content;
      min-height: 1.8rem;
      padding: 0.35rem 0.65rem;
      border-radius: 999px;
      color: #fff;
      background: var(--red);
      font-size: 0.68rem;
      font-weight: 800;
      text-transform: uppercase;
    }

    .main-card .content {
      padding: clamp(1.1rem, 3vw, 2rem);
      background:
        linear-gradient(0deg, rgba(16, 24, 32, 0.98), rgba(16, 24, 32, 0.7)),
        linear-gradient(135deg, rgba(0, 166, 180, 0.52), transparent 52%, rgba(215, 25, 63, 0.32));
    }

    .main-card h3,
    .story-card h3,
    .brief-card h3,
    .market-card h3,
    .portrait-card h3 {
      margin: 0.75rem 0 0;
      font-family: "Source Serif 4", Georgia, serif;
      line-height: 1.05;
      letter-spacing: 0;
    }

    .main-card h3 {
      font-size: clamp(2rem, 4vw, 4.3rem);
    }

    .main-card p,
    .story-card p,
    .brief-card p,
    .market-card p,
    .portrait-card p {
      margin: 0.85rem 0 0;
      line-height: 1.68;
    }

    .main-card p {
      color: rgba(255, 255, 255, 0.82);
      font-size: 1.02rem;
    }

    .meta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem 1rem;
      margin-top: 1.1rem;
      color: rgba(255, 255, 255, 0.66);
      font-size: 0.78rem;
    }

    .side-stack {
      display: grid;
      gap: 1rem;
    }

    .story-card .image,
    .brief-card .image {
      height: 210px;
    }

    .story-card .content,
    .brief-card .content,
    .market-card .content,
    .portrait-card .content {
      padding: 1rem;
    }

    .story-card h3,
    .brief-card h3 {
      font-size: 1.55rem;
    }

    .story-card p,
    .brief-card p,
    .market-card p,
    .portrait-card p {
      color: var(--muted);
      font-size: 0.92rem;
    }

    .policy-band {
      background:
        linear-gradient(135deg, rgba(13, 143, 120, 0.94), rgba(18, 48, 74, 0.94) 52%, rgba(110, 59, 215, 0.88)),
        url("../img/turkey-finance-14.jpg") center/cover;
      color: #fff;
    }

    .policy-wrap {
      width: min(1180px, calc(100% - 2rem));
      margin: 0 auto;
      padding: clamp(2.8rem, 7vw, 6rem) 0;
    }

    .policy-layout {
      display: grid;
      grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
      gap: 1rem;
      align-items: start;
    }

    .policy-title {
      position: sticky;
      top: 5rem;
    }

    .policy-title .eyebrow {
      color: #9ff4ef;
    }

    .policy-title p {
      max-width: 430px;
      color: rgba(255, 255, 255, 0.75);
      line-height: 1.7;
    }

    .policy-cards {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
    }

    .data-card {
      padding: 1.1rem;
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.18);
      color: #fff;
      backdrop-filter: blur(14px);
    }

    .data-card strong {
      display: block;
      font-size: clamp(2.15rem, 5vw, 4.4rem);
      line-height: 0.95;
      font-family: "Source Serif 4", Georgia, serif;
    }

    .data-card span {
      display: block;
      margin-top: 0.55rem;
      color: rgba(255, 255, 255, 0.72);
      font-size: 0.8rem;
      font-weight: 800;
      text-transform: uppercase;
    }

    .data-card p {
      margin: 0.8rem 0 0;
      color: rgba(255, 255, 255, 0.82);
      line-height: 1.62;
    }

    .news-wall {
      display: grid;
      grid-template-columns: repeat(12, minmax(0, 1fr));
      gap: 1rem;
    }

    .metric-board {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1rem;
    }

    .metric-card {
      position: relative;
      min-height: 220px;
      padding: 1rem;
      border: 1px solid var(--line);
      border-radius: 8px;
      overflow: hidden;
      background: #fff;
      box-shadow: var(--shadow);
    }

    .metric-card::after {
      content: "";
      position: absolute;
      inset: auto -2rem -3.5rem auto;
      width: 9rem;
      height: 9rem;
      border-radius: 50%;
      background: rgba(0, 166, 180, 0.14);
    }

    .metric-card:nth-child(2)::after {
      background: rgba(240, 180, 60, 0.22);
    }

    .metric-card:nth-child(3)::after {
      background: rgba(215, 25, 63, 0.13);
    }

    .metric-card:nth-child(4)::after {
      background: rgba(110, 59, 215, 0.13);
    }

    .metric-card span {
      display: block;
      color: var(--muted);
      font-size: 0.75rem;
      font-weight: 900;
      text-transform: uppercase;
    }

    .metric-card strong {
      display: block;
      margin-top: 0.75rem;
      font-family: "Source Serif 4", Georgia, serif;
      font-size: clamp(2.5rem, 6vw, 4.8rem);
      line-height: 0.9;
      color: var(--navy);
    }

    .metric-card em {
      display: inline-flex;
      margin-top: 0.7rem;
      padding: 0.35rem 0.55rem;
      border-radius: 999px;
      color: #fff;
      background: var(--green);
      font-style: normal;
      font-size: 0.72rem;
      font-weight: 800;
    }

    .metric-card p {
      position: relative;
      z-index: 1;
      margin: 0.9rem 0 0;
      color: #35404b;
      line-height: 1.62;
      font-size: 0.9rem;
    }

    .brief-card:nth-child(1) {
      grid-column: span 5;
    }

    .brief-card:nth-child(2) {
      grid-column: span 4;
    }

    .brief-card:nth-child(3) {
      grid-column: span 3;
    }

    .brief-card:nth-child(4) {
      grid-column: span 4;
    }

    .brief-card:nth-child(5) {
      grid-column: span 4;
    }

    .brief-card:nth-child(6) {
      grid-column: span 4;
    }

    .brief-card:nth-child(7),
    .brief-card:nth-child(8),
    .brief-card:nth-child(9),
    .brief-card:nth-child(10) {
      grid-column: span 3;
    }

    .brief-card {
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .brief-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 26px 60px rgba(16, 36, 61, 0.22);
    }

    .brief-card .tag {
      background: var(--navy);
    }

    .brief-card:nth-child(2n) .tag {
      background: var(--green);
    }

    .brief-card:nth-child(3n) .tag {
      background: var(--gold);
    }

    .brief-card:nth-child(4n) .tag {
      background: var(--blue);
    }

    .city-grid {
      display: grid;
      grid-template-columns: repeat(12, minmax(0, 1fr));
      gap: 1rem;
    }

    .city-card {
      position: relative;
      min-height: 360px;
      grid-column: span 4;
      border-radius: 8px;
      overflow: hidden;
      color: #fff;
      box-shadow: var(--shadow);
      background: #101820;
    }

    .city-card:first-child {
      grid-column: span 6;
    }

    .city-card:nth-child(2) {
      grid-column: span 6;
    }

    .city-card img {
      position: absolute;
      inset: 0;
    }

    .city-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(16, 24, 32, 0.12), rgba(16, 24, 32, 0.84));
    }

    .city-card .content {
      position: absolute;
      inset: auto 0 0;
      z-index: 1;
      padding: 1.1rem;
    }

    .city-card h3 {
      margin: 0.7rem 0 0;
      font-family: "Source Serif 4", Georgia, serif;
      font-size: clamp(1.8rem, 4vw, 3.4rem);
      line-height: 1;
    }

    .city-card p {
      max-width: 640px;
      margin: 0.75rem 0 0;
      color: rgba(255, 255, 255, 0.82);
      line-height: 1.62;
    }

    .pulse-layout {
      display: grid;
      grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
      gap: 1rem;
      align-items: start;
    }

    .pulse-lead {
      padding: clamp(1.2rem, 3vw, 2rem);
      border-radius: 8px;
      color: #fff;
      background: linear-gradient(135deg, var(--navy), var(--blue));
      box-shadow: var(--shadow);
    }

    .pulse-lead h3 {
      margin: 0;
      font-family: "Source Serif 4", Georgia, serif;
      font-size: clamp(2rem, 4vw, 3.8rem);
      line-height: 1;
    }

    .pulse-lead p {
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.72;
    }

    .pulse-list {
      display: grid;
      gap: 0.8rem;
    }

    .pulse-item {
      display: grid;
      grid-template-columns: 6.5rem minmax(0, 1fr);
      gap: 1rem;
      align-items: center;
      padding: 0.9rem;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.9);
      box-shadow: 0 12px 28px rgba(18, 48, 74, 0.09);
    }

    .pulse-item strong {
      display: grid;
      place-items: center;
      min-height: 4.3rem;
      border-radius: 8px;
      color: #fff;
      background: linear-gradient(135deg, var(--red), var(--gold));
      font-size: 1.3rem;
    }

    .pulse-item:nth-child(2n) strong {
      background: linear-gradient(135deg, var(--blue), var(--green));
    }

    .pulse-item h3 {
      margin: 0;
      font-size: 1.05rem;
      line-height: 1.25;
    }

    .pulse-item p {
      margin: 0.4rem 0 0;
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.58;
    }

    .magazine-strip {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 1rem;
      align-items: stretch;
    }

    .feature-panel {
      position: relative;
      min-height: 520px;
      border-radius: 8px;
      overflow: hidden;
      color: #fff;
      background: #101820;
      box-shadow: var(--shadow);
    }

    .feature-panel img {
      position: absolute;
      inset: 0;
    }

    .feature-panel::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(16, 24, 32, 0.06), rgba(16, 24, 32, 0.92)),
        linear-gradient(90deg, rgba(0, 166, 180, 0.45), transparent 55%);
    }

    .feature-panel .content {
      position: absolute;
      inset: auto 0 0;
      z-index: 1;
      padding: clamp(1.2rem, 3vw, 2rem);
    }

    .feature-panel h3 {
      margin: 0.8rem 0 0;
      font-family: "Source Serif 4", Georgia, serif;
      font-size: clamp(2.4rem, 5vw, 5rem);
      line-height: 0.92;
    }

    .feature-panel p {
      max-width: 680px;
      color: rgba(255, 255, 255, 0.82);
      line-height: 1.7;
    }

    .stack-list {
      display: grid;
      gap: 0.8rem;
    }

    .stack-card {
      padding: 1rem;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.92);
      box-shadow: 0 12px 28px rgba(18, 48, 74, 0.09);
    }

    .stack-card h3 {
      margin: 0.65rem 0 0;
      font-size: 1.25rem;
      line-height: 1.16;
    }

    .stack-card p {
      margin: 0.65rem 0 0;
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.6;
    }

    .comparison-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 0.75rem;
    }

    .compare-card {
      min-height: 210px;
      padding: 1rem;
      border-radius: 8px;
      color: #fff;
      background: linear-gradient(150deg, var(--navy), var(--blue));
      box-shadow: var(--shadow);
    }

    .compare-card:nth-child(2) {
      background: linear-gradient(150deg, var(--green), #0f5f64);
    }

    .compare-card:nth-child(3) {
      background: linear-gradient(150deg, var(--red), #8d1230);
    }

    .compare-card:nth-child(4) {
      background: linear-gradient(150deg, var(--gold), #9c6a08);
    }

    .compare-card:nth-child(5) {
      background: linear-gradient(150deg, var(--plum), #25315f);
    }

    .compare-card span {
      font-size: 0.75rem;
      font-weight: 900;
      text-transform: uppercase;
      opacity: 0.8;
    }

    .compare-card h3 {
      margin: 1rem 0 0;
      font-size: 1.55rem;
      line-height: 1;
    }

    .compare-card p {
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.86rem;
      line-height: 1.55;
    }

    .quote-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
    }

    .quote-tile {
      padding: 1.1rem;
      border-radius: 8px;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .quote-tile strong {
      display: block;
      font-family: "Source Serif 4", Georgia, serif;
      font-size: clamp(1.45rem, 3vw, 2.4rem);
      line-height: 1.05;
    }

    .quote-tile p {
      color: var(--muted);
      line-height: 1.65;
      font-size: 0.92rem;
    }

    .deep-read {
      background:
        linear-gradient(180deg, rgba(217, 246, 247, 0.18), rgba(255, 255, 255, 0.9)),
        radial-gradient(circle at right top, rgba(110, 59, 215, 0.11), transparent 24rem);
    }

    .article-shell {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 320px;
      gap: 1rem;
      align-items: start;
    }

    .market-card {
      position: sticky;
      top: 5rem;
    }

    .article {
      padding: clamp(1.1rem, 3vw, 2.2rem);
      border: 1px solid var(--line);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.93);
      box-shadow: var(--shadow);
    }

    .article h3 {
      margin: 0;
      font-family: "Source Serif 4", Georgia, serif;
      font-size: clamp(2rem, 4vw, 4.2rem);
      line-height: 1.02;
    }

    .article .standfirst {
      color: var(--navy);
      font-size: 1.2rem;
      font-weight: 700;
      line-height: 1.68;
    }

    .article p {
      color: #333842;
      font-size: 1rem;
      line-height: 1.82;
    }

    .article figure {
      margin: 1.4rem 0;
      overflow: hidden;
      border-radius: 8px;
      border: 1px solid var(--line);
      background: #fff;
    }

    .article figure img {
      height: 340px;
    }

    .article figcaption {
      padding: 0.8rem 1rem;
      color: var(--muted);
      font-size: 0.78rem;
    }

    .quote-card {
      margin: 1.4rem 0;
      padding: 1.2rem;
      border-left: 5px solid var(--red);
      background: #fff;
    }

    .quote-card strong {
      display: block;
      font-family: "Source Serif 4", Georgia, serif;
      font-size: clamp(1.6rem, 4vw, 2.7rem);
      line-height: 1.08;
    }

    .quote-card span {
      display: block;
      margin-top: 0.7rem;
      color: var(--muted);
      font-size: 0.84rem;
    }

    .read-more {
      display: grid;
      gap: 1rem;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease;
    }

    .read-more.open {
      max-height: 5200px;
    }

    .expand-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 2.85rem;
      margin-top: 0.5rem;
      padding: 0 1.1rem;
      border: 0;
      border-radius: 8px;
      color: #fff;
      background: linear-gradient(135deg, var(--blue), var(--plum));
      font-weight: 800;
      cursor: pointer;
    }

    .market-card {
      background: linear-gradient(160deg, #101820, #12304a 68%, #0d8f78);
      color: #fff;
    }

    .market-card .content {
      padding: 1rem;
    }

    .market-list {
      display: grid;
      gap: 0.65rem;
      margin-top: 1rem;
    }

    .market-row {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.75rem;
      border-radius: 7px;
      background: rgba(255, 255, 255, 0.08);
      color: rgba(255, 255, 255, 0.78);
      font-size: 0.82rem;
    }

    .market-row strong {
      color: #fff;
    }

    .market-row.up strong {
      color: #94e0ba;
    }

    .market-row.down strong {
      color: #ff9aa7;
    }

    .timeline {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1rem;
    }

    .timeline-card {
      padding: 1rem;
      background: #ffffff;
    }

    .timeline-card time {
      color: var(--red);
      font-size: 0.76rem;
      font-weight: 900;
    }

    .timeline-card h3 {
      margin: 0.65rem 0 0;
      font-size: 1.2rem;
      line-height: 1.15;
    }

    .timeline-card p {
      margin: 0.65rem 0 0;
      color: var(--muted);
      font-size: 0.88rem;
      line-height: 1.62;
    }

    .portraits {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
    }

    .portrait-card .image {
      height: 260px;
    }

    .portrait-card h3 {
      font-size: 1.45rem;
    }

    .tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      margin-bottom: 1rem;
    }

    .tab-btn {
      min-height: 2.5rem;
      padding: 0 0.9rem;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.82);
      color: var(--muted);
      font-weight: 800;
      cursor: pointer;
    }

    .tab-btn.active {
      color: #fff;
      border-color: transparent;
      background: linear-gradient(135deg, var(--blue), var(--navy));
    }

    .tab-panel {
      display: none;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
      gap: 1rem;
      align-items: stretch;
    }

    .tab-panel.active {
      display: grid;
    }

    .tab-panel .image {
      min-height: 420px;
      border-radius: 8px;
      box-shadow: var(--shadow);
    }

    .tab-copy {
      padding: clamp(1.1rem, 3vw, 2rem);
      border: 1px solid var(--line);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.93);
      box-shadow: var(--shadow);
    }

    .tab-copy h3 {
      margin: 0;
      font-family: "Source Serif 4", Georgia, serif;
      font-size: clamp(1.9rem, 4vw, 3.6rem);
      line-height: 1;
    }

    .tab-copy p {
      color: #333842;
      line-height: 1.75;
    }

    .tab-copy ul {
      display: grid;
      gap: 0.7rem;
      margin: 1rem 0 0;
      padding: 0;
      list-style: none;
    }

    .tab-copy li {
      padding: 0.85rem;
      border-radius: 8px;
      background: #fff;
      color: var(--muted);
      line-height: 1.55;
      box-shadow: 0 10px 24px rgba(16, 36, 61, 0.07);
    }

    .closing {
      padding: clamp(3rem, 7vw, 5rem) 0;
      color: #fff;
      background:
        linear-gradient(90deg, rgba(18, 48, 74, 0.92), rgba(0, 166, 180, 0.74), rgba(215, 25, 63, 0.78)),
        url("../img/turkey-finance-02.jpg") center/cover;
    }

    .closing-inner {
      width: min(1180px, calc(100% - 2rem));
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
      gap: 1rem;
      align-items: end;
    }

    .closing h2 {
      max-width: 780px;
    }

    .closing p {
      color: rgba(255, 255, 255, 0.78);
      line-height: 1.72;
    }

    .rank-list {
      display: grid;
      gap: 0.6rem;
    }

    .rank-list a {
      display: flex;
      gap: 0.8rem;
      padding: 0.8rem;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.86);
      backdrop-filter: blur(10px);
    }

    .rank-list strong {
      color: #fff;
    }

    footer {
      padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 4vw, 4rem);
      color: rgba(255, 255, 255, 0.68);
      background: #101820;
      font-size: 0.78rem;
    }

    .footer-inner {
      width: min(1180px, 100%);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .footer-brand {
      display: grid;
      gap: 0.25rem;
    }

    .footer-brand strong {
      color: #fff;
      font-size: 1rem;
    }

    .footer-actions {
      display: flex;
      gap: 0.55rem;
      flex-wrap: wrap;
    }

    .footer-actions button {
      min-height: 2.35rem;
      padding: 0 0.8rem;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 8px;
      color: rgba(255, 255, 255, 0.86);
      background: rgba(255, 255, 255, 0.08);
      cursor: pointer;
    }

    .footer-actions button:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.14);
    }

    .modal {
      position: fixed;
      inset: 0;
      z-index: 50;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 1rem;
      background: rgba(10, 22, 34, 0.74);
      backdrop-filter: blur(10px);
    }

    .modal.open {
      display: flex;
    }

    .modal-panel {
      width: min(620px, 100%);
      max-height: min(78vh, 720px);
      overflow: auto;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      background: #fff;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
    }

    .modal-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1rem 1rem 0;
    }

    .modal-title {
      margin: 0;
      font-family: "Source Serif 4", Georgia, serif;
      font-size: clamp(1.8rem, 5vw, 3rem);
      line-height: 1;
    }

    .modal-close {
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      width: 2.4rem;
      height: 2.4rem;
      border: 0;
      border-radius: 8px;
      color: #fff;
      background: var(--navy);
      cursor: pointer;
      font-size: 1.3rem;
    }

    .modal-body {
      padding: 0.8rem 1rem 1.2rem;
      color: #33404c;
      line-height: 1.72;
    }

    .modal-body p {
      margin: 0.8rem 0 0;
    }

    .modal-body strong {
      color: var(--navy);
    }

    @media (max-width: 980px) {
      .edition {
        display: none;
      }

      .hero-grid,
      .story-grid,
      .magazine-strip,
      .policy-layout,
      .article-shell,
      .tab-panel,
      .closing-inner {
        grid-template-columns: 1fr;
      }

      .ticker {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .policy-title,
      .market-card {
        position: static;
      }

      .article-shell {
        gap: 1rem;
      }

      .news-wall,
      .metric-board,
      .city-grid,
      .comparison-grid,
      .quote-grid,
      .portraits,
      .timeline,
      .policy-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .city-card,
      .city-card:first-child,
      .city-card:nth-child(2) {
        grid-column: auto;
      }

      .pulse-layout {
        grid-template-columns: 1fr;
      }

      .brief-card:nth-child(n) {
        grid-column: auto;
      }
    }

    @media (max-width: 640px) {
      .topbar {
        padding: 0.65rem 0.9rem;
      }

      .brand {
        min-width: auto;
      }

      .brand span:last-child {
        display: none;
      }

      .nav {
        display: none;
      }

      .edition {
        display: flex;
        margin-left: auto;
        font-size: 0.72rem;
      }

      .hero {
        min-height: 96svh;
      }

      .hero-content,
      .section,
      .policy-wrap,
      .closing-inner {
        width: min(100% - 1rem, 1180px);
      }

      .hero-content {
        padding-bottom: 1rem;
      }

      h1 {
        font-size: clamp(2.8rem, 15vw, 4.7rem);
      }

      .lead {
        font-size: 0.98rem;
        line-height: 1.55;
      }

      .ticker {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
      }

      .ticker-item {
        padding: 0.75rem;
      }

      .ticker-item strong {
        font-size: 1.02rem;
      }

      .mini-panel {
        display: none;
      }

      .section-head {
        display: block;
      }

      .section-copy {
        margin-top: 0.75rem;
      }

      .main-card {
        min-height: auto;
      }

      .main-card .image,
      .article figure img,
      .tab-panel .image {
        min-height: 260px;
        height: 260px;
      }

      .story-card .image,
      .brief-card .image,
      .portrait-card .image {
        height: 190px;
      }

      .news-wall,
      .metric-board,
      .city-grid,
      .comparison-grid,
      .quote-grid,
      .portraits,
      .timeline,
      .policy-cards {
        grid-template-columns: 1fr;
      }

      .metric-card {
        min-height: 190px;
      }

      .city-card {
        min-height: 320px;
      }

      .feature-panel {
        min-height: 420px;
      }

      .compare-card {
        min-height: auto;
      }

      .pulse-item {
        grid-template-columns: 4.6rem minmax(0, 1fr);
        gap: 0.75rem;
      }

      .pulse-item strong {
        min-height: 3.7rem;
      }

      .article {
        padding: 1rem;
      }

      .article p {
        font-size: 0.96rem;
        line-height: 1.75;
      }

      .tab-copy li,
      .market-row {
        font-size: 0.82rem;
      }
    }
  