@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@600;700&family=Golos+Text:wght@400;500;600&display=swap");

/* ── WRAP ── */
.admission-wrap {
  padding-top: 40px;
  padding-bottom: 80px;
}



/* ── BEGIN BLOCK ── */
.begin_block {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 20px;
  margin-bottom: 20px;
}

/* ── INFO BLOCK ── */
.info_block {
  background-color: rgb(var(--gray-color), 0.06);
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 44px 48px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 28px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.info_block::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 280px;
  height: 280px;
  background: rgb(var(--main-color));
  opacity: 0.04;
  border-radius: 50%;
  pointer-events: none;
}

.info_content {
  position: relative;
  z-index: 2;
  max-width: 530px;
}

.title_description {
  font-size: 14px;
  line-height: 1.75;
  color: rgb(var(--dark-color));
  margin-bottom: 24px;
}

.title_description a {
  color: rgb(var(--main-color));
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 14px;
}

.title_description a::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: rgb(var(--main-color));
  border-radius: 50%;
  margin-top: 7px;
}

.title_description a:hover {
  text-decoration: underline;
}

/* ── META GRID ── */
.meta_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.meta_card {
  background: rgb(var(--white-color));
  border-radius: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}

.meta_card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.meta_label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 6px;
}

.meta_value {
  font-size: 13px;
  font-weight: 500;
  color: rgb(var(--dark-color));
  line-height: 1.4;
}

.meta_value a {
  color: rgb(var(--main-color));
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}

.meta_value a:hover {
  text-decoration: underline;
}

.meta_value.phones {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.background_image {
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  max-height: 100%;
  max-width: 42%;
  object-fit: contain;
  z-index: 1;
}

/* ── ADVANCE BLOCK ── */
.advance_block {
  background-color: rgb(var(--main-color));
  border-radius: 20px;
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 8px 32px rgba(var(--main-color), 0.25);
}

.advance_top {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.advance_icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.advance_divider {
  width: 36px;
  height: 3px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  margin-bottom: 16px;
}

.advance_block h2 {
  font-family: "Unbounded", sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: rgb(var(--white-color));
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.btn.gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgb(var(--gold-color, 245 197 24));
  color: #1a1a1a;
  font-family: "Golos Text", sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    opacity 0.15s,
    transform 0.12s,
    box-shadow 0.15s;
  letter-spacing: 0.01em;
  align-self: flex-start;
  box-shadow: 0 4px 14px rgba(245, 197, 24, 0.35);
}

.btn.gold:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 197, 24, 0.5);
}

.btn.gold:active {
  transform: scale(0.97);
}

/* ── QUICK PILLS ── */
.quick_row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 52px;
}

.quick_pill {
  background: rgb(var(--white-color));
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}

.quick_pill:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.quick_icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quick_icon--blue {
  background: #eef2ff;
  color: rgb(var(--main-color));
}
.quick_icon--green {
  background: #ecfdf5;
  color: #059669;
}
.quick_icon--amber {
  background: #fff8e1;
  color: #d97706;
}

.quick_label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 4px;
}

.quick_value {
  font-size: 13px;
  font-weight: 500;
  color: rgb(var(--dark-color));
  line-height: 1.3;
}

.quick_value a {
  color: rgb(var(--main-color));
  text-decoration: none;
}

.quick_value a:hover {
  text-decoration: underline;
}

/* ── STREAM CONTENT ── */
.stream_content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ── TABS ── */
.tabsBlock {
  padding-bottom: 90px;
}
.tabsBlock .window_tab a {
  color: rgb(var(--white-color));
}
.tabsBlock .window_tab a:hover {
  text-decoration: underline;
}

/* ━━━━━━━━ RESPONSIVE ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media screen and (max-width: 999px) {
  .begin_block {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .advance_block {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    padding: 28px;
  }

  .advance_top {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .advance_divider {
    width: 3px;
    height: 36px;
    margin: 0;
  }

  .quick_row {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 767px) {
  .admission-wrap {
    padding-top: 24px;
    padding-bottom: 48px;
  }

  .info_block {
    padding: 24px 20px;
  }

  .meta_grid {
    grid-template-columns: 1fr;
  }

  .advance_block {
    flex-direction: column;
  }

  .advance_top {
    flex-direction: column;
    align-items: flex-start;
  }

  .advance_divider {
    width: 36px;
    height: 3px;
  }
}

@media screen and (max-width: 650px) {
  .background_image {
    opacity: 0;
  }

  .quick_row {
    grid-template-columns: 1fr;
  }
}
