@import url("https://fonts.googleapis.com/css2?family=Urbanist:wght@400;500;600;700;800;900&display=swap");

:root {
  --page: #f5f6f8;
  --paper: #ffffff;
  --ink: #151515;
  --muted: #666b73;
  --line: #dde2e8;
  --accent: #c5162e;
  --accent-dark: #8f1022;
  --nav: #202733;
  --soft: #eef1f5;
  --radius: 8px;
  --shadow: 0 18px 40px rgba(21, 21, 21, 0.08);
  --font: "Urbanist", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family:
    var(--font);
  line-height: 1.45;
}

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

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.site-header,
main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  margin-top: 12px;
}

.top-strip {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--paper);
  padding: 8px 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid var(--line);
  border-bottom: 0;
  background: var(--paper);
  padding: 18px 16px 14px;
}

.brand {
  color: var(--ink);
  font-family: var(--font);
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.86;
}

.search {
  display: flex;
  align-items: center;
  width: min(100%, 340px);
  min-width: 260px;
  border: 1px solid var(--line);
  background: #f7f8fa;
  border-radius: 6px;
  overflow: hidden;
}

.search input,
.newsletter input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  outline: 0;
  padding: 11px 13px;
}

button {
  border: 0;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  padding: 11px 16px;
}

.main-nav {
  display: flex;
  gap: 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-top: 3px solid var(--ink);
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--paper);
}

.main-nav a {
  flex: 0 0 auto;
  border-right: 1px solid var(--line);
  padding: 12px 17px;
  color: var(--nav);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.main-nav a.is-active {
  color: var(--accent);
}

.main-nav a:last-child {
  border-right: 0;
}

.breaking-news {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 14px 0 22px;
  padding: 10px 12px;
  background: var(--ink);
  color: #fff;
  border-radius: 6px;
}

.breaking-news strong {
  flex: 0 0 auto;
  color: #fff;
  background: var(--accent);
  border-radius: 5px;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.headline-desk {
  margin-bottom: 34px;
}

.home-showcase {
  display: grid;
  gap: 18px;
}

.home-showcase-top {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, var(--accent) 0 20%, transparent 20% 22%, rgba(197, 22, 46, 0.12) 22% 24%, transparent 24%),
    #fff;
  padding: 54px 18px 18px;
}

.home-showcase-top::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  align-items: center;
  height: 44px;
  min-width: 250px;
  border-radius: var(--radius) 0 0 0;
  background: var(--accent);
  color: #fff;
  content: "Sıcak Gündem";
  padding: 0 18px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.home-top-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--ink);
}

.home-top-card img,
.home-main-link img {
  position: absolute;
  inset: 0;
  height: 100%;
}

.home-top-card::after,
.home-main-link::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 26%, rgba(0, 0, 0, 0.78) 100%);
}

.home-top-card span {
  position: absolute;
  z-index: 1;
  top: 12px;
  left: 12px;
  border-radius: 4px;
  background: #050505;
  color: #fff;
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.home-top-card strong {
  position: absolute;
  z-index: 1;
  left: 14px;
  right: 14px;
  bottom: 14px;
  color: #fff;
  font-size: clamp(20px, 2.3vw, 30px);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.5);
}

.home-showcase-body {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(210px, 0.48fr) minmax(270px, 0.72fr);
  gap: 18px;
}

.home-main-headline {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.home-main-link {
  position: absolute;
  inset: 0;
  display: block;
}

.home-main-link::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 20%, rgba(0, 0, 0, 0.08) 46%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0) 68%);
}

.home-main-link div {
  position: absolute;
  z-index: 1;
  left: clamp(20px, 4vw, 48px);
  right: clamp(20px, 4vw, 48px);
  bottom: 78px;
  color: #fff;
}

.home-main-link span {
  display: inline-flex;
  margin-bottom: 10px;
  border-radius: 5px;
  background: #1267b3;
  padding: 7px 11px;
  color: #fff;
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 900;
  line-height: 1;
}

.home-main-link h1 {
  max-width: 760px;
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(40px, 5.7vw, 68px);
  font-weight: 900;
  line-height: 0.94;
  text-transform: uppercase;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.44);
}

.home-main-link p {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  font-weight: 800;
}

.home-headline-pager {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 9px;
  background: #fff;
  padding: 12px;
}

.home-headline-pager a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.home-headline-pager a.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.home-side-list,
.home-extra-list {
  display: grid;
  gap: 18px;
}

.home-side-card,
.home-large-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--paper);
}

.home-side-card img {
  height: 112px;
}

.home-side-card h3,
.home-large-card h3 {
  margin: 0;
  padding: 12px 12px 6px;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.16;
}

.home-side-card small,
.home-large-card small {
  display: block;
  padding: 0 12px 13px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.home-video-card {
  display: grid;
  place-items: center;
  min-height: 168px;
  border-radius: 6px;
  background:
    linear-gradient(90deg, transparent 0 26%, var(--accent) 26% 27%, transparent 27% 73%, var(--accent) 73% 74%, transparent 74%),
    #171717;
  color: #fff;
}

.home-video-card span {
  display: grid;
  place-items: center;
  width: 72px;
  height: 46px;
  border: 1px solid #fff;
  border-radius: 7px;
  font-size: 20px;
}

.home-video-card strong {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 900;
}

.home-large-card img {
  height: 250px;
}

.ad-slot {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  min-height: 90px;
  border: 1px dashed #c7ced8;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(21, 21, 21, 0.025) 25%, transparent 25%) 0 0 / 18px 18px,
    #f9fafb;
  color: #7a828f;
  text-align: center;
}

.ad-slot span {
  color: #9aa3af;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.ad-slot strong {
  color: #4f5865;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.ad-leaderboard {
  min-height: 86px;
  margin: 0 0 18px;
}

.ad-wide {
  min-height: 112px;
  margin: -10px 0 30px;
}

.ad-soft {
  margin: 24px 0 30px;
  background:
    linear-gradient(135deg, rgba(18, 103, 179, 0.035) 25%, transparent 25%) 0 0 / 18px 18px,
    #f5f9fc;
}

.ad-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0 34px;
}

.ad-box {
  min-height: 170px;
}

.headline-with-interest {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: stretch;
}

.headline-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
  gap: 24px;
  margin-bottom: 18px;
}

.lead-story,
.compact-story,
.headline-card,
.feed-card,
.most-read,
.newsletter,
.category-grid article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.lead-story {
  overflow: hidden;
  box-shadow: var(--shadow);
}

.lead-story img {
  height: clamp(280px, 41vw, 520px);
}

.headline-desk .lead-story img {
  height: clamp(220px, 28vw, 360px);
}

.story-body {
  padding: 24px;
}

.tag {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 12px;
  font-family: var(--font);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.headline-desk h1 {
  font-size: clamp(30px, 4vw, 48px);
}

.lead-story p {
  max-width: 760px;
  margin-bottom: 14px;
  color: #40444b;
  font-size: 18px;
}

.meta {
  color: var(--muted);
  font-size: 13px;
}

.top-headlines {
  display: grid;
  gap: 18px;
}

.compact-story {
  min-height: 0;
  overflow: hidden;
}

.compact-story img {
  height: 190px;
}

.compact-story div {
  padding: 16px;
}

.compact-story h2,
.most-read h2,
.newsletter h2,
.section-heading h2 {
  font-size: 22px;
  line-height: 1.15;
}

.headline-strip {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
}

.headline-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 176px;
  overflow: hidden;
}

.headline-card.is-active {
  border-color: var(--accent);
}

.headline-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 28px;
  margin: 10px 10px 8px;
  background: var(--ink);
  color: #fff;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
}

.headline-card.is-active .headline-number {
  background: var(--accent);
}

.headline-card img {
  height: 62px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.headline-card h3 {
  margin: 0;
  padding: 10px;
  font-size: 13px;
  line-height: 1.22;
}

.headline-showcase {
  position: relative;
  min-height: clamp(400px, 34vw, 480px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.headline-showcase img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.headline-showcase::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 8%, rgba(0, 0, 0, 0.04) 42%, rgba(196, 82, 10, 0.82) 86%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.01) 66%);
}

.headline-overlay {
  position: absolute;
  z-index: 1;
  left: clamp(18px, 5vw, 64px);
  right: clamp(18px, 5vw, 64px);
  bottom: 58px;
  color: #fff;
}

.headline-kicker {
  display: inline-block;
  max-width: min(92%, 560px);
  margin-bottom: 12px;
  padding: 8px 12px 9px;
  background: #106dcc;
  color: #fff;
  font-size: clamp(18px, 2.4vw, 31px);
  font-weight: 800;
  line-height: 1.03;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}

.headline-overlay h1 {
  max-width: 980px;
  margin-bottom: 8px;
  color: #fff;
  font-family: var(--font);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.44);
}

.headline-overlay p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(14px, 1.45vw, 18px);
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.headline-pager {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(16, minmax(0, 1fr));
  height: 46px;
  background: #050505;
}

.headline-pager a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  border-right: 1px solid #2b2b2b;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.headline-pager a.is-active {
  background: var(--accent);
}

.interest-panel {
  display: flex;
  min-height: clamp(400px, 34vw, 480px);
  flex-direction: column;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 12px;
  box-shadow: 0 10px 28px rgba(21, 21, 21, 0.06);
}

.interest-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.interest-head strong {
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.interest-head span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.interest-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-width: 0;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.interest-card:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.interest-card:first-of-type {
  position: relative;
  display: block;
  overflow: hidden;
  border-bottom: 0;
  border-radius: 6px;
  padding-bottom: 0;
}

.interest-card img {
  width: 92px;
  height: 64px;
  border-radius: 5px;
  background: var(--soft);
}

.interest-card:first-of-type img {
  width: 100%;
  height: 178px;
  border-radius: 6px;
}

.interest-card:first-of-type::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 32%, rgba(0, 0, 0, 0.72) 100%);
}

.interest-card h3 {
  margin: 0;
  min-width: 0;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.18;
}

.interest-card:first-of-type h3 {
  position: absolute;
  z-index: 1;
  left: 12px;
  right: 12px;
  bottom: 12px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.08;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.42);
}

.instagram-stories {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px;
  gap: 14px;
  align-items: center;
  margin: -8px 0 32px;
  padding: 14px 16px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(-45deg, rgba(20, 20, 20, 0.025) 0 2px, transparent 2px 6px),
    #f8f9fb;
}

.stories-track {
  display: grid;
  grid-template-columns: repeat(15, minmax(54px, 1fr));
  gap: 10px;
  min-width: 0;
}

.story-bubble {
  display: grid;
  justify-items: center;
  min-width: 0;
  color: #151515;
  text-align: center;
}

.story-bubble img {
  width: 58px;
  height: 58px;
  margin-bottom: 6px;
  border: 3px solid #ec2432;
  border-radius: 999px;
  box-shadow: 0 0 0 2px #fff;
}

.story-bubble strong,
.story-bubble span {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.story-bubble strong {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.05;
}

.story-bubble span {
  margin-top: 2px;
  color: #737a84;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.stories-actions {
  display: grid;
  gap: 7px;
  justify-items: stretch;
}

.story-nav,
.story-all {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  border-radius: 5px;
  background: #050505;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.story-nav {
  gap: 12px;
}

.story-nav span {
  color: #fff;
  font-size: 20px;
  line-height: 1;
}

.sports-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 18px;
  align-items: start;
}

.sports-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
}

.sports-news-grid .category-lead {
  grid-row: span 2;
}

.sports-news-grid .category-lead img {
  height: 250px;
}

.sports-news-grid .category-card img {
  height: 112px;
}

.league-standings {
  align-self: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 13px;
}

.league-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  border-bottom: 2px solid #14834b;
  padding-bottom: 8px;
}

.league-head span {
  display: block;
  margin-bottom: 2px;
  color: #14834b;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.league-head h2 {
  margin: 0;
  font-size: 21px;
  line-height: 1;
}

.league-head a {
  color: #14834b;
  font-size: 12px;
  font-weight: 900;
}

.league-standings table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.league-standings th {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-align: right;
  text-transform: uppercase;
}

.league-standings th:first-child,
.league-standings td:first-child {
  text-align: left;
}

.league-standings td {
  border-bottom: 1px solid #edf0f2;
  padding: 7px 0;
  text-align: right;
  font-weight: 800;
}

.league-standings td:first-child {
  display: flex;
  align-items: center;
  min-width: 0;
  font-weight: 900;
}

.league-standings td strong {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 7px;
  border-radius: 999px;
  background: #eef8f2;
  color: #14834b;
  font-size: 11px;
}

.league-standings td img {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-right: 7px;
  object-fit: contain;
}

.league-standings p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.markets-strip {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  margin: 22px 0 32px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(21, 21, 21, 0.04);
}

.markets-head {
  display: grid;
  align-content: center;
  gap: 2px;
  background: #f3f5f7;
  color: var(--ink);
  padding: 12px 14px;
}

.markets-head strong {
  font-size: 16px;
  line-height: 1;
}

.markets-head span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.markets-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.market-item {
  display: grid;
  gap: 3px;
  min-width: 0;
  border-right: 1px solid #edf0f2;
  padding: 11px 13px;
}

.market-item:last-child {
  border-right: 0;
}

.market-item span {
  color: #7a818c;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.market-item strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
}

.market-item em {
  width: fit-content;
  border-radius: 999px;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  padding: 2px 7px;
}

.market-item.up em {
  background: #eef8f2;
  color: #258452;
}

.market-item.down em {
  background: #fff0f1;
  color: #b84a5b;
}

.writers-strip {
  margin: 26px 0 38px;
  padding: 0;
}

.writers-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.writers-head strong {
  font-size: 22px;
  line-height: 1;
}

.writers-head a {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.writers-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  overflow: visible;
  padding: 2px 0 12px;
  scrollbar-width: none;
}

.writers-list::-webkit-scrollbar {
  display: none;
}

.writer-card {
  position: relative;
  display: block;
  min-height: 272px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #f1f3f5 100%);
  box-shadow: 0 8px 22px rgba(21, 21, 21, 0.09);
  overflow: hidden;
  padding: 20px 18px 18px;
}

.writer-card img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 118px;
  height: 128px;
  border-radius: 0;
  object-fit: cover;
  object-position: top center;
}

.writer-content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 232px;
}

.writer-content h3 {
  margin: 0 0 10px;
  max-width: 218px;
  color: #141414;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.06;
}

.writer-content p {
  display: -webkit-box;
  max-width: 218px;
  margin: 0;
  overflow: hidden;
  color: #5f6670;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.writer-content time {
  align-self: end;
  margin-bottom: 6px;
  color: #9aa3af;
  font-size: 12px;
  font-weight: 800;
}

.writer-content strong {
  display: block;
  align-self: end;
  max-width: 150px;
  color: #b00018;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.writer-content strong b {
  display: block;
  font-size: 23px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
  border-bottom: 2px solid var(--ink);
}

.section-heading h2 {
  margin-bottom: 10px;
}

.section-heading a {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
}

.news-feed {
  min-width: 0;
}

.feed-card {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 18px;
  margin-bottom: 16px;
  overflow: hidden;
}

.feed-card img {
  height: 100%;
  min-height: 178px;
}

.feed-card div {
  padding: 18px 18px 18px 0;
}

.feed-card h3 {
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.18;
}

.feed-card p {
  margin-bottom: 12px;
  color: #4d5259;
}

.sidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 18px;
}

.most-read,
.newsletter {
  padding: 20px;
}

.most-read ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 24px;
}

.most-read li::marker {
  color: var(--accent);
  font-weight: 800;
}

.most-read a {
  font-weight: 700;
}

.newsletter {
  background: var(--nav);
  color: #fff;
}

.newsletter p {
  color: #d7dce3;
}

.newsletter form {
  display: grid;
  gap: 10px;
}

.newsletter input {
  background: #fff;
  border-radius: 6px;
}

.newsletter button {
  border-radius: 6px;
}

.category-band {
  margin: 38px 0;
}

.category-section {
  --category-color: var(--accent);
  --category-soft: rgba(197, 22, 46, 0.08);
  margin: 38px 0 46px;
}

.category-gundem {
  --category-color: #d01830;
  --category-soft: rgba(208, 24, 48, 0.08);
}

.category-ekonomi {
  --category-color: #1267b3;
  --category-soft: rgba(18, 103, 179, 0.08);
}

.category-spor {
  --category-color: #14834b;
  --category-soft: rgba(20, 131, 75, 0.09);
}

.category-dunya {
  --category-color: #3949ab;
  --category-soft: rgba(57, 73, 171, 0.08);
}

.category-magazin {
  --category-color: #c0267a;
  --category-soft: rgba(192, 38, 122, 0.08);
}

.category-teknoloji {
  --category-color: #475569;
  --category-soft: rgba(71, 85, 105, 0.08);
}

.category-saglik {
  --category-color: #0f9f8f;
  --category-soft: rgba(15, 159, 143, 0.09);
}

.category-page {
  display: grid;
  gap: 26px;
}

.category-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 20px;
  align-items: end;
  border: 1px solid var(--line);
  border-top: 4px solid var(--category-color);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, var(--category-soft), rgba(255, 255, 255, 0) 48%),
    var(--paper);
  padding: 24px;
}

.category-page-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  border-radius: 999px;
  background: var(--category-soft);
  color: var(--category-color);
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.category-page-hero h1 {
  margin-bottom: 8px;
  color: var(--category-color);
  font-size: clamp(38px, 5vw, 62px);
}

.category-page-hero p {
  max-width: 720px;
  margin: 0;
  color: #4d5561;
  font-size: 17px;
  font-weight: 700;
}

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

.category-page-stats span {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  padding: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.category-page-stats strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
}

.category-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 22px;
  align-items: start;
}

.category-headline {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 28px rgba(21, 21, 21, 0.06);
}

.category-headline-main {
  position: relative;
  display: block;
  min-height: clamp(280px, 32vw, 390px);
  overflow: hidden;
  background: var(--ink);
}

.category-headline-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.category-headline-main::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 20%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0) 65%);
}

.category-headline-main div {
  position: absolute;
  z-index: 1;
  left: clamp(18px, 4vw, 42px);
  right: clamp(18px, 4vw, 42px);
  bottom: 28px;
  max-width: 720px;
  color: #fff;
}

.category-headline-main span {
  display: inline-flex;
  margin-bottom: 10px;
  border-radius: 5px;
  background: var(--category-color);
  padding: 6px 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.category-headline-main h2 {
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 0.96;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.34);
}

.category-headline-main p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  font-weight: 700;
}

.category-headline-nav {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  background: #f8f9fb;
}

.category-headline-nav a {
  display: grid;
  grid-template-rows: 34px 56px;
  min-width: 0;
  border-right: 1px solid var(--line);
  color: var(--ink);
}

.category-headline-nav a:last-child {
  border-right: 0;
}

.category-headline-nav span {
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.category-headline-nav a.is-active span {
  background: var(--category-color);
  color: #fff;
}

.category-headline-nav img {
  height: 56px;
}

.category-showcase {
  display: grid;
  gap: 18px;
}

.showcase-top {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  border: 1px solid color-mix(in srgb, var(--category-color) 45%, var(--line));
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, var(--category-color) 0 20%, transparent 20% 23%, rgba(255, 255, 255, 0.3) 23% 25%, transparent 25%),
    var(--category-soft);
  padding: 20px;
}

.showcase-top-card {
  position: relative;
  min-height: 186px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--ink);
}

.showcase-top-card img {
  position: absolute;
  inset: 0;
  height: 100%;
}

.showcase-top-card::after,
.showcase-main-link::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 28%, rgba(0, 0, 0, 0.78) 100%);
}

.showcase-top-card strong {
  position: absolute;
  z-index: 1;
  left: 14px;
  right: 14px;
  bottom: 14px;
  color: #fff;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.48);
}

.showcase-body {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(180px, 0.48fr) minmax(240px, 0.72fr);
  gap: 18px;
  align-items: stretch;
}

.showcase-main {
  position: relative;
  display: block;
  min-height: 510px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
}

.showcase-main-link {
  position: absolute;
  inset: 0;
  display: block;
}

.showcase-main-link img {
  position: absolute;
  inset: 0;
  height: 100%;
}

.showcase-main-link div {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 78px;
  color: #fff;
}

.showcase-main span {
  display: inline-flex;
  margin-bottom: 10px;
  border-radius: 5px;
  background: var(--category-color);
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 900;
}

.showcase-main h2 {
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 900;
  line-height: 0.96;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.44);
}

.showcase-main p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  font-weight: 800;
}

.showcase-pager {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 11px;
  background: #fff;
  padding: 12px;
}

.showcase-pager a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.showcase-pager a.is-active {
  border-color: var(--category-color);
  background: var(--category-color);
  color: #fff;
}

.showcase-side,
.showcase-extra {
  display: grid;
  gap: 18px;
}

.showcase-side-card,
.showcase-large-card {
  overflow: hidden;
  border-radius: 6px;
  background: var(--paper);
}

.showcase-side-card {
  border: 1px solid var(--line);
}

.showcase-side-card img {
  height: 92px;
}

.showcase-side-card h3,
.showcase-large-card h3 {
  margin: 0;
  padding: 12px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.18;
}

.showcase-video {
  display: grid;
  place-items: center;
  min-height: 168px;
  border-radius: 6px;
  background:
    linear-gradient(90deg, transparent 0 26%, var(--category-color) 26% 27%, transparent 27% 73%, var(--category-color) 73% 74%, transparent 74%),
    #171717;
  color: #fff;
}

.showcase-video span {
  display: grid;
  place-items: center;
  width: 72px;
  height: 46px;
  border: 1px solid #fff;
  border-radius: 7px;
  font-size: 20px;
}

.showcase-video strong {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 900;
}

.showcase-large-card {
  border: 1px solid var(--line);
}

.showcase-large-card img {
  height: 240px;
}

.category-special-module,
.category-standings-module {
  margin: 0;
}

.sports-special-module {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 16px;
  align-items: stretch;
}

.category-standings-module table {
  table-layout: fixed;
}

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

.standings-news-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.standings-news-card img {
  height: 118px;
}

.standings-news-card h3 {
  margin: 0;
  padding: 11px 12px 13px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.14;
}

.category-page-feed {
  display: grid;
  gap: 18px;
  min-width: 0;
}

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

.category-page-lead {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.category-page-lead img {
  height: 100%;
  min-height: 320px;
}

.category-page-lead div {
  display: grid;
  align-content: center;
  padding: 28px;
}

.category-page-lead h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
}

.category-page-lead p {
  color: #505761;
  font-size: 17px;
  font-weight: 700;
}

.category-page-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.category-page-card img {
  height: 134px;
}

.category-page-card h3 {
  margin: 0;
  padding: 12px;
  font-size: 17px;
  line-height: 1.15;
}

.category-sidebar {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 16px;
}

.category-sidebar .ad-slot {
  min-height: 250px;
}

.category-section .section-heading {
  border-bottom-color: var(--category-color);
}

.category-section .section-heading h2 {
  color: var(--category-color);
}

.category-section .section-heading a {
  color: var(--category-color);
}

.category-news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
  align-items: start;
}

.category-lead,
.category-card {
  background: var(--paper);
  border: 0;
  border-radius: 5px;
  overflow: hidden;
}

.category-section .category-lead,
.category-section .category-card {
  outline: 1px solid transparent;
}

.category-lead {
  display: grid;
  grid-column: span 1;
  grid-row: span 2;
}

.category-lead img {
  height: 270px;
}

.category-lead div {
  background: var(--paper);
  padding: 12px;
}

.category-section .tag {
  color: var(--category-color);
}

.category-lead h3 {
  margin-bottom: 8px;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.22;
}

.category-lead p {
  margin-bottom: 0;
  color: #4d5259;
  font-size: 14px;
}

.category-card {
  display: grid;
  grid-template-columns: 1fr;
  height: auto;
  min-height: 0;
  align-self: start;
}

.category-card img {
  height: 128px;
  min-height: 0;
}

.category-card h3 {
  margin: 0;
  padding: 10px 11px 12px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.category-news-grid .category-card:last-child {
  grid-column: auto;
  grid-template-columns: 1fr;
  height: auto;
  min-height: 0;
}

.economy-live {
  margin-top: 16px;
  border: 1px solid #dce9f6;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(18, 103, 179, 0.055), rgba(255, 255, 255, 0.86)),
    var(--paper);
  overflow: hidden;
}

.economy-live-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid #dce9f6;
}

.economy-live-head span {
  display: inline-flex;
  margin-bottom: 3px;
  border-radius: 999px;
  background: #e8f2fb;
  color: #1267b3;
  font-size: 11px;
  font-weight: 900;
  padding: 3px 8px;
  text-transform: uppercase;
}

.economy-live-head h3 {
  margin: 0;
  color: #1267b3;
  font-size: 24px;
  line-height: 1;
}

.economy-live-head a {
  color: #1267b3;
  font-size: 13px;
  font-weight: 900;
}

.economy-live-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.economy-live .market-item {
  background: transparent;
  border-right-color: #dce9f6;
  padding: 13px 14px;
}

.economy-live .market-item strong {
  font-size: 18px;
}

.video-gallery {
  margin: 44px 0 48px;
  border-radius: var(--radius);
  background: #171827;
  color: #fff;
  padding: 18px;
}

.video-gallery-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.video-title {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.32);
}

.play-mark {
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #fff;
}

.video-title h2 {
  margin: 0;
  color: #fff;
  font-size: 21px;
  line-height: 1;
  text-transform: uppercase;
}

.video-gallery-head nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.video-gallery-head a {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.all-videos {
  justify-self: end;
  font-weight: 900;
}

.all-videos::after {
  content: "›";
  margin-left: 8px;
  font-size: 22px;
  line-height: 0;
}

.video-gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(360px, 0.9fr);
  gap: 20px;
  padding-top: 14px;
}

.featured-video,
.video-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 5px;
}

.featured-video img {
  height: 430px;
}

.featured-video::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.64));
}

.video-play {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 86px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  color: #fff;
  font-size: 24px;
  transform: translate(-50%, -50%);
}

.featured-video h3 {
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 20px;
  bottom: 18px;
  margin: 0;
  color: #fff;
  font-size: 25px;
  line-height: 1.18;
}

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

.video-card img {
  height: 98px;
  filter: brightness(0.78);
}

.video-card span {
  position: absolute;
  top: 6px;
  left: 6px;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.86);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 3px 5px;
}

.video-card h3 {
  margin: 8px 0 0;
  color: #fff;
  font-size: 13px;
  line-height: 1.25;
}

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

.category-grid article {
  min-height: 180px;
  padding: 18px;
}

.category-grid h3 {
  font-size: 21px;
  line-height: 1.18;
}

.article-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 34px;
  align-items: start;
  margin-top: 28px;
}

.article-top-ad {
  grid-column: 1 / -1;
  margin-bottom: 4px;
}

.article-main {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  min-width: 0;
  padding: 26px;
}

.article-breadcrumb {
  display: inline-flex;
  margin-bottom: 16px;
  border-radius: 999px;
  background: #fff0f1;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  padding: 5px 10px;
  text-transform: uppercase;
}

.article-main h1 {
  max-width: 900px;
  margin-bottom: 14px;
  font-family: var(--font);
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1;
}

.article-spot {
  max-width: 820px;
  margin-bottom: 16px;
  color: #343941;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 14px;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.article-actions a {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8f9fb;
  color: #1f2937;
  padding: 7px 11px;
  font-size: 13px;
  font-weight: 900;
}

.article-hero {
  margin: 0 0 24px;
}

.article-hero img {
  width: 100%;
  max-height: 520px;
  border-radius: var(--radius);
}

.article-hero figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.article-body {
  max-width: 760px;
  color: #242830;
  font-family: var(--font);
  font-size: 20px;
  line-height: 1.72;
}

.article-body p {
  margin-bottom: 22px;
}

.article-body h2 {
  margin: 34px 0 12px;
  font-family: var(--font);
  font-size: 28px;
  line-height: 1.2;
}

.article-inline-ad {
  min-height: 92px;
  margin: 28px 0;
}

.article-share {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.article-share a {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  padding: 9px 12px;
  font-size: 14px;
  font-weight: 800;
}

.related-news {
  margin-top: 34px;
}

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

.related-grid a {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.related-grid a img {
  height: 120px;
}

.related-grid a h3 {
  margin: 0;
  padding: 11px 12px 13px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.16;
}

.article-side-news {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 16px;
}

.article-side-news h2 {
  margin: 0;
  font-size: 21px;
  line-height: 1;
}

.article-side-news a {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.article-side-news img {
  height: 68px;
  border-radius: 5px;
}

.article-side-news span {
  font-size: 15px;
  font-weight: 900;
  line-height: 1.16;
}

.article-side-ad {
  min-height: 250px;
}

.related-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.related-card img {
  height: 120px;
}

.related-card h3 {
  margin: 0;
  padding: 12px;
  font-size: 17px;
  line-height: 1.25;
}

.global-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 52px auto 0;
  padding: 22px 0 28px;
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.footer-brand {
  color: var(--ink);
  font-family: var(--font);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.footer-brand::first-letter {
  color: var(--accent);
}

.footer-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--nav);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.footer-social a:nth-child(1) {
  background: #4267b2;
}

.footer-social a:nth-child(2) {
  background: #050505;
}

.footer-social a:nth-child(3) {
  background: #d62976;
}

.footer-social a:nth-child(4) {
  background: #0a66c2;
}

.footer-social a:nth-child(5) {
  background: #ff0000;
}

.footer-social .send-news {
  width: auto;
  min-width: 108px;
  border-radius: 999px;
  background: #0b4ea2;
  padding: 0 14px;
  font-size: 12px;
}

.footer-main {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 28px;
  padding: 24px 0 22px;
  border-bottom: 1px solid var(--line);
}

.app-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.app-links a {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 1px 8px;
  align-items: center;
  width: 132px;
  border: 1px solid #aeb4bd;
  border-radius: 999px;
  background: #fff;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 800;
}

.store-icon {
  grid-row: span 2;
  width: 24px;
  height: 24px;
}

.app-links span,
.app-links small {
  min-width: 0;
}

.app-links span {
  line-height: 1.1;
}

.app-links small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.1;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.footer-links div {
  display: grid;
  gap: 9px;
  align-content: start;
}

.footer-links a {
  color: #111827;
  font-size: 13px;
}

.footer-bottom {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding-top: 22px;
  text-align: center;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

.footer-bottom a {
  border-right: 1px solid var(--line);
  padding: 0 12px;
  color: #1f2937;
  font-size: 12px;
}

.footer-bottom a:last-child {
  border-right: 0;
}

.footer-bottom p {
  max-width: 930px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .brand-row,
  .article-page,
  .category-page-hero,
  .category-page-layout,
  .category-page-lead,
  .content-grid,
  .headline-layout,
  .headline-with-interest {
    grid-template-columns: 1fr;
  }

  .article-top-ad {
    grid-column: auto;
  }

  .brand-row {
    display: grid;
  }

  .search {
    min-width: 0;
  }

  .sidebar {
    position: static;
  }

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

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

  .showcase-top,
  .showcase-body,
  .home-showcase-top,
  .home-showcase-body,
  .sports-special-module {
    grid-template-columns: 1fr;
  }

  .home-main-headline {
    min-height: 430px;
  }

  .home-side-list,
  .home-extra-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-video-card {
    min-height: 150px;
  }

  .home-large-card img {
    height: 106px;
  }

  .showcase-main {
    min-height: 430px;
  }

  .showcase-side,
  .showcase-extra {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .showcase-video {
    min-height: 150px;
  }

  .showcase-large-card img {
    height: 92px;
  }

  .category-headline-nav {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .category-headline-nav::-webkit-scrollbar {
    display: none;
  }

  .category-headline-nav a {
    flex: 0 0 92px;
  }

  .category-sidebar {
    position: static;
  }

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

  .category-lead {
    grid-column: span 1;
    grid-row: span 2;
  }

  .category-news-grid .category-card:last-child {
    grid-column: auto;
  }

  .category-lead img {
    height: 250px;
  }

  .video-gallery-head,
  .video-gallery-grid {
    grid-template-columns: 1fr;
  }

  .all-videos {
    justify-self: start;
  }

  .featured-video img {
    height: 340px;
  }

  .headline-strip {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
  }

  .headline-card {
    flex: 0 0 190px;
    scroll-snap-align: start;
  }

  .ad-pair {
    grid-template-columns: 1fr;
  }

  .ad-box {
    min-height: 130px;
  }

  .interest-panel {
    min-height: 0;
  }

  .interest-card {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .interest-card img,
  .interest-card.is-large img {
    width: 120px;
    height: 82px;
    min-height: 0;
  }

  .interest-card:first-of-type img {
    width: 100%;
    height: 210px;
  }

  .instagram-stories {
    grid-template-columns: 1fr;
  }

  .stories-track {
    grid-auto-flow: column;
    grid-auto-columns: 68px;
    grid-template-columns: none;
    overflow-x: auto;
    padding: 2px 0 6px;
    scrollbar-width: none;
  }

  .stories-track::-webkit-scrollbar {
    display: none;
  }

  .stories-actions {
    grid-template-columns: 58px 58px;
    justify-content: end;
  }

  .league-standings {
    grid-column: auto;
  }

  .sports-layout {
    grid-template-columns: 1fr;
  }

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

  .markets-strip {
    grid-template-columns: 1fr;
  }

  .markets-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .economy-live-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .app-links {
    grid-template-columns: repeat(3, minmax(0, 132px));
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .site-header,
  main,
  .global-footer {
    width: min(100% - 20px, 1180px);
  }

  .top-strip {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
  }

  .breaking-news {
    align-items: flex-start;
    flex-direction: column;
  }

  .story-body {
    padding: 18px;
  }

  .lead-story p {
    font-size: 16px;
  }

  .headline-card {
    flex-basis: 175px;
  }

  .ad-leaderboard,
  .ad-wide {
    min-height: 76px;
  }

  .ad-slot strong {
    font-size: 15px;
  }

  .article-main h1 {
    font-size: 36px;
  }

  .article-spot {
    font-size: 18px;
  }

  .article-body {
    font-size: 18px;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .article-main {
    padding: 18px;
  }

  .article-side-news a {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .interest-panel {
    gap: 10px;
  }

  .interest-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .interest-card h3 {
    font-size: 15px;
  }

  .interest-card img,
  .interest-card.is-large img {
    width: 96px;
    height: 68px;
  }

  .interest-card:first-of-type img {
    width: 100%;
    height: 180px;
  }

  .instagram-stories {
    margin-top: -12px;
    padding: 12px;
  }

  .stories-track {
    grid-auto-columns: 64px;
  }

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

  .feed-card div {
    padding: 0 16px 16px;
  }

  .feed-card img {
    height: 210px;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-page-hero {
    padding: 18px;
  }

  .category-page-stats,
  .category-page-grid {
    grid-template-columns: 1fr;
  }

  .showcase-top {
    gap: 12px;
    padding: 12px;
  }

  .home-showcase-top {
    gap: 12px;
    padding: 52px 12px 12px;
  }

  .home-showcase-top::before {
    height: 40px;
    min-width: 210px;
    font-size: 17px;
  }

  .home-top-card {
    min-height: 150px;
  }

  .home-main-headline {
    min-height: 390px;
  }

  .home-main-link div {
    left: 16px;
    right: 16px;
    bottom: 70px;
  }

  .home-main-link p {
    font-size: 15px;
  }

  .home-headline-pager {
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
  }

  .home-headline-pager a {
    flex: 0 0 32px;
  }

  .home-side-list,
  .home-extra-list {
    grid-template-columns: 1fr;
  }

  .home-side-card {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
  }

  .home-side-card img {
    height: 100%;
    min-height: 82px;
  }

  .showcase-top-card {
    min-height: 150px;
  }

  .showcase-main {
    min-height: 390px;
  }

  .showcase-main div {
    left: 16px;
    right: 16px;
    bottom: 70px;
  }

  .showcase-main p {
    font-size: 15px;
  }

  .showcase-pager {
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
  }

  .showcase-pager a {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
  }

  .showcase-side,
  .showcase-extra,
  .standings-news-grid {
    grid-template-columns: 1fr;
  }

  .showcase-side-card {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
  }

  .showcase-side-card img {
    height: 100%;
    min-height: 82px;
  }

  .category-page-lead img {
    min-height: 220px;
  }

  .category-headline-main {
    min-height: 300px;
  }

  .category-headline-main p {
    font-size: 15px;
  }

  .category-page-lead div {
    padding: 18px;
  }

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

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

  .writers-list {
    grid-template-columns: 1fr;
  }

  .economy-live-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .market-item {
    padding: 11px 12px;
  }

  .category-lead img {
    height: 220px;
  }

  .category-lead h3 {
    font-size: 26px;
  }

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

  .category-card h3 {
    font-size: 14px;
    padding: 9px 10px 11px;
  }

  .video-gallery {
    padding: 14px;
  }

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

  .video-gallery-head nav {
    gap: 12px;
  }

  .video-list {
    grid-template-columns: 1fr;
  }

  .featured-video img {
    height: 260px;
  }

  .featured-video h3 {
    font-size: 20px;
  }

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

  .footer-social {
    justify-content: flex-start;
  }

  .footer-main,
  .footer-links,
  .app-links {
    grid-template-columns: 1fr;
  }

  .app-links a {
    width: 100%;
    max-width: 190px;
  }
}
