/* ================================
ABOUT PAGE
Clean version:
- width matches blog.css
- hero visual is preserved
- lower blocks are polished
- repeated patches are merged
================================ */

/* ================================
BASE
================================ */

.ym-about-page {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--ym-color-white, #ffffff);
  color: var(--ym-color-text, #050505);
}

.ym-about-page,
.ym-about-page * {
  box-sizing: border-box;
}

.ym-about-container,
.ym-about-page :is(
  .ym-official-channels__inner,
  .official-channels__inner,
  .ym-channels__inner,
  .ym-official__inner
) {
  width: min(100%, 1920px);
  margin-left: auto;
  margin-right: auto;
  padding-left: 108px;
  padding-right: 108px;
  box-sizing: border-box;
}

/* ================================
HERO
================================ */

.ym-about-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: clamp(104px, 6.6vw, 132px);
  overflow: hidden;
  background: var(--ym-about-hero-bg, none) center top / cover no-repeat, var(--ym-color-white, #ffffff);
}

.ym-about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 30%, rgba(24, 51, 95, 0.055) 0 1px, transparent 1.6px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.86) 48%, rgba(255, 255, 255, 0.38) 100%);
  background-size: 28px 28px, auto;
}

.ym-about-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 3;
  height: clamp(92px, 8vw, 150px);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--ym-color-white, #ffffff) 88%);
}

.ym-about-hero__inner {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(600px, 45%) minmax(580px, 1fr);
  gap: clamp(44px, 4.8vw, 96px);
  align-items: center;
  min-height: calc(100vh - clamp(104px, 6.6vw, 132px));
  min-height: calc(100dvh - clamp(104px, 6.6vw, 132px));
}

.ym-about-hero__content {
  position: relative;
  z-index: 8;
  width: 100%;
  max-width: clamp(640px, 44vw, 820px);
}

.ym-about-hero__title {
  max-width: clamp(580px, 40vw, 760px);
  margin: 0 0 clamp(18px, 1.25vw, 26px);
  color: var(--ym-color-ink, #050505);
  font-size: clamp(52px, 3.55vw, 68px);
  line-height: 0.94;
  font-weight: 700;
  letter-spacing: -0.058em;
  text-wrap: balance;
}

.ym-about-hero__text {
  max-width: clamp(590px, 40vw, 740px);
  margin: 0;
  color: var(--ym-color-black, #111111);
  font-size: clamp(17px, 1.08vw, 20px);
  line-height: 1.34;
  font-weight: var(--ym-section-description-weight, 400);
  letter-spacing: var(--ym-section-description-letter-spacing, -0.025em);
  text-wrap: pretty;
}

.ym-about-hero__buttons {
  max-width: clamp(840px, 56vw, 1040px);
  margin-top: clamp(28px, 2vw, 40px);
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: clamp(12px, 0.86vw, 16px);
}

.ym-about-button {
  min-height: clamp(48px, 3vw, 58px);
  padding: 0 clamp(20px, 1.35vw, 28px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 0.65vw, 12px);
  border: 1px solid var(--ym-color-blue, #18335f);
  color: var(--ym-color-blue, #18335f);
  background: rgba(255, 255, 255, 0.72);
  font-size: clamp(13px, 0.86vw, 16px);
  line-height: 1.08;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
  transition:
    opacity var(--ym-transition, 0.25s ease),
    transform var(--ym-transition, 0.25s ease),
    background var(--ym-transition, 0.25s ease),
    color var(--ym-transition, 0.25s ease);
}

.ym-about-button img {
  width: clamp(9px, 0.68vw, 13px);
  height: clamp(9px, 0.68vw, 13px);
  object-fit: contain;
  flex: 0 0 auto;
}

.ym-about-button--primary {
  min-width: clamp(280px, 18vw, 340px);
  color: var(--ym-color-white, #ffffff);
  background: var(--ym-color-blue, #18335f);
}

.ym-about-button--primary img {
  filter: brightness(0) invert(1);
}

.ym-about-button--play {
  min-width: clamp(240px, 15.5vw, 300px);
}

.ym-about-button--outline {
  min-width: clamp(270px, 17vw, 330px);
}

.ym-about-button:hover {
  transform: translateY(-1px);
  opacity: 0.88;
}

.ym-about-hero__media {
  position: relative;
  z-index: 4;
  min-height: clamp(500px, 35vw, 680px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
}

.ym-about-hero__person {
  position: relative;
  z-index: 2;
  width: min(100%, clamp(680px, 54vw, 1040px));
  max-width: none;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: bottom right;
}

/* ================================
INFO SECTIONS
================================ */

.ym-about-sections {
  position: relative;
  isolation: isolate;
  padding: clamp(56px, 4.4vw, 86px) 0 clamp(30px, 3vw, 52px);
  background:
    radial-gradient(circle at 12% 8%, rgba(32, 56, 102, 0.055) 0, rgba(32, 56, 102, 0) 28%),
    linear-gradient(180deg, #ffffff 0%, #f4f7fb 38%, #ffffff 100%),
    var(--ym-about-sections-bg, none) center top / cover no-repeat,
    #ffffff;
}

.ym-about-sections__inner {
  position: relative;
}

.ym-about-sections__inner::before {
  content: "";
  position: absolute;
  top: clamp(18px, 2.8vw, 46px);
  left: 108px;
  right: 108px;
  height: 1px;
  background: linear-gradient(90deg, rgba(32, 56, 102, 0), rgba(32, 56, 102, 0.18), rgba(32, 56, 102, 0));
  pointer-events: none;
}

.ym-about-info {
  position: relative;
  display: grid;
  grid-template-columns: minmax(440px, 34%) minmax(540px, 1fr);
  align-items: center;
  gap: clamp(36px, 3.8vw, 72px);
  margin-bottom: clamp(52px, 4.8vw, 86px);
  padding: clamp(24px, 2.6vw, 42px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(32, 56, 102, 0.09);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(20, 37, 73, 0.055);
}

.ym-about-info--media {
  grid-template-columns: minmax(540px, 1fr) minmax(440px, 34%);
}

.ym-about-info::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(32, 56, 102, 0.08), rgba(32, 56, 102, 0) 34%),
    linear-gradient(315deg, rgba(32, 56, 102, 0.045), rgba(32, 56, 102, 0) 42%);
  opacity: 0.8;
}

.ym-about-info__image-wrap,
.ym-about-info__content {
  position: relative;
  z-index: 1;
}

.ym-about-info__image-wrap {
  min-height: clamp(280px, 20vw, 390px);
  overflow: hidden;
  background: rgba(24, 51, 95, 0.035);
  border: 1px solid rgba(32, 56, 102, 0.12);
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(20, 37, 73, 0.08);
}

.ym-about-info__image {
  width: 100%;
  height: clamp(280px, 20vw, 390px);
  display: block;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.ym-about-info:hover .ym-about-info__image {
  transform: scale(1.025);
  filter: saturate(0.98) contrast(1.05);
}

.ym-about-info__content {
  max-width: clamp(590px, 40vw, 760px);
}

.ym-about-info__line {
  display: block;
  width: 58px;
  height: 3px;
  margin-bottom: 14px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--ym-color-blue, #18335f), rgba(24, 51, 95, 0.18));
}

.ym-about-info__title {
  max-width: 720px;
  margin: 0 0 clamp(16px, 1.2vw, 24px);
  color: var(--ym-color-ink, #050505);
  font-size: clamp(32px, 2.15vw, 42px);
  line-height: 1.04;
  font-weight: var(--ym-section-title-weight, 700);
  letter-spacing: var(--ym-section-title-letter-spacing, -0.045em);
  text-wrap: balance;
}

.ym-about-info p {
  max-width: clamp(590px, 40vw, 760px);
  margin: 0 0 clamp(16px, 1.25vw, 24px);
  color: rgba(7, 20, 47, 0.86);
  font-size: clamp(16px, 1vw, 19px);
  line-height: 1.46;
  letter-spacing: var(--ym-section-description-letter-spacing, -0.025em);
  text-wrap: pretty;
}

.ym-about-info p:last-child {
  margin-bottom: 0;
}

/* ================================
OFFICIAL CHANNELS BETWEEN BLOCKS
================================ */

.ym-about-page :is(
  .ym-official-channels,
  .official-channels,
  .ym-channels,
  .ym-official
) {
  margin-top: 0;
  margin-bottom: clamp(34px, 3.4vw, 58px);
  padding-top: clamp(22px, 2.4vw, 38px);
  padding-bottom: clamp(22px, 2.4vw, 38px);
}

.ym-about-page .ym-about-sections + :is(
  .ym-official-channels,
  .official-channels,
  .ym-channels,
  .ym-official
) {
  margin-top: clamp(-8px, -0.5vw, 0px);
}

.ym-about-page :is(
  .ym-official-channels,
  .official-channels,
  .ym-channels,
  .ym-official
) + .ym-about-summary {
  margin-top: 0;
}

.ym-about-page :is(
  .ym-official-channels__title,
  .official-channels__title,
  .ym-channels__title,
  .ym-official__title
) {
  margin-top: 0;
}

/* ================================
SUMMARY
================================ */

.ym-about-summary {
  padding: 0 0 clamp(48px, 3.8vw, 72px);
  background: var(--ym-color-white, #ffffff);
}

.ym-about-summary__card {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 3vw, 56px) clamp(30px, 3.4vw, 64px) clamp(36px, 3.2vw, 58px);
  color: var(--ym-color-white, #ffffff);
  text-align: center;
  background:
    linear-gradient(0deg, rgba(24, 51, 95, 0.94), rgba(24, 51, 95, 0.94)),
    var(--ym-about-card-bg, none) center / cover no-repeat,
    var(--ym-color-blue, #18335f);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  box-shadow: 0 24px 58px rgba(16, 35, 63, 0.16);
}

.ym-about-summary__card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.16) 0, rgba(255, 255, 255, 0) 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
}

.ym-about-summary__title,
.ym-about-summary__card p {
  position: relative;
  z-index: 1;
}

.ym-about-summary__title {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto clamp(18px, 1.45vw, 28px);
  color: var(--ym-color-white, #ffffff);
  font-size: clamp(28px, 2.2vw, 42px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.ym-about-summary__title::before,
.ym-about-summary__title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(54px, 6vw, 116px);
  height: 1px;
  background: rgba(255, 255, 255, 0.68);
}

.ym-about-summary__title::before {
  right: calc(100% + clamp(10px, 1.05vw, 20px));
}

.ym-about-summary__title::after {
  left: calc(100% + clamp(10px, 1.05vw, 20px));
}

.ym-about-summary__card p {
  max-width: 1120px;
  margin: 0 auto;
  color: var(--ym-color-white, #ffffff);
  font-size: clamp(16px, 1vw, 19px);
  line-height: 1.46;
  letter-spacing: -0.032em;
  text-wrap: pretty;
}

/* ================================
WIDE DESKTOP
================================ */

@media (min-width: 1801px) {
  .ym-about-hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: 118px;
  }

  .ym-about-hero__inner {
    min-height: calc(100vh - 118px);
    min-height: calc(100dvh - 118px);
  }

  .ym-about-hero__content {
    max-width: 820px;
  }

  .ym-about-hero__title {
    max-width: 760px;
    font-size: 68px;
  }

  .ym-about-hero__text {
    max-width: 740px;
    font-size: 20px;
  }

  .ym-about-hero__person {
    width: 1040px;
  }
}

/* ================================
DESKTOP
================================ */

@media (min-width: 901px) {
  .ym-about-hero__media {
    justify-content: flex-end;
    align-items: flex-end;
    overflow: visible;
    margin-right: calc(-1 * clamp(52px, 5.4vw, 108px));
  }

  .ym-about-hero__person {
    margin-right: 0;
    margin-left: auto;
    transform: translateX(14%);
    object-position: right bottom;
  }

  .ym-about-hero__buttons .ym-about-button:nth-child(2) {
    flex-direction: row-reverse;
  }

  .ym-about-hero__buttons .ym-about-button:nth-child(2) img {
    margin-left: 8px;
    margin-right: 0;
  }

  .ym-about-hero__inner {
    align-items: center;
  }

  .ym-about-hero__content {
    align-self: center;
  }
}

@media (min-width: 901px) and (max-width: 1440px) {
  .ym-about-hero__media {
    margin-right: calc(-1 * clamp(42px, 5vw, 64px));
  }

  .ym-about-hero__person {
    transform: translateX(18%);
  }
}

@media (min-width: 901px) and (max-width: 1280px) {
  .ym-about-hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: clamp(82px, 6.5vw, 104px);
  }

  .ym-about-hero__inner {
    grid-template-columns: minmax(430px, 44%) minmax(430px, 1fr);
    min-height: calc(100vh - clamp(82px, 6.5vw, 104px));
    min-height: calc(100dvh - clamp(82px, 6.5vw, 104px));
  }

  .ym-about-hero__content {
    max-width: 620px;
  }

  .ym-about-hero__title {
    max-width: 560px;
    font-size: clamp(40px, 4vw, 52px);
  }

  .ym-about-hero__text {
    max-width: 580px;
    font-size: clamp(14px, 1.28vw, 17px);
  }

  .ym-about-button {
    min-height: 46px;
    font-size: 12.5px;
  }

  .ym-about-button--primary {
    min-width: clamp(240px, 20vw, 300px);
  }

  .ym-about-button--play {
    min-width: clamp(220px, 18vw, 270px);
  }

  .ym-about-button--outline {
    min-width: clamp(240px, 19vw, 290px);
  }

  .ym-about-hero__person {
    width: min(100%, clamp(520px, 58vw, 720px));
  }

  .ym-about-info__title {
    font-size: clamp(32px, 2.6vw, 38px);
  }

  .ym-about-info p {
    font-size: clamp(16px, 1.45vw, 19px);
    line-height: 1.36;
  }
}

@media (max-width: 1100px) {
  .ym-about-hero__buttons {
    flex-wrap: wrap;
  }

  .ym-about-info,
  .ym-about-info--media {
    grid-template-columns: minmax(330px, 0.95fr) minmax(360px, 1fr);
  }

  .ym-about-info--media {
    grid-template-columns: minmax(360px, 1fr) minmax(330px, 0.95fr);
  }
}

/* ================================
TABLET
================================ */

@media (max-width: 900px) {
  .ym-about-hero {
    min-height: auto;
    padding-top: 104px;
    background-position: center top;
    background-size: cover;
  }

  .ym-about-hero::after {
    height: 96px;
  }

  .ym-about-hero__inner {
    display: flex;
    flex-direction: column;
    min-height: 0;
    gap: 0;
    text-align: center;
  }

  .ym-about-hero__content {
    max-width: 720px;
    margin: 0 auto;
  }

  .ym-about-hero__title,
  .ym-about-hero__text {
    margin-left: auto;
    margin-right: auto;
  }

  .ym-about-hero__buttons {
    justify-content: center;
  }

  .ym-about-hero__media {
    width: 100%;
    min-height: 440px;
    margin-top: 14px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
  }

  .ym-about-hero__person {
    width: min(102vw, 500px);
    max-width: none;
    height: auto;
    object-fit: contain;
    object-position: center bottom;
  }

  .ym-about-sections {
    padding-top: 42px;
  }

  .ym-about-sections__inner::before {
    left: 38px;
    right: 38px;
  }

  .ym-about-info,
  .ym-about-info--media {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 62px;
    padding: 26px;
    text-align: center;
    border-radius: 14px;
  }

  .ym-about-info--media .ym-about-info__content {
    order: 2;
  }

  .ym-about-info--media .ym-about-info__image-wrap {
    order: 1;
  }

  .ym-about-info__content {
    max-width: 720px;
    margin: 0 auto;
  }

  .ym-about-info__line {
    margin-left: auto;
    margin-right: auto;
  }

  .ym-about-page :is(
    .ym-official-channels,
    .official-channels,
    .ym-channels,
    .ym-official
  ) {
    margin-bottom: 34px;
    padding-top: 22px;
    padding-bottom: 26px;
  }
}

@media (min-width: 768px) and (max-width: 900px) {
  .ym-about-hero__media {
    justify-content: flex-end;
    align-items: flex-end;
    overflow: visible;
    margin-right: -38px;
  }

  .ym-about-hero__person {
    margin-right: 0;
    margin-left: auto;
    transform: translateX(14%);
    object-position: right bottom;
  }

  .ym-about-hero__buttons .ym-about-button:nth-child(2) {
    flex-direction: row-reverse;
  }

  .ym-about-hero__buttons .ym-about-button:nth-child(2) img {
    margin-left: 8px;
    margin-right: 0;
  }
}

/* ================================
MOBILE
================================ */

@media (max-width: 767px) {
  .ym-about-hero {
    padding-top: 106px;
    padding-bottom: 0;
    overflow: visible;
  }

  .ym-about-hero::after {
    height: 88px;
  }

  .ym-about-hero__title {
    max-width: 342px;
    margin-bottom: 12px;
    font-size: 31px;
    line-height: 0.96;
    letter-spacing: -0.065em;
  }

  .ym-about-hero__text {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    line-height: 1.32;
    letter-spacing: -0.025em;
  }

  .ym-about-hero__buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 348px;
    margin: 18px auto 0;
  }

  .ym-about-hero__buttons .ym-about-button {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 0 16px;
    justify-content: center;
    font-size: 14px;
    line-height: 1.1;
    white-space: normal;
    text-align: center;
  }

  .ym-about-hero__buttons .ym-about-button img {
    width: 13px;
    height: 13px;
    flex: 0 0 13px;
  }

  .ym-about-hero__buttons .ym-about-button:nth-child(2) {
    flex-direction: row-reverse;
  }

  .ym-about-hero__buttons .ym-about-button:nth-child(2) img {
    margin-left: 8px;
    margin-right: 0;
  }

  .ym-about-hero__media {
    width: 100%;
    min-height: auto;
    margin-top: 24px;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: visible;
  }

  .ym-about-hero__person {
    display: block;
    width: min(92vw, 390px);
    max-width: 100%;
    height: auto;
    max-height: none;
    margin-left: auto;
    margin-right: auto;
    transform: none;
    object-fit: contain;
    object-position: center bottom;
  }

  .ym-about-sections {
    padding-top: 0;
    padding-bottom: 18px;
  }

  .ym-about-sections__inner::before,
  .ym-about-info::before {
    display: none;
  }

  .ym-about-info,
  .ym-about-info--media {
    gap: 18px;
    margin-bottom: 30px;
    padding: 0 0 22px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .ym-about-info__content {
    padding: 0 2px;
  }

  .ym-about-info__image-wrap {
    min-height: 0;
    margin-left: -22px;
    margin-right: -22px;
    border-left: 0;
    border-right: 0;
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(20, 37, 73, 0.08);
  }

  .ym-about-info__image {
    height: auto;
    min-height: 248px;
    object-fit: cover;
  }

  .ym-about-info__line {
    width: 48px;
    height: 3px;
    margin-bottom: 12px;
  }

  .ym-about-info__title {
    margin-bottom: 10px;
    font-size: 26px;
    line-height: 1.04;
    letter-spacing: -0.045em;
  }

  .ym-about-info p,
  .ym-about-summary__card p,
  .ym-about-summary__text {
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    line-height: 1.38;
    letter-spacing: -0.03em;
  }

  .ym-about-summary {
    padding-bottom: 32px;
  }

  .ym-about-summary__card {
    padding: 28px 20px 30px;
    border-radius: 14px;
  }

  .ym-about-summary__title {
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 1.08;
    letter-spacing: -0.035em;
  }

  .ym-about-summary__title::before,
  .ym-about-summary__title::after {
    width: 30px;
  }

  .ym-about-summary__title::before {
    right: calc(100% + 8px);
  }

  .ym-about-summary__title::after {
    left: calc(100% + 8px);
  }

  .ym-about-page :is(
    .ym-official-channels,
    .official-channels,
    .ym-channels,
    .ym-official
  ) {
    margin-bottom: 28px;
    padding-top: 16px;
    padding-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .ym-about-hero__text {
    max-width: 350px;
  }

  .ym-about-info__title {
    font-size: 26px;
  }
}

@media (max-width: 430px) {
  .ym-about-hero {
    padding-top: 108px;
    padding-bottom: 0;
  }

  .ym-about-hero__title {
    max-width: 326px;
    font-size: 29px;
  }

  .ym-about-hero__text {
    max-width: 350px;
    font-size: 14px;
  }

  .ym-about-hero__media {
    min-height: auto;
    justify-content: center;
    align-items: flex-end;
    margin-top: 26px;
  }

  .ym-about-hero__person {
    width: min(92vw, 372px);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    transform: none;
    object-position: center bottom;
  }

  .ym-about-hero__buttons {
    max-width: 330px;
    gap: 9px;
    margin-top: 16px;
  }

  .ym-about-hero__buttons .ym-about-button {
    min-height: 42px;
    padding: 0 14px;
    font-size: 14px;
  }
}

@media (max-width: 390px) {
  .ym-about-hero__title {
    max-width: 310px;
    font-size: 28px;
  }

  .ym-about-hero__text {
    max-width: 330px;
    font-size: 14px;
    line-height: 1.28;
  }

  .ym-about-hero__media {
    min-height: auto;
    justify-content: center;
    align-items: flex-end;
    margin-top: 28px;
  }

  .ym-about-hero__person {
    width: min(92vw, 350px);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    transform: none;
    object-position: center bottom;
  }

  .ym-about-hero__buttons {
    max-width: 310px;
  }

  .ym-about-hero__buttons .ym-about-button {
    min-height: 42px;
    font-size: 14px;
  }

  .ym-about-info__image-wrap {
    margin-left: -18px;
    margin-right: -18px;
  }

  .ym-about-info__title {
    font-size: 25px;
  }

  .ym-about-info p,
  .ym-about-summary__card p,
  .ym-about-summary__text {
    max-width: 320px;
    font-size: 14px;
    line-height: 1.3;
  }
}

/* ================================
CONTAINER BREAKPOINTS
Aligned with blog.css
================================ */

@media (max-width: 1800px) {
  .ym-about-container,
  .ym-about-page :is(
    .ym-official-channels__inner,
    .official-channels__inner,
    .ym-channels__inner,
    .ym-official__inner
  ) {
    padding-left: 96px;
    padding-right: 96px;
  }

  .ym-about-sections__inner::before {
    left: 96px;
    right: 96px;
  }
}

@media (max-width: 1650px) {
  .ym-about-container,
  .ym-about-page :is(
    .ym-official-channels__inner,
    .official-channels__inner,
    .ym-channels__inner,
    .ym-official__inner
  ) {
    padding-left: 84px;
    padding-right: 84px;
  }

  .ym-about-sections__inner::before {
    left: 84px;
    right: 84px;
  }
}

@media (max-width: 1450px) {
  .ym-about-container,
  .ym-about-page :is(
    .ym-official-channels__inner,
    .official-channels__inner,
    .ym-channels__inner,
    .ym-official__inner
  ) {
    padding-left: 72px;
    padding-right: 72px;
  }

  .ym-about-sections__inner::before {
    left: 72px;
    right: 72px;
  }
}

@media (max-width: 1280px) {
  .ym-about-container,
  .ym-about-page :is(
    .ym-official-channels__inner,
    .official-channels__inner,
    .ym-channels__inner,
    .ym-official__inner
  ) {
    padding-left: 64px;
    padding-right: 64px;
  }

  .ym-about-sections__inner::before {
    left: 64px;
    right: 64px;
  }
}

@media (max-width: 1100px) {
  .ym-about-container,
  .ym-about-page :is(
    .ym-official-channels__inner,
    .official-channels__inner,
    .ym-channels__inner,
    .ym-official__inner
  ) {
    padding-left: 52px;
    padding-right: 52px;
  }

  .ym-about-sections__inner::before {
    left: 52px;
    right: 52px;
  }
}

@media (max-width: 900px) {
  .ym-about-container,
  .ym-about-page :is(
    .ym-official-channels__inner,
    .official-channels__inner,
    .ym-channels__inner,
    .ym-official__inner
  ) {
    padding-left: 38px;
    padding-right: 38px;
  }
}

@media (max-width: 767px) {
  .ym-about-container,
  .ym-about-page :is(
    .ym-official-channels__inner,
    .official-channels__inner,
    .ym-channels__inner,
    .ym-official__inner
  ) {
    padding-left: 22px;
    padding-right: 22px;
  }
}

@media (max-width: 480px) {
  .ym-about-container,
  .ym-about-page :is(
    .ym-official-channels__inner,
    .official-channels__inner,
    .ym-channels__inner,
    .ym-official__inner
  ) {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 390px) {
  .ym-about-container,
  .ym-about-page :is(
    .ym-official-channels__inner,
    .official-channels__inner,
    .ym-channels__inner,
    .ym-official__inner
  ) {
    padding-left: 18px;
    padding-right: 18px;
  }
}
