.ga-news { position: relative; }

.ga-news.is-loading {
  opacity:.5;
  pointer-events:none;
  transition:opacity .2s;
}

/* GRID */
.ga-news-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px 24px;
  margin-bottom:36px;
}

@media(max-width:900px){
  .ga-news-grid{grid-template-columns:repeat(2,1fr);}
}

@media(max-width:560px){
  .ga-news-grid{grid-template-columns:1fr;}
}

/* CARD */
.ga-news-card {
  display:flex;
  flex-direction:column;
}

.ga-news-thumb {
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:4px;
  margin-bottom:10px;
  overflow:hidden;

  aspect-ratio:16/9;
  background:#fff !important; /* 👈 фикс */
}

/* IMAGE */
.ga-news-img {
  width:100%;
  height:100%;
  object-fit:contain; /* не режет */
  display:block;
  transition:transform .3s ease;
}

.ga-news-thumb:hover .ga-news-img {
  transform:scale(1.04);
}

/* META */
.ga-news-meta {
  font-size:13px;
  color:#888;
  margin-bottom:6px;
  display:flex;
  gap:6px;
}

/* TITLE */
.ga-news-title {
  font-size:16px;
  font-weight:700;
  line-height:1.35;
  margin:0 0 8px;
  text-transform:uppercase;
}

.ga-news-title a {
  color:inherit;
  text-decoration:none;
}

.ga-news-title a:hover {
  color:#c00;
}

/* TEXT */
.ga-news-excerpt {
  font-size:14px;
  line-height:1.55;
  color:#444;
  margin:0;
}

/* EMPTY */
.ga-news-empty {
  grid-column:1/-1;
  text-align:center;
  padding:40px;
  color:#888;
}

/* PAGINATION */
.ga-news-nav {
  display:flex;
  justify-content:center;
  margin-top:8px;
}

.ga-news-pag {
  display:flex;
  align-items:center;
  gap:4px;
  flex-wrap:wrap;
  justify-content:center;
}

.ga-news-btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:36px;
  height:36px;
  padding:0 6px;
  border:none;
  border-radius:4px;
  background:#f2f2f2;
  color:#222;
  font-size:15px;
  font-weight:500;
  cursor:pointer;
  text-decoration:none;
  transition:background .15s,color .15s;
  user-select:none;
  line-height:1;
}

.ga-news-btn:hover:not(.is-off):not(.is-active) {
  background:#e0e0e0;
  color:#000;
}

.ga-news-btn.is-active {
  background:#111 !important;
  color:#fff !important;
  cursor:default;
}

.ga-news-btn.is-off {
  opacity:.35;
  cursor:default;
  pointer-events:none;
}

.ga-news-prev,
.ga-news-next {
  font-size:20px;
}

.ga-news-dots {
  display:inline-flex;
  align-items:center;
  padding:0 4px;
  color:#888;
  font-size:15px;
}