.adm-home-news-section {
  padding: 72px 0;
}

.adm-home-news-shell {
  background:
    linear-gradient(135deg, rgba(255, 138, 61, 0.08), transparent 38%),
    radial-gradient(circle at top left, rgba(255, 138, 61, 0.16), transparent 34%),
    radial-gradient(circle at top right, rgba(70, 146, 255, 0.2), transparent 30%),
    #09111c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 36px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  padding: 48px;
  position: relative;
}

.adm-home-news-heading {
  margin: 0 auto 34px;
  max-width: 760px;
}

.adm-home-news-title {
  color: #fff;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 0 0 12px;
}

.adm-home-news-subtitle {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

.adm-news-bridge {
  --adm-news-bg: linear-gradient(180deg, rgba(12, 15, 24, 0.95), rgba(22, 28, 42, 0.98));
  --adm-news-border: rgba(255, 255, 255, 0.12);
  --adm-news-text: #f7f7fb;
  --adm-news-muted: rgba(247, 247, 251, 0.72);
  --adm-news-accent: #ff8a3d;
  --adm-news-accent-strong: #ff6b2c;
  color: var(--adm-news-text);
}

.adm-news-bridge-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.adm-news-bridge-card {
  background: var(--adm-news-bg);
  border: 1px solid var(--adm-news-border);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.adm-news-bridge-card::before {
  background: linear-gradient(90deg, var(--adm-news-accent), rgba(70, 146, 255, 0.8));
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.adm-news-bridge-card:hover {
  border-color: rgba(255, 138, 61, 0.45);
  box-shadow: 0 32px 78px rgba(0, 0, 0, 0.3);
  transform: translateY(-5px);
}

.adm-news-bridge-image-wrap {
  aspect-ratio: 16 / 10;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.adm-news-bridge-image {
  display: block;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  transition: transform 0.35s ease;
  width: 100%;
}

.adm-news-bridge-card:hover .adm-news-bridge-image {
  transform: scale(1.04);
}

.adm-news-bridge-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 16px;
  padding: 24px 24px 26px;
}

.adm-news-bridge-meta {
  align-items: center;
  color: var(--adm-news-muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.adm-news-bridge-date {
  color: var(--adm-news-accent);
}

.adm-news-bridge-author::before {
  content: "\2022";
  margin-right: 10px;
}

.adm-news-bridge-item-title {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.adm-news-bridge-source {
  align-items: center;
  color: rgba(247, 247, 251, 0.7);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 700;
  gap: 6px;
  line-height: 1.4;
  margin-top: -6px;
}

.adm-news-bridge-source span {
  color: rgba(247, 247, 251, 0.58);
}

.adm-news-bridge-source a,
.adm-news-bridge-source strong {
  color: var(--adm-news-accent);
  font-weight: 800;
  text-decoration: none;
}

.adm-news-bridge-excerpt {
  color: var(--adm-news-muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.adm-news-bridge-link {
  align-items: center;
  align-self: flex-start;
  background: linear-gradient(135deg, var(--adm-news-accent), var(--adm-news-accent-strong));
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(255, 107, 44, 0.22);
  color: #111827;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 8px;
  letter-spacing: 0.04em;
  margin-top: auto;
  padding: 11px 16px;
  text-decoration: none;
  text-transform: uppercase;
  transition: box-shadow 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.adm-news-bridge-link::after {
  content: ">";
  font-size: 15px;
  line-height: 1;
}

.adm-news-bridge-link:hover {
  box-shadow: 0 16px 34px rgba(255, 107, 44, 0.32);
  color: #000;
  transform: translateY(-1px);
}

.adm-news-bridge-empty {
  color: var(--adm-news-muted);
  margin: 0;
  text-align: center;
}

@media (max-width: 1199px) {
  .adm-home-news-shell {
    padding: 36px 30px;
  }

  .adm-news-bridge-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .adm-home-news-section {
    padding: 48px 0;
  }

  .adm-home-news-shell {
    border-radius: 24px;
    padding: 28px 18px;
  }

  .adm-home-news-title {
    font-size: 30px;
  }

  .adm-news-bridge-grid {
    grid-template-columns: 1fr;
  }

  .adm-news-bridge-item-title {
    font-size: 21px;
  }
}
