/* ===== GLOBAL COLORS ===== */
:root {
  --primary: #2563eb;
  --secondary: #1d4ed8;
  --accent: #ff6233;

  --bg-body: #020617;
  --bg-light: #0f172a;
  --bg-section: #0b1220;

  --text-dark: #e2e8f0;
  --text-muted: #94a3b8;
  --text-soft: #cbd5e1;

  --nav-bg: rgba(15, 23, 42, 0.9);
  --nav-text: #e2e8f0;

  --card-bg: rgba(15, 23, 42, 0.78);
  --card-border: rgba(148, 163, 184, 0.2);
  --line-soft: rgba(148, 163, 184, 0.16);

  --card-shadow: 0 18px 45px rgba(0, 0, 0, 0.38);
  --soft-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);

  --hero-grad: radial-gradient(circle at top, #0b1220 0%, #020617 60%);

  --select-bg: #0f172a;
  --select-border: rgba(148, 163, 184, 0.35);
  --select-text: #e2e8f0;

  --auto-item-bg: #0f172a;
  --auto-item-text: #e2e8f0;
  --search-active-bg: rgba(37, 99, 235, 0.14);
  --search-hover-bg: rgba(37, 99, 235, 0.08);

  --faq-bg: #0f172a;

  --analytics-card-bg: rgba(15, 23, 42, 0.88);
  --analytics-head-bg: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(17, 24, 39, 0.98));
  --analytics-head-border: rgba(148, 163, 184, 0.16);
  --analytics-row-border: rgba(148, 163, 184, 0.12);
  --analytics-row-hover: rgba(148, 163, 184, 0.08);

  --views-bar-track: rgba(148, 163, 184, 0.22);
  --views-count: #e2e8f0;

  --footer-bg: #020617;
  --footer-link: #cbd5e1;
  --footer-link-hover: #ffffff;
}

/* ===== LIGHT MODE ===== */
html.light-mode {
  --bg-body: #f3f4f6;
  --bg-light: #ffffff;
  --bg-section: #f9fafb;

  --text-dark: #0f172a;
  --text-muted: #6b7280;
  --text-soft: #475569;

  --nav-bg: rgba(255, 255, 255, 0.92);
  --nav-text: #0f172a;

  --card-bg: rgba(255, 255, 255, 0.92);
  --card-border: rgba(148, 163, 184, 0.45);
  --line-soft: rgba(148, 163, 184, 0.25);

  --card-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --soft-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);

  --hero-grad: radial-gradient(circle at top, #e0f2fe 0%, #f9fafb 55%, #e5e7eb 100%);

  --select-bg: #ffffff;
  --select-border: rgba(148, 163, 184, 0.7);
  --select-text: #0f172a;

  --auto-item-bg: #ffffff;
  --auto-item-text: #334155;
  --search-active-bg: rgba(37, 99, 235, 0.10);
  --search-hover-bg: rgba(37, 99, 235, 0.06);

  --faq-bg: #f8fafc;

  --analytics-card-bg: rgba(255, 255, 255, 0.96);
  --analytics-head-bg: linear-gradient(180deg, rgba(248, 250, 252, 0.95), rgba(255, 255, 255, 0.96));
  --analytics-head-border: rgba(226, 232, 240, 0.95);
  --analytics-row-border: rgba(241, 245, 249, 1);

  --views-bar-track: #e2e8f0;
  --views-count: #334155;

  --footer-bg: #020617;
  --footer-link: #cbd5e1;
  --footer-link-hover: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

html,
body {
  width: 100%;
}

html {
  background: var(--bg-body);
  overflow-x: hidden;
}

body {
  min-height: 100%;
  background: var(--bg-body);
  color: var(--text-dark);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

/* Cursor Glow */
.cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.16) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 14px 8%;
  background: var(--nav-bg);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 30px;
  object-fit: contain;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: var(--nav-text);
  text-decoration: none;
  position: relative;
  font-weight: 500;
  font-size: 15px;
  -webkit-tap-highlight-color: transparent;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
  transition: width 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
  .nav-links a:hover::after {
    width: 100%;
  }
}

/* MAIN WRAPPER */
.main-content {
  flex: 1;
  padding-top: 90px;
  background: var(--hero-grad);
}

/* MAIN SECTION */
.notes-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 34px 24px 80px;
}

.article-shell {
  max-width: 900px;
  margin: 0 auto;
}

.article-header {
  text-align: left;
  margin-bottom: 18px;
}

.section-title {
  font-size: 28px;
  line-height: 1.18;
  margin-bottom: 14px;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  font-weight: 700;
}

.board-intro {
  margin-bottom: 12px;
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 500;
}

.board-context {
  margin-bottom: 14px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.85;
}

.board-context:empty {
  display: none;
}

/* BREADCRUMB */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 24px;
  margin-bottom: 8px;
  color: #004cff;
  font-size: 13px;
}

.breadcrumb-link {
  background: transparent;
  border: none;
  padding: 0;
  color: #004cff;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 600;
}

.breadcrumb-current {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 13px;
  line-height: 1.5;
}

.breadcrumb-link:hover {
  color: var(--primary);
}

.crumb-sep {
  color: var(--primary);
  opacity: 0.9;
  font-size: 13px;
}

/* SEARCH */
.article-search-section {
  margin-bottom: 22px;
}

.search-box-wrapper {
  max-width: 760px;
  position: relative;
}

.search-input-wrap {
  position: relative;
  width: 100%;
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 15px;
  pointer-events: none;
}

#boardSearchInput {
  width: 100%;
  padding: 14px 16px 14px 42px;
  border-radius: 999px;
  border: 1px solid var(--select-border);
  background: var(--select-bg);
  color: var(--select-text);
  outline: none;
  font-size: 14px;
  font-weight: 500;
  transition: 0.25s ease;
  box-shadow: var(--soft-shadow);
}

#boardSearchInput::placeholder {
  color: var(--text-muted);
}

#boardSearchInput:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.helper-text {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: left;
}

.helper-text:empty {
  display: none;
}
.search-article-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.search-article-list .article-list-item {
  margin-bottom: 4px;
  padding-left: 0;
}

.search-article-list .article-list-item::before {
  content: none;
}

.search-results {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  z-index: 30;
  text-align: left;
  min-height: 0;
}

.search-result-button {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  width: 100%;
  padding: 8px 12px;
  border-radius: 10px;
  text-align: left;
}

.search-result-button:hover {
  background: var(--search-hover-bg);
}

.search-result-button.search-result-active {
  background: var(--search-active-bg) !important;
}

.search-result-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

.search-result-meta {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.search-results-box {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  box-shadow: var(--soft-shadow);
  padding: 8px 10px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  max-height: 360px;
  overflow-y: auto;
}

/* STATIC ARTICLE BLOCKS */
.article-static-block {
  margin: 0 0 28px;
  text-align: left;
}

.article-static-block h2 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.article-static-block p {
  margin-bottom: 14px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.95;
}

.article-middle-block {
  margin-top: 30px;
}

.article-bottom-block {
  margin-top: 30px;
}

/* MAIN DYNAMIC ARTICLE AREA */
.article-content {
  text-align: left;
  min-height: 260px;
}

.subjects-container {
  display: block;
  margin-top: 0;
  text-align: left;
  min-height: 220px;
}

/* .subjects-container>*{
  animation: fadeInUp 0.28s ease;
} */

.board-article,
.board-text-block {
  max-width: 100%;
  margin: 0 0 10px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}


.article-subtitle,
.text-block-title {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.article-paragraph {
  margin-bottom: 14px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.95;
}

/* ARTICLE BULLET LINKS */
.article-list {
  margin: 6px 0 16px 22px;
  padding: 0;
}

.article-list-item {
  margin-bottom: 8px;
  color: var(--text-dark);
}

.article-link-button {
  background: transparent;
  border: none;
  color: #004cff;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  padding: 0;
}

.search-result-button.search-result-active {
  background: rgba(37, 99, 235, 0.12) !important;
}

.article-link-button:hover {
  color: var(--primary);
}

.no-results {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
  padding: 6px 0;
}

/* RANDOM PYQ INSIDE ARTICLE */
.auto-pyq-section {
  margin-top: 26px;
  text-align: left;
}

.auto-title {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--text-dark);
}

.auto-copy {
  margin-bottom: 14px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.85;
}

.auto-loading {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 15px;
  animation: fadePulse 1.5s infinite;
}

@keyframes fadePulse {
  0% { opacity: 0.4; }
  50% { opacity: 1; }
  100% { opacity: 0.4; }
}

.auto-pyq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 100%;
}

.auto-item {
  background: transparent;
  padding: 0;
  border-radius: 0;
  display: block;
  box-shadow: none;
  text-align: left;
  border: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.auto-item.show {
  opacity: 1;
  transform: translateY(0);
}

.auto-item-link {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--auto-item-text);
  font-size: 14px;
  line-height: 1.75;
  font-weight: 600;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.auto-item-link:hover {
  color: var(--primary);
}

/* INFO + FAQ */
.info-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 0;
  text-align: left;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
}

.info-section h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.faq-section {
  max-width: 900px;
  margin: 70px auto;
  padding: 30px 0 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  text-align: left;
  line-height: 1.8;
}

.faq-section h3 {
  text-align: left;
  margin-bottom: 22px;
  font-size: 22px;
  color: var(--text-dark);
}

.faq-question {
  font-weight: 700;
  font-size: 16px;
  margin-top: 18px;
  color: var(--text-dark);
}

.faq-question::before {
  content: "• ";
  margin-right: 4px;
  color: var(--primary);
}

.faq-question:first-of-type {
  margin-top: 0;
}

.faq-answer {
  color: var(--text-muted);
  margin-top: 6px;
  font-size: 15px;
}

/* STATS */
.pyq-stats {
  margin-top: 42px;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat span {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
}

.stat p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ANALYTICS SECTION */
.analytics-section {
  margin-top: 64px;
  text-align: left;
}

.analytics-title {
  text-align: left;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  font-family: inherit;
}

.analytics-gap-title {
  margin-top: 42px;
}

.analytics-subtitle {
  text-align: left;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 22px;
  font-family: inherit;
}

.analytics-card {
  background: var(--analytics-card-bg);
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
  overflow: hidden;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.analytics-header {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 260px;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: var(--analytics-head-bg);
  border-bottom: 1px solid var(--analytics-head-border);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0.04em;
}

.views-head {
  text-align: right;
}

.analytics-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 260px;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--analytics-row-border);
  transition: background 0.22s ease;
}

.analytics-row:last-child {
  border-bottom: none;
}

.analytics-row:hover {
  background: var(--analytics-row-hover);
}

.rank-number {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  color: #c89d22;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.15);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.analytics-name {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0;
}

.board-name {
  min-width: 0;
  display: block;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.views-wrapper {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.views-bar-bg {
  flex: 1;
  min-width: 0;
  height: 12px;
  background: var(--views-bar-track);
  border-radius: 999px;
  overflow: hidden;
}

.views-bar {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #60a5fa 0%, #3b82f6 35%, #2563eb 100%);
  transition: width 0.6s ease;
}

.views-count {
  flex: 0 0 52px;
  min-width: 52px;
  text-align: right;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  color: var(--views-count);
  font-variant-numeric: tabular-nums;
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* TABLET & MOBILE (<= 900px) */
@media (max-width: 900px) {
  .navbar {
    padding: 12px 6%;
  }

  .nav-links {
    gap: 18px;
  }

  .main-content {
    padding-top: 80px;
  }

  .notes-section {
    padding: 30px 6% 70px;
  }

  .cursor-glow {
    display: none;
  }

  .section-title {
    font-size: 24px;
  }

  .board-intro {
    font-size: 14px;
  }

  .board-context,
  .article-static-block p,
  .article-paragraph {
    font-size: 14px;
  }

  .article-static-block h2,
  .article-subtitle,
  .text-block-title,
  .auto-title,
  .faq-section h3 {
    font-size: 20px;
  }

  .analytics-section {
    margin-top: 54px;
  }

  .analytics-title {
    font-size: 24px;
    margin-bottom: 6px;
  }

  .analytics-gap-title {
    margin-top: 34px;
  }

  .analytics-subtitle {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .analytics-header {
    grid-template-columns: 44px minmax(0, 1fr) 132px;
    gap: 10px;
    padding: 14px 12px;
    font-size: 10.5px;
  }

  .analytics-row {
    grid-template-columns: 44px minmax(0, 1fr) 132px;
    gap: 10px;
    padding: 14px 12px;
  }

  .rank-number {
    font-size: 17px;
  }

  .board-name {
    font-size: 11px;
    line-height: 1.25;
    font-weight: 700;
  }

  .views-wrapper {
    gap: 7px;
  }

  .views-bar-bg {
    height: 8px;
  }

  .views-count {
    flex: 0 0 28px;
    min-width: 28px;
    font-size: 10px;
    font-weight: 800;
  }
}

/* SMALL PHONES (<= 600px) */
@media (max-width: 600px) {
  .nav-links {
    gap: 14px;
  }

  .nav-links a {
    font-size: 13px;
  }

  .section-title {
    font-size: 22px;
  }

  .search-box-wrapper {
    max-width: 100%;
  }

  #boardSearchInput {
    padding: 13px 14px 13px 40px;
    font-size: 13px;
  }

  .article-static-block h2,
  .article-subtitle,
  .text-block-title,
  .auto-title,
  .info-section h3,
  .faq-section h3 {
    font-size: 19px;
  }

  .board-intro,
  .board-context,
  .article-static-block p,
  .article-paragraph,
  .auto-copy,
  .info-section,
  .faq-answer {
    font-size: 14px;
  }

  .analytics-section {
    margin-top: 48px;
  }

  .analytics-title {
    font-size: 22px;
  }

  .analytics-subtitle {
    font-size: 12.5px;
  }

  .analytics-header {
    grid-template-columns: 38px minmax(0, 1fr) 120px;
    gap: 8px;
    padding: 12px 10px;
    font-size: 9.5px;
  }

  .analytics-row {
    grid-template-columns: 38px minmax(0, 1fr) 120px;
    gap: 8px;
    padding: 12px 10px;
  }

  .rank-number {
    font-size: 15px;
  }

  .board-name {
    font-size: 10px;
    line-height: 1.2;
  }

  .views-bar-bg {
    height: 7px;
  }

  .views-count {
    flex: 0 0 26px;
    min-width: 26px;
    font-size: 9.5px;
  }

  .auto-item-link,
  .article-link-button {
    font-size: 14px;
  }

  .info-section {
    margin: 50px auto;
  }

  .faq-section {
    margin: 56px auto;
    padding-top: 0;
  }

  .faq-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .faq-question {
    font-size: 15px;
  }

  .pyq-stats {
    gap: 28px;
  }
}

/* EXTRA SMALL PHONES (<= 400px) */
@media (max-width: 400px) {
  .navbar {
    padding: 10px 5%;
  }

  .logo-img {
    height: 24px;
  }

  .nav-links {
    gap: 10px;
  }

  .nav-links a {
    font-size: 12px;
  }

  .board-intro,
  .board-context,
  .article-static-block p,
  .article-paragraph,
  .auto-copy,
  .faq-answer {
    font-size: 13px;
  }

  .analytics-header {
    grid-template-columns: 34px minmax(0, 1fr) 108px;
    gap: 6px;
    padding: 11px 8px;
  }

  .analytics-row {
    grid-template-columns: 34px minmax(0, 1fr) 108px;
    gap: 6px;
    padding: 11px 8px;
  }

  .rank-number {
    font-size: 14px;
  }

  .board-name {
    font-size: 9px;
    line-height: 1.15;
  }

  .views-wrapper {
    gap: 5px;
  }

  .views-bar-bg {
    height: 6px;
  }

  .views-count {
    flex: 0 0 24px;
    min-width: 24px;
    font-size: 9px;
  }

  .article-link-button {
    font-size: 13px;
    line-height: 1.7;
  }

  .auto-item-link {
    font-size: 13px;
  }
}

/* ULTRA SMALL PHONES (<= 340px) */
@media (max-width: 340px) {
  .logo-img {
    height: 24px;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .nav-links a {
    font-size: 12px;
    white-space: nowrap;
  }
}

/* FOOTER */
.footer {
  background: var(--footer-bg);
  padding: 32px 8% 30px;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--footer-link);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--footer-link-hover);
}

.copyright {
  font-size: 13px;
  color: var(--footer-link);
}









/* =========================
   MEDIA BASE (GLOBAL FIX)
========================= */

.article-media {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  display: block;
  background: #f6f6f6;

  /* ✅ IMPORTANT FIX */
  margin: 20px auto;   /* ← ye sab jagah spacing dega */
  max-width: 760px;   /* ← center + readable width */
}

/* =========================
   SINGLE IMAGE
========================= */

.college-article .article-media:only-of-type {
  margin: 26px auto;
}

/* =========================
   MULTI IMAGE GRID
========================= */

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 22px 0;
}

/* grid images */
.media-grid .article-media {
  margin: 0; /* ❌ remove extra margin inside grid */
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
}

/* =========================
   VIDEO
========================= */

video.article-media {
  margin: 24px auto;
  max-width: 760px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .article-media {
    margin: 16px auto;
    max-width: 100%;
  }

  .media-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .media-grid {
    grid-template-columns: 1fr;
  }
}

