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

.adm-home-news-shell {
  background:
    radial-gradient(circle at top left, rgba(255, 138, 61, 0.12), transparent 32%),
    radial-gradient(circle at top right, rgba(70, 146, 255, 0.16), transparent 28%),
    #00035e;
  border-radius: 36px;
  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;
  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: #00035e;
  border: 1px solid var(--adm-news-border);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.adm-news-bridge-trigger {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: block;
  padding: 0;
  text-align: left;
  width: 100%;
}

.adm-news-bridge-card:hover {
  border-color: rgba(255, 138, 61, 0.45);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.24);
  transform: translateY(-6px);
}

.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;
  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-direction: column;
  gap: 14px;
  min-height: 100%;
  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-author::before {
  content: "•";
  margin-right: 10px;
}

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

.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;
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 8px;
  letter-spacing: 0.06em;
  margin-top: auto;
  text-decoration: none;
  text-transform: uppercase;
}

.adm-news-bridge-link::after {
  content: ">";
}

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

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

.adm-news-modal[hidden] {
  display: none;
}

.adm-news-modal {
  inset: 0;
  position: fixed;
  z-index: 99999;
}

.adm-news-modal-backdrop {
  background: rgba(4, 7, 12, 0.72);
  inset: 0;
  position: absolute;
}

.adm-news-modal-dialog {
  background: #0b1320;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  left: 50%;
  max-height: calc(100vh - 48px);
  max-width: 920px;
  overflow: auto;
  position: relative;
  top: 24px;
  transform: translateX(-50%);
  width: calc(100% - 24px);
}

.adm-news-modal-close {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 30px;
  height: 42px;
  justify-content: center;
  position: absolute;
  right: 14px;
  top: 14px;
  width: 42px;
  z-index: 2;
}

.adm-news-modal-media[hidden] {
  display: none;
}

.adm-news-modal-image {
  display: block;
  max-height: 420px;
  object-fit: cover;
  width: 100%;
}

.adm-news-modal-content {
  padding: 34px 32px 32px;
}

.adm-news-modal-meta {
  color: var(--adm-news-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.adm-news-modal-title {
  color: #fff;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.08;
  margin: 0 0 16px;
}

.adm-news-modal-excerpt {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 22px;
}

.adm-news-modal-excerpt:empty,
.adm-news-modal-body:empty {
  display: none;
}

.adm-news-modal-body {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.85;
}

.adm-news-modal-body p:last-child {
  margin-bottom: 0;
}

.adm-news-modal-link {
  align-items: center;
  color: var(--adm-news-accent);
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 8px;
  letter-spacing: 0.06em;
  margin-top: 24px;
  text-decoration: none;
  text-transform: uppercase;
}

.adm-news-modal-link[hidden] {
  display: none;
}

.adm-news-modal-link::after {
  content: ">";
}

body.adm-news-modal-open {
  overflow: hidden;
}

@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;
  }

  .adm-news-modal-dialog {
    max-height: calc(100vh - 24px);
    top: 12px;
    width: calc(100% - 16px);
  }

  .adm-news-modal-content {
    padding: 22px 18px 20px;
  }

  .adm-news-modal-title {
    font-size: 28px;
  }
}
