@charset "UTF-8";

/* =========================
   REG STEPS (inside article)
   ========================= */

.ghRegBlock {
    margin: 22px 0 30px;
}

.ghRegBlock__title {
    margin: 0 0 12px;
}

.ghRegSteps {
    margin: 0 0 18px;
}

.ghRegStep {
    padding: 14px 0;
    border-top: 1px solid rgba(0, 0, 0, .10);
}

.ghRegStep:first-child {
    border-top: 0;
}

.ghRegStep__cap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.ghRegStep__bar {
    width: 34px;
    height: 4px;
    border-radius: 999px;
    background: #1f6fff;
    flex: 0 0 auto;
}

.ghRegStep__k {
    display: inline-block;
}

.ghRegStep__p {
    font-size: 24px;
    /* крупнее, но не кричаще */
    line-height: 1.85;
    /* комфорт для длинного текста */
    color: #111;
    /* чёткий контраст */
    font-weight: 500;
    /* не жирный, но читаемый */
    margin: 0;
    max-width: 820px;
    /* чтобы строки не были слишком длинными */
}

@media (max-width: 820px) {
    .ghRegStep__p {
        font-size: 20px;
        line-height: 1.8;
    }
}

.ghRegStep__p a {
    color: #0b4fd6;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ghRegStep__p a:hover {
    text-decoration-thickness: 2px;
}

.ghRegStep__warn {
    margin: 10px 0 0;
}

.ghRegMedia {
    margin: 12px 0 0;
}

.ghRegMedia img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.ghRegMedia figcaption {
    margin-top: 6px;
    font-style: italic;
    opacity: .9;
}

/* =========================
   Registration deadline (solid)
   ========================= */

.ghRegDeadline{
  margin: 18px 0 0;
  padding: 14px 18px;
  border-left: 5px solid #ff0000;       /* строгий акцент */
  background: #f7f7f7;               /* редакционный светло-серый */
  color: #111;
  font-size: 28px;
  line-height: 1.75;
  font-weight: 500;
  border-radius: 6px;
}
@media (max-width: 820px){
  .ghRegDeadline{
    font-size: 16.5px;
    padding: 12px 14px;
    line-height: 1.7;
  }
}
.ghRegDeadline strong{
  font-weight: 900;
}

@media (max-width: 820px) {
    .ghRegStep {
        padding: 12px 0;
    }

    .ghRegMedia img {
        border-radius: 10px;
    }
}

/* =========================
   Registration block title
   ========================= */

.ghRegBlock__title {
    margin: 0 0 16px;
    font-size: 28px;
    /* заметно, но не агрессивно */
    line-height: 1.25;
    font-weight: 900;
    /* основной блок — должен чувствоваться */
    color: #111;
    letter-spacing: -0.2px;
    max-width: 900px;
}

@media (max-width: 820px) {
    .ghRegBlock__title {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 14px;
    }
}

.ghRegBlock__title::after {
    content: "";
    display: block;
    width: 64px;
    height: 4px;
    margin-top: 10px;
    border-radius: 999px;
}

.ghRegStep__k {
    font-size: 20px;
    /* хорошо читается, не кричит */
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: 0.3px;
    color: #111;
    text-transform: uppercase;
    white-space: nowrap;
}

.ghRegStep__k {
    font-size: 20px;
    /* хорошо читается, не кричит */
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: 0.3px;
    color: #111;
    text-transform: uppercase;
    white-space: nowrap;
}

.ghRegStep__k {
    position: relative;
    padding-right: 6px;
}

.ghRegStep__k::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 6px;
    border-radius: 50%;
}
/* =========================
   Registration step media
   ========================= */

.ghRegMedia{
  margin: 16px auto 0;          /* отступ сверху + центрирование блока */
  max-width: 520px;             /* ключевой момент — уже, чем колонка */
  text-align: center;
}

.ghRegMedia img{
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}
@media (max-width: 820px){
  .ghRegMedia{
    max-width: 100%;
  }

  .ghRegMedia img{
    border-radius: 10px;
    box-shadow: 0 6px 14px rgba(0,0,0,.10);
  }
}
/* =========================
   Inline important notice
   ========================= */

.ghInlineAlert{
  display: inline-block;
  margin-top: 10px;
  padding: 10px 14px;
  border-left: 5px solid #d93025;
  background: #fff5f5;
  color: #111;
  font-weight: 700;
  line-height: 1.7;
}
@media (max-width: 820px){
  .ghInlineAlert{
    padding: 8px 12px;
    line-height: 1.65;
  }
}
