/* ── Анонсы турниров ──────────────────────────────────────────────── */
.announce-section {
  padding: 72px 0;
  background: #eef0ff;
}

.announce-shell {
  width: min(1080px, 90vw);
  margin: 0 auto;
}

.announce-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .82fr);
  gap: 42px;
  padding: 38px 42px;
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(121, 225, 170, .19), transparent 30%),
    linear-gradient(132deg, #1b1b35 0%, #292653 56%, #3d3ab0 100%);
  box-shadow: 0 20px 52px rgba(43, 43, 109, .19);
}

.announce-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -44px;
  bottom: -86px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(255, 255, 255, .035), 0 0 0 56px rgba(255, 255, 255, .025);
}

.announce-kicker {
  margin: 0 0 9px;
  color: #b9efd0;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.announce-title {
  max-width: 560px;
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.announce-copy {
  max-width: 530px;
  margin: 13px 0 0;
  color: rgba(255, 255, 255, .73);
  font-size: .9rem;
  line-height: 1.65;
}

.announce-channels {
  display: grid;
  gap: 10px;
  align-content: start;
  padding-left: 26px;
  border-left: 1px solid rgba(255, 255, 255, .17);
}

.announce-channel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 58px;
  padding: 11px 14px 11px 16px;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 13px;
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}

.announce-channel:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .32);
}

.announce-channel:focus-visible,
.announce-submit:focus-visible,
.announce-input:focus-visible,
.announce-consent input:focus-visible {
  outline: 2px solid #b9efd0;
  outline-offset: 3px;
}

.announce-channel-main {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.announce-channel-icon {
  display: grid;
  flex: 0 0 30px;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
  background: #229ed9;
}

.announce-channel.max .announce-channel-icon { background: #687cff; }

.announce-channel-label {
  display: block;
  font-size: .86rem;
  font-weight: 800;
}

.announce-channel-hint {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, .56);
  font-size: .7rem;
}

.announce-channel-arrow {
  color: #b9efd0;
  font-size: 1.15rem;
  line-height: 1;
}

.announce-form {
  display: grid;
  gap: 11px;
  margin-top: 23px;
}

.announce-form-heading {
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: .8rem;
  font-weight: 750;
}

.announce-fields {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(150px, .85fr);
  gap: 9px;
}

.announce-input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: #1a1a2e;
  font: 500 .83rem Geologica, system-ui, sans-serif;
  background: rgba(255, 255, 255, .96);
  border: 1px solid transparent;
  border-radius: 10px;
}

.announce-input::placeholder { color: #87899b; }

.announce-submit {
  min-height: 44px;
  padding: 10px 16px;
  color: #15231c;
  font: 800 .82rem Geologica, system-ui, sans-serif;
  cursor: pointer;
  background: #b9efd0;
  border: 0;
  border-radius: 10px;
  transition: transform .16s ease, background .16s ease, opacity .16s ease;
}

.announce-submit:hover { transform: translateY(-1px); background: #d4f7e3; }
.announce-submit:disabled { cursor: wait; opacity: .65; transform: none; }

.announce-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255, 255, 255, .56);
  font-size: .68rem;
  line-height: 1.45;
}

.announce-consent input { flex: 0 0 auto; margin: 2px 0 0; accent-color: #b9efd0; }
.announce-consent a { color: rgba(255, 255, 255, .8); }

.announce-feedback {
  min-height: 1.3em;
  margin: 0;
  color: #b9efd0;
  font-size: .73rem;
  line-height: 1.45;
}

.announce-feedback.is-error { color: #ffc7bb; }

@media (max-width: 760px) {
  .announce-card { grid-template-columns: 1fr; gap: 26px; padding: 30px 24px; border-radius: 20px; }
  .announce-channels { padding: 22px 0 0; border-top: 1px solid rgba(255, 255, 255, .17); border-left: 0; }
}

@media (max-width: 520px) {
  .announce-section { padding: 56px 0; }
  .announce-shell { width: min(100% - 28px, 500px); }
  .announce-card { padding: 26px 18px; }
  .announce-fields { grid-template-columns: 1fr; }
}

/* ── Компактная полоса «следить за анонсами» для страниц-разделов ──── */
.follow-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  width: min(1160px, 90vw);
  margin: 56px auto;
  padding: 20px 24px;
  border: 1px solid rgba(84, 81, 231, .16);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(52, 54, 110, .06);
  font-family: Geologica, system-ui, sans-serif;
}
.follow-lead { display: grid; gap: 3px; }
.follow-lead strong { font-size: .95rem; font-weight: 800; letter-spacing: -.01em; color: #1a1a2e; }
.follow-lead span { color: #626879; font-size: .78rem; }
.follow-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.follow-channel {
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid rgba(84, 81, 231, .18);
  color: #5451e7;
  font-size: .8rem;
  font-weight: 750;
  text-decoration: none;
  transition: background .15s, border-color .15s;
}
.follow-channel:hover { background: rgba(84, 81, 231, .07); border-color: rgba(84, 81, 231, .38); }
.follow-channel.tg { background: #5451e7; border-color: #5451e7; color: #fff; }
.follow-channel.tg:hover { background: #3d3ab0; border-color: #3d3ab0; }
.follow-mail { position: relative; }
.follow-mail > summary {
  list-style: none;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px dashed rgba(84, 81, 231, .3);
  color: #626879;
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
}
.follow-mail > summary::-webkit-details-marker { display: none; }
.follow-mail > summary:hover { color: #5451e7; border-color: rgba(84, 81, 231, .5); }
.follow-mail[open] > summary { color: #5451e7; border-style: solid; }
.follow-form { margin-top: 14px; }
.follow-fields { display: flex; flex-wrap: wrap; gap: 8px; }
.follow-form .announce-input {
  min-width: 190px;
  flex: 1 1 190px;
  padding: 10px 13px;
  border: 1px solid rgba(84, 81, 231, .2);
  border-radius: 10px;
  background: #fff;
  color: #1a1a2e;
  font: 500 .82rem Geologica, system-ui, sans-serif;
}
.follow-form .announce-submit {
  padding: 10px 18px;
  border: 0;
  border-radius: 10px;
  background: #5451e7;
  color: #fff;
  font: 750 .8rem Geologica, system-ui, sans-serif;
  cursor: pointer;
}
.follow-form .announce-submit:hover { background: #3d3ab0; }
.follow-form .announce-submit:disabled { opacity: .6; cursor: default; }
.follow-form .announce-consent {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  max-width: 440px;
  color: #626879;
  font-size: .7rem;
  line-height: 1.5;
}
.follow-form .announce-consent a { color: #5451e7; }
.follow-form .announce-feedback { margin: 8px 0 0; color: #268f56; font-size: .74rem; }
.follow-form .announce-feedback.is-error { color: #c34c52; }

@media (max-width: 760px) {
  .follow-strip { margin: 40px auto; padding: 18px; }
  .follow-actions { width: 100%; }
  .follow-mail { width: 100%; }
  .follow-mail > summary { display: block; text-align: center; }
}
