/* =========================================================
   NEWS PAGE - CLEAN FULL CSS
   ========================================================= */

/* outer wrapper */
.news-page-wrap,
.news-article-page,
.news-empty {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 14px 0 28px;
  box-sizing: border-box;
}

/* hide extra right ad blocks only on news page */
.news-page .page-right-ad,
.news-page .right-ad,
.news-page .right-banner,
.news-page .right-rail,
.news-page .ad-right,
.news-page .layout-right-ad,
.news-page .site-right-ad,
.news-page .news-right-ad,
body.news-page .grid > aside.panel.ad.ad-right {
  display: none !important;
}

/* use center + right space like home */
body.news-page .grid {
  grid-template-columns: var(--ad-w) minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
}

body.news-page .grid > section.panel {
  grid-column: 2 / 4;
  min-width: 0;
}

body.news-page .panel {
  overflow: visible;
}

body.news-page .panel-b {
  padding: 14px;
}

/* =========================================================
   FILTER BAR
   ========================================================= */
.news-filter-bar {
  width: 100%;
  margin: 0 0 16px;
  padding: 14px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(21, 28, 44, 0.94), rgba(11, 16, 29, 0.98));
  border: 1px solid rgba(122, 144, 202, 0.18);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
}

.news-search-form {
  margin: 0;
}

.news-search-form__box {
  position: relative;
  width: 100%;
  margin-bottom: 12px;
}

.news-search-form__input {
  width: 100%;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(137, 156, 214, 0.18);
  background: rgba(7, 11, 22, 0.96);
  color: #eef3ff;
  padding: 0 54px 0 14px;
  outline: none;
  font-size: 14px;
  transition: 0.18s ease;
  box-sizing: border-box;
}

.news-search-form__input::placeholder {
  color: #8fa0cc;
}

.news-search-form__input:focus {
  border-color: rgba(123, 154, 255, 0.48);
  box-shadow: 0 0 0 3px rgba(94, 123, 221, 0.12);
}

.news-search-form__btn {
  position: absolute;
  top: 50%;
  right: 6px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 12px;
  transform: translateY(-50%);
  background: linear-gradient(180deg, #5f8fff, #4f74d8);
  color: #fff;
  cursor: pointer;
}

.news-quick-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.news-quick-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  text-decoration: none;
  color: #dfe8ff;
  background: rgba(33, 41, 63, 0.72);
  border: 1px solid rgba(121, 143, 205, 0.16);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  transition: 0.18s ease;
  box-sizing: border-box;
}

.news-quick-chip:hover,
.news-quick-chip.is-active {
  background: linear-gradient(180deg, #5d8bfd, #4d71d3);
  color: #fff;
  border-color: transparent;
}

/* =========================================================
   MAIN NEWS LAYOUT
   ========================================================= */
.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(320px, 0.9fr);
  gap: 18px;
  width: 100%;
  align-items: start;
}

.news-main {
  width: 100%;
  min-width: 0;
  max-width: none;
}

.news-side {
  width: 100%;
  min-width: 0;
}

/* =========================================================
   FEATURED + SIDE TOP AREA
   ========================================================= */
.news-featured-and-side {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(320px, 0.9fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
  width: 100%;
}

.news-featured {
  position: relative;
  min-height: 560px;
  border-radius: 24px;
  overflow: hidden;
  background-color: #0e1526;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(125, 146, 207, 0.16);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
}

.news-featured__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 6, 12, 0.22), rgba(4, 6, 12, 0.78) 52%, rgba(4, 6, 12, 0.92) 100%),
    linear-gradient(90deg, rgba(8, 11, 20, 0.74) 0%, rgba(8, 11, 20, 0.26) 54%, rgba(8, 11, 20, 0.64) 100%);
}

.news-featured__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  padding: 24px;
  color: #fff;
  box-sizing: border-box;
}

.news-featured__badge {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(84, 123, 236, 0.92);
}

.news-featured__title {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.08;
  font-weight: 900;
  word-break: break-word;
}

.news-featured__title a {
  color: #fff;
  text-decoration: none;
}

.news-featured__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  color: #d9e4ff;
  font-size: 13px;
}

.news-featured__summary {
  margin: 0 0 14px;
  max-width: 980px;
  color: #f0f5ff;
  font-size: 15px;
  line-height: 1.65;
  word-break: break-word;
}

.news-featured__bullets {
  margin: 0 0 16px;
  padding-left: 20px;
  color: #f3f6ff;
  font-size: 14px;
  line-height: 1.65;
}

.news-featured__bullets li + li {
  margin-top: 8px;
}

.news-featured__actions {
  margin-top: auto;
  padding-top: 8px;
}

/* =========================================================
   SIDE PANELS
   ========================================================= */
.news-side-panel {
  padding: 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(28, 35, 53, 0.95), rgba(20, 26, 40, 0.97));
  border: 1px solid rgba(124, 145, 205, 0.16);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
  box-sizing: border-box;
}

.news-side-panel + .news-side-panel {
  margin-top: 16px;
}

.news-side-panel--soft {
  background: linear-gradient(180deg, rgba(37, 45, 66, 0.92), rgba(23, 29, 43, 0.96));
}

.news-side-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.news-side-head h3 {
  margin: 0;
  color: #f1f5ff;
  font-size: 17px;
  font-weight: 800;
}

.news-side-head a {
  color: #9fc0ff;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}

.news-side-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.news-side-item {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 12px;
  text-decoration: none;
  color: inherit;
  align-items: center;
  min-width: 0;
}

.news-side-item__thumb {
  width: 78px;
  height: 78px;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(9, 12, 22, 0.9);
  border: 1px solid rgba(122, 144, 201, 0.12);
}

.news-side-item__thumb img,
.news-side-item__thumb .news-side-empty {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-side-item__title {
  color: #f1f4fc;
  font-weight: 800;
  font-size: 15px;
  line-height: 1.3;
  margin-bottom: 6px;
  word-break: break-word;
}

.news-side-item__meta {
  color: #97a7cf;
  font-size: 12px;
  line-height: 1.4;
  word-break: break-word;
}

.news-topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.news-topic-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  text-decoration: none;
  color: #ecf1ff;
  background: rgba(40, 48, 69, 0.96);
  border: 1px solid rgba(125, 143, 198, 0.16);
  font-size: 12px;
  font-weight: 700;
  box-sizing: border-box;
}

/* =========================================================
   SECTION HEAD
   ========================================================= */
.news-cards-wrap {
  margin-top: 0;
  width: 100%;
}

.news-sec-head {
  margin-bottom: 14px;
}

.news-sec-head h2 {
  margin: 0 0 4px;
  color: #f1f4fc;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 900;
}

.news-sec-sub {
  color: #9dadcf;
  font-size: 13px;
}

/* =========================================================
   CARDS GRID
   ========================================================= */
.news-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  width: 100%;
}

.news-cards-grid--full {
  grid-template-columns: 1fr;
}

/* card itself */
.news-list-card {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 0;
  width: 100%;
  min-width: 0;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(20, 26, 39, 0.98), rgba(13, 18, 30, 0.99));
  border: 1px solid rgba(124, 145, 205, 0.14);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.15);
  min-height: 260px;
}

.news-list-card__media {
  display: block;
  min-height: 100%;
  background: #0b1020;
  min-width: 0;
}

.news-list-card__img,
.news-list-card__img--empty {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}

.news-list-card__img--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9dadcf;
}

.news-list-card__body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  box-sizing: border-box;
}

.news-list-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #93a6d2;
  font-size: 12px;
  margin-bottom: 12px;
}

.news-list-card__title {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.18;
  font-weight: 900;
  word-break: break-word;
}

.news-list-card__title a {
  color: #f4f7ff;
  text-decoration: none;
}

.news-list-card__summary {
  margin: 0 0 12px;
  color: #c5d0ea;
  font-size: 15px;
  line-height: 1.7;
  word-break: break-word;
}

.news-list-card__bullets {
  margin: 0 0 16px;
  padding-left: 18px;
  color: #e4ebff;
  font-size: 14px;
  line-height: 1.7;
}

.news-list-card__bullets li + li {
  margin-top: 6px;
}

.news-list-card__footer {
  margin-top: auto;
}

.news-read-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  background: linear-gradient(180deg, #6ea3ff, #557ce2);
  box-shadow: 0 8px 18px rgba(61, 103, 216, 0.24);
  box-sizing: border-box;
}

/* =========================================================
   PAGINATION
   ========================================================= */
.news-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(20, 26, 39, 0.94), rgba(12, 17, 29, 0.98));
  border: 1px solid rgba(124, 145, 205, 0.14);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.news-page-status {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #d9e5ff;
  font-size: 13px;
  text-align: center;
}

.news-page-status strong {
  font-size: 16px;
  color: #fff;
}

.news-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  min-width: 140px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  background: linear-gradient(180deg, #6ea3ff, #557ce2);
  box-shadow: 0 8px 18px rgba(61, 103, 216, 0.24);
}

.news-page-btn.is-disabled {
  pointer-events: none;
  opacity: 0.45;
  background: rgba(70, 79, 102, 0.65);
  box-shadow: none;
}

/* =========================================================
   INLINE AD
   ========================================================= */
.news-inline-ad {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  border: 1px dashed rgba(124, 145, 205, 0.28);
  background: linear-gradient(180deg, rgba(16, 22, 36, 0.98), rgba(10, 14, 24, 0.99));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

.news-inline-ad__label {
  padding: 10px 16px;
  background: rgba(76, 106, 193, 0.18);
  color: #cfe0ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-inline-ad__box {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  text-align: center;
}

.news-inline-ad__title {
  color: #fff;
  font-size: 28px;
  font-weight: 900;
}

.news-inline-ad__text {
  color: #9dadcf;
  font-size: 14px;
}

/* =========================================================
   EMPTY
   ========================================================= */
.news-empty {
  padding-top: 24px;
  text-align: center;
}

.news-empty__title {
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 10px;
}

.news-empty__text {
  color: #a8b7db;
  font-size: 15px;
  margin-bottom: 16px;
}

/* =========================================================
   ARTICLE PAGE
   ========================================================= */
.news-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  color: #8da0ce;
  font-size: 13px;
}

.news-breadcrumbs a {
  color: #b9ccff;
  text-decoration: none;
}

.news-article {
  display: block;
}

.news-article__hero {
  display: grid;
  grid-template-columns: minmax(420px, 700px) minmax(0, 1fr);
  gap: 20px;
  padding: 20px;
  margin-bottom: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(21, 28, 42, 0.96), rgba(12, 17, 29, 0.98));
  border: 1px solid rgba(122, 145, 205, 0.16);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
}

.news-article__hero-media {
  overflow: hidden;
  border-radius: 20px;
  min-height: 420px;
  background: #0a1020;
}

.news-article__hero-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.news-article__hero-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.news-article__badge {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #fff;
  background: rgba(85, 123, 231, 0.95);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.news-article__title {
  margin: 0 0 12px;
  color: #f2f5ff;
  font-size: 40px;
  line-height: 1.08;
  font-weight: 900;
  word-break: break-word;
}

.news-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #9eb0d9;
  font-size: 13px;
  margin-bottom: 14px;
}

.news-article__lead {
  margin: 0;
  color: #dbe5fd;
  font-size: 16px;
  line-height: 1.75;
  word-break: break-word;
}

.news-article__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(320px, 0.9fr);
  gap: 18px;
}

.news-article__block {
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(21, 28, 42, 0.96), rgba(12, 17, 29, 0.98));
  border: 1px solid rgba(122, 145, 205, 0.14);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.14);
}

.news-article__block + .news-article__block {
  margin-top: 16px;
}

.news-article__block h2 {
  margin: 0 0 12px;
  color: #f1f5ff;
  font-size: 24px;
  font-weight: 900;
}

.news-article__keypoints {
  margin: 0;
  padding-left: 20px;
  color: #ecf2ff;
  font-size: 15px;
  line-height: 1.75;
}

.news-article__content p {
  margin: 0 0 16px;
  color: #d1dbf5;
  font-size: 16px;
  line-height: 1.85;
  word-break: break-word;
}

.news-article__backrow {
  display: flex;
  justify-content: flex-start;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1680px) {
  .news-list-card {
    grid-template-columns: 300px minmax(0, 1fr);
  }
}

@media (max-width: 1320px) {
  .news-featured-and-side,
  .news-layout,
  .news-article__layout,
  .news-article__hero {
    grid-template-columns: 1fr;
  }

  .news-featured {
    min-height: 500px;
  }
}

@media (max-width: 1100px) {
  body.news-page .grid {
    grid-template-columns: 1fr;
  }

  body.news-page .grid > aside.panel.ad.ad-left,
  body.news-page .grid > aside.panel.ad.ad-right {
    display: none !important;
  }

  body.news-page .grid > section.panel {
    grid-column: auto;
  }
}

@media (max-width: 980px) {
  .news-list-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .news-list-card__body {
    padding: 16px;
  }

  .news-list-card__img,
  .news-list-card__img--empty {
    min-height: 240px;
  }

  .news-pagination {
    flex-direction: column;
  }

  .news-article__title {
    font-size: 32px;
  }

  .news-featured__title,
  .news-list-card__title {
    font-size: 24px;
  }
}

@media (max-width: 700px) {
  .news-page-wrap,
  .news-article-page,
  .news-empty {
    padding: 12px 0 20px;
  }

  .news-filter-bar,
  .news-pagination,
  .news-side-panel,
  .news-list-card,
  .news-inline-ad,
  .news-article__hero,
  .news-article__block {
    border-radius: 18px;
  }

  .news-featured {
    min-height: 420px;
    border-radius: 18px;
  }

  .news-featured__content,
  .news-article__hero,
  .news-article__block {
    padding: 16px;
  }

  .news-sec-head h2,
  .news-featured__title,
  .news-list-card__title,
  .news-article__title {
    font-size: 22px;
  }

  .news-search-form__input {
    height: 44px;
    border-radius: 14px;
  }

  .news-side-item {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .news-side-item__thumb {
    width: 64px;
    height: 64px;
  }
}

/* =========================================================
   DESKTOP OVERRIDE - REMOVE RIGHT SIDEBAR + TOP PAGE HEADER
   ========================================================= */
@media (min-width: 1101px) {
  .news-layout--screenshot {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 0 !important;
  }

  .news-main--screenshot {
    width: 100% !important;
    max-width: 100% !important;
  }

  .news-side--screenshot {
    display: none !important;
  }

  .news-filter-bar,
  .news-cards-wrap,
  #news-stream,
  .news-list-card,
  .news-inline-ad {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* =========================================================
   ARTICLE PAGE - FINAL DESKTOP WIDTH FIX
   ========================================================= */
@media (min-width: 1101px) {
  /* მთელი news გვერდის მთავარი container გაფართოვდეს */
  body.news-page,
  body.news-page .page-shell,
  body.news-page .container,
  body.news-page .content-wrap,
  body.news-page main,
  body.news-page .grid {
    width: 100% !important;
    max-width: none !important;
  }

  /* article page-ზე მარცხენა/მარჯვენა ad-ები გავთიშოთ */
  body.news-page .grid > aside.panel.ad.ad-left,
  body.news-page .grid > aside.panel.ad.ad-right {
    display: none !important;
  }

  /* grid დარჩეს ერთ სვეტად */
  body.news-page .grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 0 !important;
    align-items: start;
  }

  /* მთავარი section ბოლომდე გაიშალოს */
  body.news-page .grid > section.panel {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
  }

  body.news-page .grid > section.panel .panel-b {
    width: 100% !important;
    max-width: none !important;
    padding: 10px 18px 28px !important;
    box-sizing: border-box;
  }

  /* article wrapper აღარ იყოს ცენტრში ჩაკეტილი */
  .news-article-page {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .news-article {
    width: 100% !important;
    max-width: none !important;
  }

  /* breadcrumbs */
  .news-breadcrumbs {
    width: 100% !important;
    max-width: none !important;
    margin: 0 0 18px !important;
    font-size: 14px;
  }

  /* hero full width */
  .news-article__hero {
    width: 100% !important;
    max-width: none !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    padding: 22px !important;
    box-sizing: border-box;
  }

  .news-article__hero-media {
    width: 100% !important;
    min-height: 500px !important;
    max-height: 640px !important;
  }

  .news-article__hero-media img {
    width: 100% !important;
    height: 100% !important;
    min-height: 500px !important;
    max-height: 640px !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block;
  }

  .news-article__hero-body {
    width: 100% !important;
    max-width: none !important;
    display: block !important;
  }

  .news-article__title {
    width: 100% !important;
    max-width: 1200px !important;
    font-size: 44px !important;
    line-height: 1.14 !important;
    margin: 0 0 14px !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
  }

  .news-article__meta {
    margin-bottom: 14px !important;
  }

  .news-article__lead {
    width: 100% !important;
    max-width: 1100px !important;
    font-size: 18px !important;
    line-height: 1.9 !important;
  }

  /* main + related ერთ სვეტად */
  .news-article__layout {
    width: 100% !important;
    max-width: none !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 18px !important;
  }

  .news-article__main,
  .news-article__side {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
  }

  .news-article__block {
    width: 100% !important;
    max-width: none !important;
    padding: 24px 28px !important;
    box-sizing: border-box;
  }

  .news-article__block h2 {
    font-size: 26px !important;
    margin-bottom: 14px !important;
  }

  .news-article__content p {
    width: 100% !important;
    max-width: 1000px !important;
    font-size: 18px !important;
    line-height: 1.95 !important;
    margin: 0 0 18px !important;
  }

  .news-article__keypoints {
    width: 100% !important;
    max-width: 1000px !important;
    font-size: 16px !important;
    line-height: 1.85 !important;
  }

  /* related stories ქვემოთ ორ სვეტად */
  .news-article__side .news-side-panel {
    width: 100% !important;
    max-width: none !important;
  }

  .news-article__side .news-side-list {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .news-article__side .news-side-item {
    min-height: 96px;
  }

  .news-article__side .news-side-item__thumb {
    width: 110px !important;
    min-width: 110px !important;
    height: 82px !important;
  }
}

@media (min-width: 1101px) and (max-width: 1320px) {
  .news-article__title {
    font-size: 36px !important;
  }

  .news-article__side .news-side-list {
    grid-template-columns: 1fr !important;
  }
}


/* =========================================================
   ARTICLE DETAIL FIXES
   ========================================================= */
.news-side-item__body,
.news-side-item__body--related {
  min-width: 0;
}

.news-side-item__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.news-article__lead--full {
  margin-top: 10px;
  width: 100%;
  max-width: 1100px;
}

.news-article__lead--full p {
  margin: 0 0 14px;
  color: #dbe5fd;
  font-size: 17px;
  line-height: 1.9;
  word-break: break-word;
}

.news-related-ad-card {
  min-height: 96px;
  padding: 16px;
  border-radius: 18px;
  border: 1px dashed rgba(124, 145, 205, 0.28);
  background: linear-gradient(180deg, rgba(18, 24, 38, 0.98), rgba(10, 15, 25, 0.99));
  box-sizing: border-box;
}

.news-related-ad-card__label {
  margin-bottom: 8px;
  color: #9fc0ff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.news-related-ad-card__title {
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 6px;
}

.news-related-ad-card__text {
  color: #a8b7db;
  font-size: 13px;
  line-height: 1.6;
}

@media (min-width: 1101px) {
  .news-article__side .news-side-item {
    grid-template-columns: 120px minmax(0, 1fr) !important;
    align-items: start;
  }

  .news-article__side .news-side-item__thumb {
    width: 120px !important;
    min-width: 120px !important;
    height: 86px !important;
    border-radius: 14px !important;
  }

  .news-article__side .news-side-item__title {
    font-size: 14px !important;
    line-height: 1.35 !important;
    margin-bottom: 6px !important;
  }

  .news-article__side .news-side-item__meta {
    font-size: 12px !important;
    line-height: 1.45 !important;
  }
}


.news-article__backrow--full {
  display: block;
  width: 100%;
}

.news-related-ad-card {
  display: block;
  width: 100%;
  min-height: 96px;
  padding: 16px;
  border-radius: 18px;
  border: 1px dashed rgba(124, 145, 205, 0.28);
  background: linear-gradient(180deg, rgba(18, 24, 38, 0.98), rgba(10, 15, 25, 0.99));
  box-sizing: border-box;
}

.news-views-badge{
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:4px 10px;
    border:1px solid rgba(255,255,255,.10);
    border-radius:999px;
    background:rgba(255,255,255,.04);
    color:#dbe7ff;
    line-height:1;
    vertical-align:middle;
}

.news-views-badge__icon{
    width:16px;
    height:16px;
    display:block;
    flex:0 0 16px;
    opacity:.95;
}

.news-icon-share-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 4px;
}

.news-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}

.news-icon-btn svg {
  display: block;
  transition: transform 0.18s ease;
}

.news-icon-btn:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 16px 34px rgba(0,0,0,0.26);
}

.news-icon-btn:hover svg {
  transform: scale(1.08);
}

.news-icon-btn:active {
  transform: translateY(-1px) scale(0.96);
}

.news-icon-btn:focus-visible {
  outline: 2px solid rgba(255,255,255,0.55);
  outline-offset: 3px;
}

.news-icon-btn--tiktok:hover {
  background: linear-gradient(135deg, #00f2ea 0%, #111111 45%, #ff0050 100%);
  border-color: rgba(255,255,255,0.22);
  color: #fff;
  box-shadow: 0 18px 38px rgba(255, 0, 80, 0.22);
}

.news-icon-btn--ghost:hover {
  background: rgba(255,255,255,0.16);
}

.news-icon-btn--small {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
}

.news-list-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

@media (max-width: 768px) {
  .news-icon-btn {
    width: 40px;
    height: 40px;
  }

  .news-icon-btn--small {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .news-icon-share-box {
    gap: 8px;
    margin-top: 12px;
  }
}