.sga-news-wrap,
.sga-single-wrap {
  --sga-red: #d61f26;
  --sga-dark: #111111;
  --sga-text: #222222;
  --sga-muted: #6e6e6e;
  --sga-border: #e7e7e7;
  font-family: inherit;
  color: var(--sga-text);
}

.sga-news-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.sga-news-hero {
  background: linear-gradient(135deg, #111 0%, #242424 62%, #d61f26 100%);
  color: #fff;
  padding: 54px 0 44px;
  margin-bottom: 42px;
}

.sga-news-hero h1 {
  color: #fff;
  margin: 12px 0 0;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  letter-spacing: -.02em;
}

.sga-breadcrumb {
  font-size: 14px;
  color: rgba(255,255,255,.78);
  margin-bottom: 14px;
}

.sga-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.sga-breadcrumb span {
  margin: 0 6px;
}

.sga-news-list {
  display: grid;
  gap: 26px;
  padding-bottom: 56px;
}

.sga-news-card {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 28px;
  background: #fff;
  border: 1px solid var(--sga-border);
  box-shadow: 0 12px 32px rgba(0,0,0,.07);
  overflow: hidden;
}

.sga-news-image {
  display: block;
  min-height: 230px;
  background: #151515;
  position: relative;
  overflow: hidden;
}

.sga-news-image img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}

.sga-news-card:hover .sga-news-image img {
  transform: scale(1.04);
}

.sga-news-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 230px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.sga-news-content {
  padding: 26px 26px 26px 0;
}

.sga-news-content h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.3vw, 31px);
  line-height: 1.12;
  font-weight: 800;
}

.sga-news-content h2 a {
  color: var(--sga-dark);
  text-decoration: none;
}

.sga-news-content h2 a:hover {
  color: var(--sga-red);
}

.sga-news-date,
.sga-single-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sga-red);
  font-weight: 700;
  margin: 0 0 16px;
}

.sga-news-date:before,
.sga-single-date:before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--sga-red);
  display: inline-block;
}

.sga-news-excerpt {
  color: #444;
  line-height: 1.72;
  margin-bottom: 20px;
}

.sga-news-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sga-red);
  color: #fff !important;
  text-decoration: none;
  padding: 11px 18px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .04em;
}

.sga-news-more:hover {
  background: #111;
}

.sga-news-pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
}

.sga-news-pagination .page-numbers {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--sga-border);
  color: var(--sga-dark);
  text-decoration: none;
  font-weight: 700;
  padding: 0 12px;
}

.sga-news-pagination .page-numbers.current,
.sga-news-pagination .page-numbers:hover {
  background: var(--sga-red);
  color: #fff;
  border-color: var(--sga-red);
}

.sga-news-empty {
  background: #fff;
  border: 1px solid var(--sga-border);
  padding: 28px;
}

.sga-single-wrap {
  width: min(980px, calc(100% - 32px));
  margin: 40px auto 60px;
  background: #fff;
}

.sga-single-wrap .sga-breadcrumb {
  color: #666;
  margin-bottom: 22px;
}

.sga-single-wrap .sga-breadcrumb a {
  color: #333;
}

.sga-single-wrap .sga-breadcrumb a:hover {
  color: var(--sga-red);
}

.sga-single-content {
  font-size: 18px;
  line-height: 1.82;
}

.sga-single-content p {
  margin: 0 0 18px;
}

@media (max-width: 820px) {
  .sga-news-card {
    grid-template-columns: 1fr;
  }

  .sga-news-content {
    padding: 0 22px 24px;
  }
}
