.announcements-section {
  width: 100%;
  margin: 0 auto;
  padding: 2rem 0;
  text-align: center;
}

/* Каркас карусели в стиле «инста» */
.ann-carousel { position: relative; max-width: 1080px; margin: 0 auto; }
.ann-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(31,37,56,.11);
}
.ann-track {
  display: flex;
  will-change: transform;
  transform: translateX(0);
  transition: transform .35s ease-out; /* плавное долистывание */
}
.ann-slide {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ann-slide-header { margin-bottom: 0.7rem; }
.ann-badge {
  display: inline-block;
  background: #44446a;
  color: #fff;
  font-weight: 600;
  padding: 0.3em 0.9em;
  border-radius: 6px;
  font-size: 0.95rem;
}
.ann-title {
  margin-top: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
}

.ann-image-link {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(31,37,56,.11);
}
.ann-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

.ann-text {
  font-size: 1.05rem;
  margin: 1rem auto 0.9rem auto;
  max-width: 640px;
  color: #f0f0f0;
  line-height: 1.5;
}

.ann-cta-row { margin-top: 0.4rem; }
.ann-cta-btn {
  background: #23243a;
  color: #fff;
  padding: 0.7em 1.5em;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1;
}
.ann-cta-btn:hover { background: #44446a; }

/* Стрелки */
.ann-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(35,36,58,0.9);
  color: #fff;
  border: none;
  font-size: 2rem;
  font-weight: 700;
  padding: 0.1em 0.4em;
  border-radius: 8px;
  cursor: pointer;
  z-index: 10;
}
.ann-nav--prev { left: 10px; }
.ann-nav--next { right: 10px; }

/* Точки */
.ann-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.ann-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #44446a;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform .15s;
}
.ann-dot.is-active { background: #6cf77a; transform: scale(1.1); }

/* --- Модальное окно со стримингами --- */
#annServicesModal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1600;
}
#annServicesModal.show { display: flex; }

.ann-modal-content {
  position: relative;
  background: #23243a;
  color: #fff;
  padding: 1.5rem;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  max-width: 420px;
  width: 90%;
  text-align: left;
  margin: 0 20px;
}
.ann-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  cursor: pointer;
  background: none;
  border: none;
}

.ann-services-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

/* элементы ссылок на сервисы */
.ann-service-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #fff;
  text-decoration: none;
  font-family: 'Montserrat','Inter','Arial',sans-serif;
  font-size: 1rem;
  line-height: 1.4;
}
.ann-service-item img {
  width: 34px;
  height: 34px;
  display: block;
}
.ann-service-item:link,
.ann-service-item:visited,
.ann-service-item:hover,
.ann-service-item:active {
  color: #fff;
  text-decoration: none;
}
.ann-service-item:hover { color: #eaeaea; }

@media (max-width: 600px) {
  .ann-title { font-size: 1.12rem; }
  .ann-text  { font-size: 0.98rem; }
}