/**
 * Inside GKZiD — sports media / culture section (dark, GK green accents).
 */

:root {
  --igkz-bg: #050608;
  --igkz-surface: #0c0f14;
  --igkz-border: rgba(255, 255, 255, 0.08);
  --igkz-text: #f4f8fb;
  --igkz-muted: rgba(244, 248, 251, 0.58);
  --igkz-gk: #00f52a;
  --igkz-radius: 18px;
}

.inside-page {
  min-height: 100vh;
  background: var(--igkz-bg);
  color: var(--igkz-text);
  font-family: "Outfit", system-ui, sans-serif;
}

/* Syne 800 + Chrome clips g/p/y descenders (see gkz-partners.css) */
body.inside-page,
body.inside-page .inside-main {
  overflow-x: visible !important;
  overflow-y: visible !important;
}

.inside-page a {
  color: inherit;
}

/* —— Homepage strip (reuses card primitives) —— */
.lp-inside {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4rem) max(1.25rem, 4vw);
  background: linear-gradient(180deg, #070a0f 0%, #050608 100%);
  border-top: 1px solid var(--igkz-border);
  overflow: hidden;
}

.lp-inside::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 245, 42, 0.12), transparent 55%);
  pointer-events: none;
}

.lp-inside__inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}

.lp-inside__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
}

.lp-inside__kicker {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--igkz-gk);
  margin: 0 0 0.35rem;
}

.lp-inside__title {
  font-family: "Syne", system-ui, sans-serif;
  font-size: clamp(1.75rem, 4.5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 1.05;
}

.lp-inside__all {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--igkz-gk);
  text-decoration: none;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 245, 42, 0.35);
  background: rgba(0, 245, 42, 0.08);
  transition: background 0.2s ease, transform 0.2s ease;
}

.lp-inside__all:hover,
.lp-inside__all:focus-visible {
  background: rgba(0, 245, 42, 0.16);
  transform: translateY(-1px);
}

.lp-inside__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(1rem, 2.5vw, 1.35rem);
}

/* Homepage strip: fixed 16:10 frame; image scales to fill the box (contain, no crop). */
.lp-inside__grid .igkz-card__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  flex-shrink: 0;
  line-height: 0;
  margin: 0;
  padding: 0;
  background: #0a0d12;
}

.lp-inside__grid .igkz-card__media img {
  position: absolute;
  inset: 0;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* —— Story cards (shared) —— */
.igkz-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--igkz-radius);
  overflow: visible;
  background: var(--igkz-surface);
  border: 1px solid var(--igkz-border);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.2s ease;
}

.igkz-card:hover,
.igkz-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  border-color: rgba(0, 245, 42, 0.25);
}

a.igkz-card:focus-visible {
  outline: 2px solid var(--igkz-gk);
  outline-offset: 3px;
}

div.igkz-card:focus-within {
  outline: 2px solid var(--igkz-gk);
  outline-offset: 3px;
}

.igkz-card__media {
  position: relative;
  overflow: hidden;
  width: 100%;
  flex-shrink: 0;
  aspect-ratio: 16 / 10;
  background: #11151c;
  border-radius: var(--igkz-radius) var(--igkz-radius) 0 0;
}

/* Fill the frame: % heights on <img> are unreliable without absolute positioning */
.igkz-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* /inside masonry: preserve full poster / mixed aspect ratios (letterbox inside frame) */
.inside-masonry .igkz-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: auto;
  min-height: min(220px, 44vw);
  max-height: min(52vh, 560px);
  background: #05070a;
}

.inside-masonry .igkz-card__media img {
  position: static;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(52vh, 560px);
  object-fit: contain;
  object-position: center;
}

@media (max-width: 767.98px) {
  .inside-masonry .igkz-card__media {
    min-height: min(180px, 52vw);
    max-height: min(42vh, 340px);
  }

  .inside-masonry .igkz-card__media img {
    max-height: min(42vh, 340px);
  }
}

.igkz-card__body {
  padding: 1.1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.45rem;
}

a.igkz-card__cover {
  display: block;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

a.igkz-card__title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.16s ease;
}

a.igkz-card__title-link:hover,
a.igkz-card__title-link:focus-visible {
  color: var(--igkz-gk);
  outline: none;
}

a.igkz-card__excerpt-hit {
  display: block;
  text-decoration: none;
  color: inherit;
  margin: 0;
  flex: 1;
  min-height: 0;
}

a.igkz-card__excerpt-hit:hover .igkz-card__excerpt,
a.igkz-card__excerpt-hit:focus-visible .igkz-card__excerpt {
  color: rgba(244, 248, 251, 0.78);
}

.igkz-card__share {
  margin: 0;
  padding: 0.05rem 0 0.2rem;
}

.igkz-card__tag {
  align-self: flex-start;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--igkz-gk);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(0, 245, 42, 0.1);
  border: 1px solid rgba(0, 245, 42, 0.22);
}

/* Story titles: Outfit (Syne 800 clips descenders in Chrome) */
.igkz-card__headline {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.35;
  margin: 0;
  padding: 0 0 0.12em;
  letter-spacing: -0.02em;
  overflow: visible;
  display: block;
}

.igkz-card__headline .igkz-card__title-link {
  font: inherit;
  letter-spacing: inherit;
}

.igkz-card__excerpt {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--igkz-muted);
  flex: 1;
  overflow: visible;
}

a.igkz-card__cta {
  text-decoration: none;
  transition: color 0.16s ease, opacity 0.16s ease;
}

a.igkz-card__cta:hover,
a.igkz-card__cta:focus-visible {
  color: #7cff9a;
  outline: none;
}

.igkz-card__cta {
  margin-top: 0.3rem;
  align-self: flex-start;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--igkz-gk);
}

/* —— Full Inside page —— */
.inside-main {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 1.5rem) max(1rem, 4vw) 4rem;
}

.inside-hero {
  position: relative;
  border-radius: calc(var(--igkz-radius) + 6px);
  overflow: visible;
  border: 1px solid var(--igkz-border);
  margin-bottom: clamp(2rem, 5vw, 3rem);
  background: #0a0d12;
}

.inside-hero__media {
  position: relative;
  min-height: min(52vh, 420px);
  overflow: hidden;
  border-radius: calc(var(--igkz-radius) + 6px) calc(var(--igkz-radius) + 6px) 0 0;
}

@media (min-width: 900px) {
  .inside-hero__media {
    min-height: 440px;
  }
}

.inside-hero__media img,
.inside-hero__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767.98px) {
  .inside-hero__media {
    min-height: 0;
    background: #05070a;
  }

  .inside-hero__media img,
  .inside-hero__media video {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    max-height: min(50vh, 380px);
    object-fit: contain;
    object-position: center;
    display: block;
    margin: 0 auto;
  }
}

@media (min-width: 768px) {
  .inside-hero__media img,
  .inside-hero__media video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    margin: 0;
  }
}

.inside-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 6, 8, 0.5) 45%, rgba(5, 6, 8, 0.92) 100%);
  pointer-events: none;
}

.inside-hero__content {
  position: relative;
  overflow: visible;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  max-width: 720px;
}

.inside-hero__anchor {
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  pointer-events: none;
}

.inside-hero {
  scroll-margin-top: calc(var(--gkz-spine-h, 52px) + 12px);
}

.inside-hero__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--igkz-gk);
  margin-bottom: 0.65rem;
}

.inside-hero__title {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: clamp(1.85rem, 5vw, 2.85rem);
  font-weight: 800;
  line-height: 1.35;
  margin: 0 0 0.5rem;
  padding: 0.06em 0 0.18em;
  letter-spacing: -0.03em;
  overflow: visible;
  display: block;
}

.inside-hero__excerpt {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(244, 248, 251, 0.82);
  overflow: visible;
}

.inside-hero__content .inside-article__prose,
.inside-hero__content #inside-featured-story {
  line-height: 1.75;
  overflow: visible;
}

.inside-hero__content .inside-article__prose p {
  line-height: 1.75;
  overflow: visible;
}

.inside-hero__share {
  margin: 0 0 0.85rem;
  padding: 0 0 0.05rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.inside-story-share {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  margin: 0;
  padding: 0.28rem 0.72rem 0.28rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(244, 248, 251, 0.78);
  font-family: inherit;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition:
    color 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.inside-story-share__icon {
  flex-shrink: 0;
  opacity: 0.9;
}

.inside-story-share:hover,
.inside-story-share:focus-visible {
  color: var(--igkz-gk);
  background: rgba(0, 245, 42, 0.08);
  border-color: rgba(0, 245, 42, 0.35);
  box-shadow: 0 0 20px rgba(0, 245, 42, 0.12);
  outline: none;
}

.inside-story-share:focus-visible {
  box-shadow: 0 0 0 2px rgba(0, 245, 42, 0.45), 0 0 20px rgba(0, 245, 42, 0.1);
}

.inside-masonry .inside-story-share {
  padding: 0.24rem 0.6rem 0.24rem 0.48rem;
  font-size: 0.72rem;
}

/* —— Share dialog (cover + title + link) —— */
.inside-share-dialog {
  max-width: calc(100vw - 2rem);
  width: min(420px, 100%);
  max-height: calc(100dvh - 2rem);
  margin: auto;
  padding: 0;
  border: none;
  border-radius: 16px;
  background: transparent;
  color: var(--igkz-text, #eaf0ff);
  box-shadow: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.inside-share-dialog::backdrop {
  background: rgba(2, 4, 8, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.inside-share-dialog__panel {
  padding: 1.15rem 1.2rem 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(155deg, rgba(14, 18, 24, 0.98), rgba(6, 8, 11, 0.99));
  box-shadow:
    0 0 0 1px rgba(0, 245, 42, 0.12),
    0 24px 64px rgba(0, 0, 0, 0.55);
}

.inside-share-dialog__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.inside-share-dialog__title {
  margin: 0;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.35;
  padding: 0 0 0.1em;
  letter-spacing: -0.02em;
  color: rgba(244, 248, 251, 0.96);
  flex: 1;
  min-width: 0;
  overflow: visible;
}

.inside-share-dialog__x {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  margin: -0.2rem -0.15rem 0 0;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(244, 248, 251, 0.75);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.inside-share-dialog__x:hover,
.inside-share-dialog__x:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: var(--igkz-gk, #00f52a);
  outline: none;
}

.inside-share-dialog__media {
  position: relative;
  margin: 0 0 1rem;
  width: 100%;
  min-height: 11.25rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 245, 42, 0.22);
  background: #0a0d12;
  aspect-ratio: 16 / 10;
}

/* iOS/WebKit: % height on img + aspect-ratio parent often collapses — absolute fill */
.inside-share-dialog__img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.inside-share-dialog__url-wrap {
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.inside-share-dialog__url-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 248, 251, 0.45);
}

.inside-share-dialog__url {
  display: block;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 500;
  word-break: break-all;
  color: rgba(0, 245, 42, 0.92);
  line-height: 1.45;
}

.inside-share-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
}

.inside-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s ease, background 0.2s ease;
}

.inside-btn--primary {
  background: var(--igkz-gk);
  color: #031105;
}

.inside-btn--primary:hover,
.inside-btn--primary:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.inside-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--igkz-text);
  border: 1px solid var(--igkz-border);
}

.inside-btn--ghost:hover,
.inside-btn--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.inside-wish {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: rgba(0, 245, 42, 0.06);
  border: 1px solid rgba(0, 245, 42, 0.2);
  max-width: 520px;
}

.inside-wish__label {
  margin: 0 0 0.35rem;
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--igkz-gk);
}

.inside-wish__note {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  color: var(--igkz-muted);
  line-height: 1.45;
}

.inside-wish__qr {
  margin: 0;
  font-size: 0.72rem;
  color: var(--igkz-muted);
  font-style: italic;
}

.inside-page__intro {
  margin: 0 0 2rem;
  max-width: 52rem;
}

.inside-page__intro h1 {
  font-family: "Syne", system-ui, sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 800;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.inside-page__intro p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--igkz-muted);
  line-height: 1.55;
}

.inside-page__hint {
  margin: 0.75rem 0 0;
  max-width: 52rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--igkz-muted);
}

.inside-page__hint a {
  color: var(--igkz-gk);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 245, 42, 0.35);
}

.inside-page__hint a:hover {
  color: #b8ffd4;
}

.inside-masonry {
  display: grid;
  /* auto-fit collapses empty tracks so a single story spans the full row; auto-fill leaves narrow columns. */
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(1rem, 2vw, 1.25rem);
}

.inside-article {
  scroll-margin-top: calc(var(--gkz-spine-h, 52px) + 12px);
  display: flex;
  flex-direction: column;
}

.inside-article__edit-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.45rem;
}

a.inside-story-edit {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--igkz-gk);
  text-decoration: none;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 245, 42, 0.35);
  background: rgba(0, 245, 42, 0.06);
}

a.inside-story-edit:hover {
  background: rgba(0, 245, 42, 0.12);
}

.inside-article > .igkz-card {
  width: 100%;
  flex: 1;
}

/* Full story body sits outside the teaser link so markdown links are valid HTML. */
.inside-article:has(> .inside-article__prose) > .igkz-card {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: none;
}

.inside-article:has(> .inside-article__prose) > .inside-article__prose {
  border-radius: 0 0 var(--igkz-radius) var(--igkz-radius);
  border: 1px solid var(--igkz-border);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.inside-player-cta {
  display: inline-flex;
  align-items: center;
  margin: 0.5rem 1.35rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--igkz-gk);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 245, 42, 0.35);
  align-self: flex-start;
}

.inside-player-cta:hover,
.inside-player-cta:focus-visible {
  color: #b8ffd4;
  border-color: rgba(0, 245, 42, 0.65);
}

.inside-article__prose {
  padding: 1.25rem 1.35rem 1.5rem;
  border-top: 1px solid var(--igkz-border);
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(244, 248, 251, 0.88);
  overflow: visible;
}

.inside-article__prose p {
  line-height: 1.75;
  overflow: visible;
}

#inside-featured-story {
  scroll-margin-top: calc(var(--gkz-spine-h, 52px) + 16px);
}

.inside-article__prose p:first-child {
  margin-top: 0;
}

.inside-article__prose p:last-child {
  margin-bottom: 0;
}

/* —— Roster page module —— */
.roster-inside-trend {
  max-width: 1200px;
  margin: 0 auto 1.5rem;
  padding: 0 max(1rem, 3vw);
}

.roster-inside-trend__inner {
  border-radius: var(--igkz-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(12, 15, 20, 0.95), rgba(5, 6, 8, 0.98));
  padding: 1.1rem 1.15rem 1.2rem;
  overflow: hidden;
}

.roster-inside-trend__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.roster-inside-trend__title {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--igkz-gk);
  margin: 0;
}

.roster-inside-trend__more {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(244, 248, 251, 0.75);
  text-decoration: none;
}

.roster-inside-trend__more:hover,
.roster-inside-trend__more:focus-visible {
  color: var(--igkz-gk);
}

.roster-inside-trend__rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

@media (max-width: 720px) {
  .roster-inside-trend__rail {
    grid-template-columns: 1fr;
  }
}

.roster-inside-trend__card {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 0.45rem;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.roster-inside-trend__card:hover,
.roster-inside-trend__card:focus-visible {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 245, 42, 0.2);
}

.roster-inside-trend__thumb {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: #111;
}

.roster-inside-trend__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767.98px) {
  .roster-inside-trend__thumb img {
    object-fit: contain;
  }
}

.roster-inside-trend__meta {
  min-width: 0;
}

.roster-inside-trend__cat {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--igkz-gk);
  margin: 0 0 0.15rem;
}

.roster-inside-trend__headline {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
