/* ═══════ MEDIA v2 — clean list view, no covers ═══════ */

/* HERO — минимальная полоса в одну строку */
.media-hero-mini { padding: 56px 0 18px; background: var(--white); border-bottom: 1px solid var(--gray-200); }
.media-hero-row { display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; }
.media-mark { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 13px; color: var(--gray-700); text-transform: uppercase; letter-spacing: 0.12em; margin: 0; font-weight: 500; }
.media-mark::before { content: ''; display: inline-block; width: 8px; height: 8px; background: var(--orange); border-radius: 50%; animation: pulse 2s infinite; }
.media-mark--home { text-decoration: none; color: var(--gray-700); }
.media-mark--home::before { display: none; }
.media-tagline { font-family: var(--font-body); font-size: 15px; color: var(--gray-600); margin: 0; }
.media-tagline a { color: inherit; text-decoration: none; transition: color 0.15s; }
.media-tagline a:hover { color: var(--orange); }

/* LAYOUT */
.media-layout { display: grid; grid-template-columns: 240px 1fr; gap: 56px; }
@media (max-width: 1024px) { .media-layout { grid-template-columns: 1fr; gap: 32px; } }

/* SIDEBAR */
.media-sidebar { position: sticky; top: 96px; align-self: start; height: max-content; }
@media (max-width: 1024px) { .media-sidebar { position: static; } }

.sidebar-section { margin-bottom: 28px; padding-bottom: 22px; border-bottom: 1px solid var(--gray-200); }
.sidebar-section:last-child { border-bottom: 0; padding-bottom: 0; }
.sidebar-label { font-family: var(--font-mono); font-size: 10px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.sidebar-nav { display: flex; flex-direction: column; gap: 1px; }
.sidebar-nav-item { display: flex; align-items: center; gap: 11px; padding: 8px 12px; border-radius: 8px; text-decoration: none; color: var(--gray-700); font-size: 14.5px; font-weight: 500; transition: background 0.15s, color 0.15s; }
.sidebar-nav-item:hover { background: var(--gray-100); color: var(--black); }
.sidebar-nav-item.active { background: var(--black); color: var(--white); }
.sidebar-nav-item .ic-emoji { font-size: 16px; line-height: 1; display: inline-flex; align-items: center; justify-content: center; width: 20px; flex-shrink: 0; }

.sidebar-subscribe { display: flex; flex-direction: column; gap: 6px; }
.sub-btn { display: inline-flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 8px; background: var(--gray-50); border: 1px solid var(--gray-200); text-decoration: none; color: var(--black); font-size: 13.5px; font-weight: 500; transition: border-color 0.15s, transform 0.15s; }
.sub-btn:hover { border-color: var(--orange); transform: translateY(-1px); }
.sub-btn .ic { width: 16px; height: 16px; color: var(--orange); }

.sidebar-cta { background: var(--orange-bg); border-radius: 12px; padding: 18px; }
.sidebar-cta-title { font-family: var(--font-display); font-weight: 600; font-size: 15px; line-height: 1.3; color: var(--black); margin-bottom: 6px; }
.sidebar-cta-desc { font-size: 12.5px; color: var(--gray-700); line-height: 1.45; margin-bottom: 12px; }
.sidebar-cta-btn { display: block; background: var(--orange); color: var(--white); padding: 10px 14px; border-radius: 8px; font-size: 13px; font-weight: 500; text-decoration: none; text-align: center; transition: background 0.2s; }
.sidebar-cta-btn:hover { background: #e54d21; }

/* MAIN FEED */
main { min-width: 0; }

/* Lead article — главная без обложки, крупно */
.lead-article { display: block; padding: 28px 0 36px; border-bottom: 1px solid var(--gray-200); margin-bottom: 8px; text-decoration: none; color: var(--black); transition: padding-left 0.2s; }
.lead-article:hover { padding-left: 4px; }
.lead-article:hover .lead-article-title { color: var(--orange); }
.lead-article-rubric { font-family: var(--font-mono); font-size: 11px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; font-weight: 500; }
.lead-article-rubric::first-letter, .lead-article-rubric { color: var(--gray-700); }
.lead-article-title { font-family: var(--font-display); font-weight: 500; font-size: 38px; line-height: 1.08; letter-spacing: -0.025em; color: var(--black); margin: 0 0 14px; transition: color 0.15s; }
.lead-article-lead { font-family: var(--font-body); font-size: 17px; line-height: 1.55; color: var(--gray-700); margin: 0; max-width: 720px; }

/* Article list — список строк */
.article-list { display: flex; flex-direction: column; }
.article-row { display: block; padding: 26px 0; border-bottom: 1px solid var(--gray-200); text-decoration: none; color: var(--black); transition: padding-left 0.2s; }
.article-row:hover { padding-left: 4px; }
.article-row:hover .article-row-title { color: var(--orange); }
.article-rubric-row { font-family: var(--font-mono); font-size: 11px; color: var(--gray-700); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; font-weight: 500; }
.article-row-title { font-family: var(--font-display); font-weight: 500; font-size: 22px; line-height: 1.2; letter-spacing: -0.018em; color: var(--black); margin: 0 0 8px; transition: color 0.15s; }
.article-row-lead { font-family: var(--font-body); font-size: 14.5px; line-height: 1.5; color: var(--gray-600); margin: 0; max-width: 760px; }

@media (max-width: 768px) {
  .lead-article-title { font-size: 28px; }
  .article-row-title { font-size: 19px; }
  .lead-article-lead { font-size: 15px; }
}

/* Top block */
.top-block { background: var(--gray-50); border-radius: 16px; padding: 26px 30px; margin-top: 40px; }
.top-block-header { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--gray-200); }
.top-block-title { font-family: var(--font-display); font-weight: 600; font-size: 22px; letter-spacing: -0.02em; color: var(--black); margin: 0; }
.top-block-meta { font-family: var(--font-mono); font-size: 11px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.08em; }
.top-list { display: flex; flex-direction: column; gap: 0; }
.top-item { display: block; padding: 13px 0; border-bottom: 1px solid var(--gray-200); text-decoration: none; color: var(--black); transition: padding-left 0.15s; }
.top-item:last-child { border-bottom: 0; }
.top-item:hover { padding-left: 6px; }
.top-item:hover .top-item-title { color: var(--orange); }
.top-item-title { font-family: var(--font-display); font-weight: 500; font-size: 15.5px; line-height: 1.35; color: var(--black); margin: 0; transition: color 0.15s; }

/* Newsletter — без изменений из v1 */
.newsletter-block { background: var(--black); color: var(--white); border-radius: 18px; padding: 36px 44px; margin-top: 40px; position: relative; overflow: hidden; }
.newsletter-block::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, var(--orange) 0%, transparent 70%); opacity: 0.15; filter: blur(30px); }
.newsletter-inner { position: relative; z-index: 1; max-width: 560px; }
.newsletter-block h3 { font-family: var(--font-display); font-weight: 500; font-size: 26px; line-height: 1.1; letter-spacing: -0.025em; color: var(--white); margin: 0 0 10px; }
.newsletter-block p { font-size: 14.5px; line-height: 1.5; color: rgba(255,255,255,0.75); margin: 0 0 20px; }
.newsletter-form { display: flex; gap: 8px; flex-wrap: wrap; }
.newsletter-input { flex: 1; min-width: 220px; padding: 13px 18px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.05); color: var(--white); font-family: var(--font-body); font-size: 14px; outline: none; transition: border-color 0.15s; }
.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-input:focus { border-color: var(--orange); }
.newsletter-btn { background: var(--orange); color: var(--white); padding: 13px 22px; border: 0; border-radius: 10px; font-family: var(--font-body); font-size: 14px; font-weight: 500; cursor: pointer; transition: background 0.2s, transform 0.15s; }
.newsletter-btn:hover { background: #e54d21; transform: translateY(-1px); }

@media (max-width: 768px) {
  .newsletter-block { padding: 28px; }
  .newsletter-block h3 { font-size: 22px; }
}



/* ═══ MEDIA v3 — SVG icons + covers ═══ */

/* Sidebar: жёсткое выравнивание */
.sidebar-nav {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  width: 100% !important;
}
.sidebar-nav-item {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: 100% !important;
  box-sizing: border-box !important;
  gap: 14px !important;
  padding: 8px 12px !important;
  border-radius: 8px;
  text-decoration: none;
  color: var(--gray-700);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.3 !important;
  transition: background 0.15s, color 0.15s;
}
.sidebar-nav-item .nav-ic {
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  min-height: 48px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0;
  flex-grow: 0;
  vertical-align: middle;
  transition: transform 0.2s;
}
.sidebar-nav-item .nav-ic svg,
.sidebar-nav-item .nav-ic .ic {
  width: 20px !important;
  height: 20px !important;
  color: var(--gray-700);
  vertical-align: middle !important;
  display: block !important;
  stroke-width: 2;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: color 0.2s, transform 0.3s;
}
.sidebar-nav-item .nav-ic img {
  width: 48px !important;
  height: 48px !important;
  display: block !important;
  object-fit: contain;
}
.sidebar-nav-item .nav-text {
  display: inline-block;
  line-height: 1.3;
  vertical-align: middle;
  flex: 1;
}
.sidebar-nav-item:hover .nav-ic {
  transform: scale(1.06);
}
.sidebar-nav-item:hover .nav-ic svg {
  color: var(--orange);
  transform: scale(1.1);
}

/* Lead-article: обложка наверху */
.lead-article { padding: 0 0 36px; }
.lead-article-cover {
  height: 220px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s;
}
.lead-article-cover svg {
  width: 92px !important; height: 92px !important;
  color: rgba(0,0,0,0.55);
  fill: none; stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.5s, color 0.3s;
  vertical-align: middle;
}
.lead-article:hover .lead-article-cover svg {
  transform: scale(1.08);
  color: rgba(0,0,0,0.75);
}

/* Article rows */
.article-row {
  display: grid !important;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 22px 0;
  align-items: start;
}
.article-row:hover { padding-left: 0 !important; }
.article-row-cover {
  height: 130px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  transition: transform 0.3s;
}
.article-row-cover svg {
  width: 48px !important; height: 48px !important;
  color: rgba(0,0,0,0.55);
  fill: none; stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.4s, color 0.3s;
  vertical-align: middle;
}
.article-row:hover .article-row-cover svg {
  transform: scale(1.12);
  color: rgba(0,0,0,0.78);
}
.article-row-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.article-row-content { min-width: 0; }
@media (max-width: 640px) {
  .article-row { grid-template-columns: 1fr !important; gap: 14px; }
  .article-row-cover { height: 140px; }
}

/* Cover backgrounds — пастельные градиенты */
.cover-finance    { background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); }
.cover-business   { background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%); }
.cover-marketing  { background: linear-gradient(135deg, #fff7f3 0%, #ffd0bb 100%); }
.cover-analytics  { background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%); }
.cover-sales      { background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%); }
.cover-team       { background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%); }
.cover-growth     { background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%); }
.cover-tech       { background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%); }
.cover-ecom       { background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%); }
.cover-news       { background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%); }
.cover-cases      { background: linear-gradient(135deg, #fff7f3 0%, #ffd0bb 100%); }

/* Sidebar: иконки без подложки */
.sidebar-nav-item { padding: 8px 12px; }
.sidebar-nav-item .nav-ic {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.sidebar-nav-item .nav-ic svg {
  width: 20px; height: 20px;
  color: var(--gray-700);
  stroke-width: 2;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: color 0.2s, transform 0.3s;
}
.sidebar-nav-item .nav-ic img {
  width: 48px; height: 48px;
  display: block;
  object-fit: contain;
}
.sidebar-nav-item:hover .nav-ic {
  transform: scale(1.06);
}
.sidebar-nav-item:hover .nav-ic svg {
  color: var(--orange);
  transform: scale(1.1);
}

/* Lead-article: обложка наверху */
.lead-article { padding: 0 0 36px; }
.lead-article-cover {
  height: 220px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s;
}
.lead-article-cover svg {
  width: 92px; height: 92px;
  color: rgba(0,0,0,0.55);
  fill: none; stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.5s, color 0.3s;
}
.lead-article:hover .lead-article-cover svg {
  transform: scale(1.08);
  color: rgba(0,0,0,0.75);
}

/* Article rows — горизонтальная компоновка: обложка слева, текст справа */
.article-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 22px 0;
  align-items: start;
}
.article-row:hover { padding-left: 0 !important; }
.article-row-cover {
  height: 130px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  transition: transform 0.3s;
}
.article-row-cover svg {
  width: 48px; height: 48px;
  color: rgba(0,0,0,0.55);
  fill: none; stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.4s, color 0.3s;
}
.article-row:hover .article-row-cover svg {
  transform: scale(1.12);
  color: rgba(0,0,0,0.78);
}
.article-row-content { min-width: 0; }
@media (max-width: 640px) {
  .article-row { grid-template-columns: 1fr; gap: 14px; }
  .article-row-cover { height: 140px; }
}

/* Цвета обложек по рубрикам — пастельные градиенты */
.cover-finance    { background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); }
.cover-business   { background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%); }
.cover-marketing  { background: linear-gradient(135deg, #fff7f3 0%, #ffd0bb 100%); }
.cover-analytics  { background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%); }
.cover-sales      { background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%); }
.cover-team       { background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%); }
.cover-growth     { background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%); }
.cover-tech       { background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%); }
.cover-ecom       { background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%); }
.cover-news       { background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%); }
.cover-cases      { background: linear-gradient(135deg, #fff7f3 0%, #ffd0bb 100%); }


/* ═══ Subscribe popup ═══ */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 20px;
}
.popup-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.popup-card {
  background: var(--white);
  border-radius: 18px;
  padding: 36px 36px 28px;
  max-width: 480px;
  width: 100%;
  position: relative;
  transform: translateY(-20px) scale(0.98);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.popup-overlay.open .popup-card {
  transform: translateY(0) scale(1);
}
.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--gray-100);
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}
.popup-close:hover {
  background: var(--gray-200);
  transform: rotate(90deg);
}
.popup-close .ic {
  width: 16px;
  height: 16px;
  color: var(--gray-700);
  stroke-width: 2;
}
.popup-mark {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  font-weight: 500;
}
.popup-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--black);
  margin: 0 0 12px;
}
.popup-desc {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--gray-600);
  margin: 0 0 22px;
}
.popup-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.popup-input {
  flex: 1;
  min-width: 220px;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid var(--gray-300);
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.popup-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,92,44,0.12);
}
.popup-btn {
  background: var(--orange);
  color: var(--white);
  padding: 13px 22px;
  border: 0;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.popup-btn:hover {
  background: #e54d21;
  transform: translateY(-1px);
}
.popup-note {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--gray-500);
  line-height: 1.45;
  letter-spacing: 0.02em;
}

@media (max-width: 540px) {
  .popup-card { padding: 28px 22px 22px; border-radius: 14px; }
  .popup-title { font-size: 22px; }
}

/* Mobile: horizontal rubric carousel */
@media (max-width: 768px) {
  .media-hero-mini { padding: 32px 0 16px; }
  .media-layout { gap: 24px; }
  .media-sidebar { width: 100%; }

  /* CTA и подписка не нужны в верхней части на мобильном */
  .media-sidebar .sidebar-section--subscribe,
  .media-sidebar .sidebar-cta { display: none; }

  .media-sidebar .sidebar-section {
    margin-bottom: 16px;
    padding-bottom: 0;
    border-bottom: 0;
  }
  .media-sidebar .sidebar-label {
    margin-bottom: 12px;
    font-size: 10px;
  }

  /* "Все материалы" — компактная кнопка над каруселью */
  .media-sidebar .sidebar-section:first-child .sidebar-nav {
    display: flex;
    flex-direction: row;
  }
  .media-sidebar .sidebar-section:first-child .sidebar-nav-item {
    flex: 0 0 auto;
    width: auto;
    padding: 8px 14px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    font-size: 13px;
  }
  .media-sidebar .sidebar-section:first-child .sidebar-nav-item.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
  }
  .media-sidebar .sidebar-section:first-child .sidebar-nav-item .nav-ic,
  .media-sidebar .sidebar-section:first-child .sidebar-nav-item .nav-ic img {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
  }

  /* Рубрики — горизонтальный свайп, 2 полных + третья на половину */
  .media-sidebar .rubrics-nav {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    padding-bottom: 8px !important;
  }
  .media-sidebar .rubrics-nav::-webkit-scrollbar { display: none !important; }
  .media-sidebar .rubrics-nav .sidebar-nav-item {
    flex: 0 0 calc(50% - 6px - 16px) !important;
    max-width: 180px !important;
    scroll-snap-align: start !important;
    box-sizing: border-box !important;
    padding: 10px 12px !important;
    background: var(--gray-50) !important;
    border: 1px solid var(--gray-200) !important;
    width: auto !important;
  }
  .media-sidebar .rubrics-nav .sidebar-nav-item.active {
    background: var(--black) !important;
    color: var(--white) !important;
    border-color: var(--black) !important;
  }
  .media-sidebar .rubrics-nav .sidebar-nav-item .nav-ic {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
  }
  .media-sidebar .rubrics-nav .sidebar-nav-item .nav-ic img {
    width: 40px !important;
    height: 40px !important;
  }

  /* Main content mobile */
  .lead-article { padding: 22px 0 28px; }
  .lead-article-title { font-size: 26px; }
  .article-row { padding: 20px 0; }
  .article-row-title { font-size: 18px; }

  /* Top block */
  .top-block { padding: 22px; margin-top: 32px; }
  .top-block-title { font-size: 20px; }

  /* Newsletter */
  .newsletter-block { padding: 28px 22px; margin-top: 32px; }
  .newsletter-block h3 { font-size: 22px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { min-width: auto; width: 100%; }
  .newsletter-btn { width: 100%; }

  /* Container & page title */
  .container { padding-left: 16px; padding-right: 16px; }
  .media-page-title { font-size: 26px !important; }
}

