/* ========================================
   恒略律师事务所 - 首页样式
   ======================================== */

/* ========== Hero Banner ========== */
.hero {
  position: relative;
  height: 860px;
  min-height: 560px;
  overflow: hidden;
  background: #1a1a1a;
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
}

.hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.25) 45%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 281px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  box-sizing: border-box;
}

.hero__title {
  font-family: HarmonyOS_Sans_SC_Bold, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 38px;
  color: #ffffff;
  line-height: 48px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin: 0 0 26px;
}

.hero__subtitle {
  font-family: HarmonyOS_Sans_SC, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  color: #ffffff;
  line-height: 48px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin: 0 0 40px;
}

.hero .btn {
  position: relative;
  width: 158px;
  height: 38px;
  box-sizing: border-box;
  padding: 13px 0 13px 19px;
  justify-content: flex-start;
  align-items: center;
  font-family: HarmonyOS_Sans_SC, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 15px;
  color: #ffffff;
  line-height: 1;
  text-align: left;
  font-style: normal;
  text-transform: none;
  font-weight: 400;
}

.hero .btn__arrow {
  position: absolute;
  top: 15px;
  right: 14px;
  width: 6px;
  height: 8px;
  margin: 0;
  border: none;
  border-radius: 0;
  background: none;
}

.hero .btn__arrow::after {
  border-width: 4px 0 4px 6px;
}

.hero__pager {
  position: absolute;
  right: 48px;
  top: 80%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-end;
}

.hero__pager-item {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  font-family: var(--font-en);
  letter-spacing: 1px;
  cursor: pointer;
  position: relative;
  min-width: 48px;
  padding-bottom: 12px;
  line-height: 1;
  text-align: right;
  transition: color var(--transition);
}

.hero__pager-item.is-active,
.hero__pager-item:hover {
  color: #fff;
}

.hero__pager-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 18px;
  height: 1px;
  background: #fff;
  transition: width var(--transition);
}

.hero__pager-item.is-active::before {
  width: 48px;
}

/* ========== 法律服务 ========== */
.services {
  padding: 68px 0 68px;
  background: #fff;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.service-card {
  position: relative;
  padding: 40px 28px 48px;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  min-height: 200px;
  transition: background var(--transition);
}

.service-card:nth-child(5n) {
  border-right: none;
}

/* 仅去掉最后一行底边，避免第 2/3 行之间缺横线（原先 n+6 会误伤整行） */
.service-card:nth-child(5n + 1):nth-last-child(-n + 5),
.service-card:nth-child(5n + 1):nth-last-child(-n + 5) ~ .service-card {
  border-bottom: none;
}

.service-card:hover {
  background: #fafafa;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  transition: transform var(--transition);
}

.service-card__icon img {
  max-width: 48px;
  max-height: 48px;
  width: auto;
  height: auto;
  transition: opacity var(--transition);
}

.service-card__icon-hover {
  display: none;
}

.service-card:hover .service-card__icon-default {
  display: none;
}

.service-card:hover .service-card__icon-hover {
  display: block;
}

.service-card:hover .service-card__icon,
.service-card:hover .service-card__title,
.service-card:hover .service-card__en {
  transform: translateY(-12px);
}

.service-card__title {
  margin-bottom: 0;
  line-height: 29px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  transition: transform var(--transition);
}

.service-card__title-part {
  font-family: HarmonyOS_Sans_SC_Bold, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  color: #000000;
  line-height: 29px;
  letter-spacing: 0;
  vertical-align: middle;
  transition: color var(--transition);
}

.service-card__title-sep {
  font-family: HarmonyOS_Sans_SC, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  color: #000000;
  line-height: 29px;
  letter-spacing: 0;
  vertical-align: middle;
  transition: color var(--transition);
}

.service-card:hover .service-card__title-part,
.service-card:hover .service-card__title-sep {
  color: #a42127;
}

.service-card__en {
  font-family: Montserrat-Regular, Montserrat, sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  letter-spacing: 0;
  text-align: left;
  font-style: normal;
  text-transform: none;
  transition: transform var(--transition);
}

.service-card__more {
  position: absolute;
  left: 28px;
  bottom: 20px;
  width: 33px;
  height: 33px;
  background: #FFFFFF url("../images/arrow-right-s-line.png") center / 6px 9px no-repeat;
  border-radius: 50%;
  border: 1px solid #CCCCCC;
  display: none;
}

.service-card:hover .service-card__more {
  display: block;
}

/* ========== 律师团队搜索 ========== */
.lawyer-search {
  display: flex;
  min-height: 560px;
}

.lawyer-search__form {
  flex: 1;
  order: 1;
  /* background-color: var(--color-bg-cream); */
  background-image: url("../images/pattern-cloud-light.png");
  /* background-repeat: repeat; */
  background-size: 100% 100%;
  padding: 110px 86px 108px 181px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.lawyer-search__banner-title {
  display: none;
}

.lawyer-search__form .section-title {
  margin-bottom: 55px;
}

.lawyer-search__form .section-title__cn {
  margin-top: 6px;
}

.lawyer-search__label {
  font-family: HarmonyOS_Sans_SC_Bold, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 15px;
  color: #a42127;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-bottom: 27px;
}

.lawyer-search__fields {
  display: grid;
  grid-template-columns: 236px 236px;
  gap: 19px 14px;
  margin-bottom: 26px;
  max-width: 486px;
}

.form-field label {
  display: block;
  font-family: HarmonyOS_Sans_SC, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 15px;
  color: #362d40;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-bottom: 7px;
  padding-left: 2px;
}

.form-field input,
.form-field select {
  width: 236px;
  height: 44px;
  padding: 0 14px;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  font-size: 14px;
  color: var(--color-text);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
}

.form-field select {
  background-image: url("../images/arrow-drop-down-fill.png");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 10px 7px;
  padding-right: 32px;
  cursor: pointer;
}

.form-field input::placeholder {
  color: #bbb;
}

.lawyer-search__actions {
  display: flex;
  gap: 16px;
  align-items: center;
  max-width: 520px;
}

.lawyer-search__actions .btn--primary {
  width: 236px;
  height: 40px;
  flex: none;
  padding: 0;
  font-family: HarmonyOS_Sans_SC_Bold, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 15px;
  color: #ffffff;
  text-align: left;
  font-style: normal;
  text-transform: none;
  font-weight: 400;
  justify-content: center;
}

.lawyer-search__actions .btn--ghost {
  width: 106px;
  height: 44px;
  padding: 0;
  font-family: HarmonyOS_Sans_SC, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 15px;
  color: #666666;
  text-align: left;
  font-style: normal;
  text-transform: none;
  justify-content: center;
}

.lawyer-search__visual {
  flex: 1;
  order: 2;
  position: relative;
  min-height: 560px;
  background: url("../images/lawyer-team.png") center / cover no-repeat;
  text-decoration: none;
  color: inherit;
  display: block;
}

.services__more {
  display: none;
}

/* ========== 最新资讯 ========== */
.news {
  padding: 81px 0 114px;
  background: #fff;
}

.news__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
}

.news__header .section-title {
  margin-bottom: 0;
}

.news__more {
  font-size: 14px;
  color: var(--color-text-muted);
}

.news__more:hover {
  color: var(--color-primary);
}

.news__tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
  border: none;
}

.news__tab {
  padding: 12px 0 14px;
  font-size: 15px;
  color: #666666;
  text-align: center;
  border: none;
  border-bottom: 2px solid #ececec;
  background: none;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
}

.news__tab.is-active,
.news__tab:hover {
  color: #a42127;
}

.news__tab.is-active {
  border-bottom-color: #a42127;
  border-bottom-width: 2px;
}

.news-card.is-hidden {
  display: none;
}

.news__viewport {
  overflow: hidden;
}

.news__grid {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.news-card {
  flex: 0 0 calc((100% - 60px) / 4);
  min-width: 0;
}

.news-card__thumb {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin-bottom: 16px;
  background: #f0f0f0;
}

.news-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-card__thumb img {
  transform: scale(1.05);
}

.news-card__date {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.news-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition);
}

.news-card:hover .news-card__title {
  color: var(--color-primary);
}

.news-card__excerpt {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 48px;
}

.news__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  padding: 0;
}

.news__dot.is-active {
  width: 28px;
  border-radius: 4px;
  background: var(--color-primary);
}

/* ========== 关于恒略 ========== */
.about {
  display: flex;
  min-height: 520px;
}

.about__visual {
  flex: 1;
  position: relative;
  min-height: 520px;
  background: url("../images/about-statue.png") center / cover no-repeat;
}

.about__banner-title {
  display: none;
}

.about__content {
  background: var(--color-about);
  padding: 111px 173px 108px 86px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  width: 760px;
  box-sizing: border-box;
  flex-shrink: 0;
}

.about__en {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #ffffff;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-bottom: 10px;
}

.about__title {
  font-family: HarmonyOS_Sans_SC_Bold, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 29px;
  color: #ffffff;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-bottom: 28px;
}

.about__text {
  font-family: HarmonyOS_Sans_SC, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  color: #ffffff;
  text-align: left;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  line-height: 28px;
  margin-bottom: 16px;
}

.about__content .btn {
  position: relative;
  margin-top: 24px;
  align-self: flex-start;
  width: 236px;
  height: 40px;
  padding: 0 20px 0 20px;
  background: #a42127;
  border-radius: 3px;
  box-sizing: border-box;
  font-family: HarmonyOS_Sans_SC_Bold, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 15px;
  color: #ffffff;
  text-align: left;
  font-style: normal;
  text-transform: none;
  font-weight: 400;
  justify-content: flex-start;
  gap: 0;
}

.about__content .btn__arrow {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  margin: 0;
}

/* ========== 响应式 ========== */
@media (max-width: 1200px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .news__grid {
    gap: 20px;
  }

  .news-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }

  .lawyer-search__form {
    padding: 60px 40px;
  }

  .about__content {
    padding: 60px 40px;
  }
}

@media (max-width: 900px) {
  .hero {
    height: 640px;
  }

  .hero__title {
    font-size: 32px;
    line-height: 42px;
  }

  .hero__pager {
    right: 16px;
  }

  .lawyer-search {
    flex-direction: column;
  }

  .lawyer-search__visual {
    order: 0;
    min-height: 280px;
  }

  .lawyer-search__form {
    order: 1;
    padding: 48px 24px 56px;
  }

  .about {
    flex-direction: column;
  }

  .about__visual {
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 560px;
    min-height: 480px;
  }

  .hero__slide::after {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0.45) 55%,
      rgba(0, 0, 0, 0.55) 100%
    );
  }

  .hero__content {
    padding: 140px 24px 0;
    box-sizing: border-box;
    align-items: flex-start;
  }

  .hero__title {
    font-size: 28px;
    line-height: 40px;
    letter-spacing: 0;
    margin-bottom: 14px;
  }

  .hero__subtitle {
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 28px;
  }

  .hero__pager {
    display: none;
  }

  .services {
    padding: 48px 0 40px;
  }

  .services .section-title {
    margin-bottom: 28px;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    border-top: 1px solid #ececec;
    border-left: 1px solid #ececec;
  }

  .service-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 22px 14px;
    min-height: 0;
    border-right: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
  }

  .service-card:nth-child(5n) {
    border-right: 1px solid #ececec;
  }

  .service-card:nth-child(2n) {
    border-right: 1px solid #ececec;
  }

  .service-card:nth-child(n + 6) {
    border-bottom: 1px solid #ececec;
  }

  .service-card:nth-last-child(-n + 2) {
    border-bottom: 1px solid #ececec;
  }

  .service-card:hover {
    background: #fafafa;
  }

  .service-card:active .service-card__icon,
  .service-card:active .service-card__title,
  .service-card:active .service-card__en,
  .service-card:hover .service-card__icon,
  .service-card:hover .service-card__title,
  .service-card:hover .service-card__en {
    transform: translateY(-6px);
  }

  .service-card:active .service-card__icon-default,
  .service-card:hover .service-card__icon-default {
    display: none;
  }

  .service-card:active .service-card__icon-hover,
  .service-card:hover .service-card__icon-hover {
    display: block;
  }

  .service-card:active .service-card__title,
  .service-card:hover .service-card__title,
  .service-card:active .service-card__title-part,
  .service-card:hover .service-card__title-part,
  .service-card:active .service-card__title-sep,
  .service-card:hover .service-card__title-sep {
    color: #a42127;
  }

  .service-card__body,
  .service-card {
    text-align: left;
  }

  .service-card__icon {
    order: 2;
    width: 36px;
    height: 36px;
    margin: 0;
    flex-shrink: 0;
  }

  .service-card__icon img {
    max-width: 36px;
    max-height: 36px;
  }

  .service-card__title {
    font-size: 15px;
    line-height: 20px;
    margin: 0;
  }

  .service-card__en {
    font-size: 14px;
    line-height: 20px;
    margin-top: 4px;
  }

  .service-card__more {
    display: none !important;
  }

  .service-card:hover .service-card__more,
  .service-card:active .service-card__more {
    display: none !important;
  }

  .service-card > .service-card__title,
  .service-card > .service-card__en {
    /* keep in document flow before icon via wrapping - use grid */
  }

  .service-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 32px;
    grid-template-rows: auto auto;
    column-gap: 8px;
    row-gap: 6px;
    align-items: start;
    align-content: start;
    height: 100%;
    padding: 18px 10px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
  }

  .service-card__title {
    grid-column: 1 / -1;
    grid-row: 1;
    font-size: 15px;
    line-height: 20px;
    height: 60px; /* 固定三行，短标题也占满，保证同行中文/图标对齐 */
    margin: 0;
    min-width: 0;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .service-card__title-part,
  .service-card__title-sep {
    font-size: 15px;
    line-height: 20px;
    white-space: normal;
  }

  .service-card__en {
    grid-column: 1;
    grid-row: 2;
    font-size: 12px;
    line-height: 18px;
    margin: 0;
    min-width: 0;
    align-self: start;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .service-card__icon {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
    align-self: start;
    width: 32px;
    height: 32px;
    margin: 0;
    transition: transform var(--transition);
  }

  .service-card__icon img {
    max-width: 32px;
    max-height: 32px;
  }

  .service-card__title,
  .service-card__en {
    transition: transform var(--transition), color var(--transition);
  }

  .services__more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    margin-top: 24px;
    border: none;
    background: #f5f5f5;
    box-sizing: border-box;
    font-family: HarmonyOS_Sans_SC, "PingFang SC", "Microsoft YaHei", sans-serif;
    font-size: 14px;
    color: #666666;
    text-align: center;
  }

  .lawyer-search {
    min-height: 0;
  }

  .lawyer-search__visual {
    order: 0;
    min-height: 220px;
    display: flex;
    align-items: flex-start;
    padding: 40px 24px;
    box-sizing: border-box;
  }

  .lawyer-search__visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
  }

  .lawyer-search__banner-title {
    display: block;
    position: relative;
    z-index: 1;
  }

  .lawyer-search__banner-title .section-title__en,
  .lawyer-search__banner-title .section-title__cn {
    color: #ffffff;
  }

  .lawyer-search__form-title {
    display: none;
  }

  .lawyer-search__form {
    order: 1;
    padding: 36px 20px 48px;
  }

  .lawyer-search__label {
    margin-bottom: 12px;
    font-size: 15px;
  }

  .lawyer-search__fields {
    grid-template-columns: 1fr 1fr;
    gap: 14px 12px;
    max-width: none;
    width: 100%;
    margin: 0 0 20px;
    box-sizing: border-box;
  }

  .lawyer-search__form .form-field label {
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 4px;
  }

  .lawyer-search__form .form-field input {
    width: 100%;
    max-width: 100%;
    height: 44px;
    padding: 0 14px;
    font-size: 14px;
    line-height: 1.4;
    box-sizing: border-box;
  }

  .lawyer-search__form .form-field select {
    width: 100%;
    max-width: 100%;
    height: 44px;
    padding: 0 26px 0 10px;
    font-size: 14px;
    line-height: 1.2;
    background-position: right 10px center;
    background-size: 9px 6px;
    box-sizing: border-box;
  }

  .lawyer-search__actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .lawyer-search__actions .btn,
  .lawyer-search__actions .btn--ghost {
    width: 100%;
  }

  .lawyer-search__actions .btn--ghost {
    display: none;
  }

  .news {
    padding: 48px 0 56px;
  }

  .news__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
  }

  .news__more {
    display: none;
  }

  .news__tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: 24px;
    overflow: visible;
    border-bottom: 1px solid #ececec;
  }

  .news__tab {
    padding: 10px 4px 12px;
    font-size: 15px;
    word-break: break-word;
    line-height: 1.3;
    border-top: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    text-align: center;
  }

  .news__tab.is-active {
    border-top-color: transparent;
    border-bottom-color: #a42127;
  }

  .news__viewport {
    overflow: visible;
  }

  .news__grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: none;
    transform: none !important;
    transition: none;
  }

  .news__grid::-webkit-scrollbar {
    display: none;
  }

  .news-card {
    flex: 0 0 78%;
    max-width: 280px;
    scroll-snap-align: start;
  }

  .news-card.is-hidden {
    display: none;
  }

  .news-card__excerpt {
    display: none;
  }

  .news__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }

  .news__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #dddddd;
    border: none;
    padding: 0;
  }

  .news__dot.is-active {
    width: 18px;
    border-radius: 3px;
    background: #a42127;
  }

  .about {
    min-height: 0;
  }

  .about__visual {
    min-height: 280px;
    display: flex;
    align-items: flex-end;
    padding: 32px 24px;
    box-sizing: border-box;
  }

  .about__visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.45) 100%
    );
  }

  .about__banner-title {
    display: block;
    position: relative;
    z-index: 1;
  }

  .about__banner-title .about__en {
    margin-bottom: 8px;
  }

  .about__banner-title .about__title {
    font-size: 24px;
    margin-bottom: 0;
  }

  .about__content {
    width: 100%;
    padding: 36px 20px 56px;
  }

  .about__content-title {
    display: none;
  }

  .about__text {
    font-size: 15px;
    line-height: 26px;
  }

  .about__content .btn {
    width: 100%;
    max-width: 236px;
  }
}


/* [mobile bump] base 10-13px +2px on phone */
@media (max-width: 768px) {
  .hero .btn { font-size: 15px; }
  .hero__pager-item { font-size: 15px; }
  .lawyer-search__label { font-size: 15px; }
  .form-field label { font-size: 15px; }
  .lawyer-search__actions .btn--ghost { font-size: 15px; }
  .news-card__date { font-size: 15px; }
  .about__en { font-size: 15px; }
  .about__content .btn { font-size: 15px; }
}
