/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 29 2026 | 00:13:11 */
@charset "utf-8";

/* ============================
   common-ui.css
   공통 UI 컴포넌트 스타일
============================ */

/* ============================
   가상요소 구분자
============================ */

.line-x::before {
  content: '';
  clear: both;
  position: absolute;
  left: 50%;
  top: 0%;
  transform: translate(-50%, 0%);
  width: 80%;
  max-width: 1440px;
  height: 0.5px;
  opacity: 0.7;
}

/* ============================
   텍스트 슬라이드 토글 버튼
============================ */

.toggle-btn-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  border-radius: 100px;
  padding: var(--one-gap-xs);
  gap: 0;
  background: var(--sub-color04);
  border: 1px solid var(--main-color);
}

/* 슬라이딩 배경 */
.toggle-btn-wrap::before {
  content: '';
  position: absolute;
  top: var(--one-gap-xs);
  left: var(--toggle-offset, var(--one-gap-xs));
  width: var(--toggle-width, 0px);
  height: calc(100% - var(--one-gap-xs) * 2);
  border-radius: 100px;
  transition:
    left 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 0;
  background: var(--main-color);
}

.toggle-btn {
  position: relative;
  z-index: 1;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 100px;
  padding: var(--one-gap-sm) var(--one-gap-xl);
  font-size: var(--one-caption);
  font-weight: 500;
  line-height: var(--one-lh-r);
  white-space: nowrap;
  transition: color 0.3s ease;
}

.toggle-btn.is-active {
  font-weight: 700;
  color: #fff;
}

/* ============================
   병원 투어 이미지 슬라이드
============================ */

.tour-slide-wrap {
  overflow: hidden;
}

.tour-slide-img {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.tour-slide-img img {
  width: 100%;
  height: auto;
}

.tour-slide-wrap .swiper-slide {
  display: flex;
  align-items: stretch;
}

.tour-slide-progress {
  margin-top: var(--one-space-s);
}

.tour-slide-progress .swiper-pagination {
  position: static;
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gray-color03);
}

.tour-slide-progress .swiper-pagination .swiper-pagination-progressbar-fill {
  background: var(--main-color);
}

@media all and (max-width: 639px) {
  .tour-slide-img {
    border-radius: 6px;
  }
}

/* ============================
   풀 와이드 2컬럼 교차 레이아웃 (full-row)
============================ */

.full-row-wrap {
  display: flex;
  flex-direction: column;
}

.full-row-item {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.full-row-img {
  flex: 0 0 50%;
  width: 50%;
  overflow: hidden;
}

.full-row-img img {
  width: 100%;
  height: auto;
  display: block;
}

.full-row-content {
  flex: 1;
  padding: 0 var(--one-space-r);
}

.full-row-label {
  display: block;
  font-size: var(--one-caption);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: var(--one-gap-lg);
}

.full-row-title {
  font-size: var(--one-hd3);
  font-weight: 700;
  line-height: var(--one-lh-lg);
  margin-bottom: var(--one-gap-xl);
  word-break: keep-all;
}

.full-row-desc {
  font-size: var(--one-body);
  line-height: var(--one-lh-r);
  word-break: keep-all;
}

.full-row-item:nth-child(even) .full-row-img {
  order: 2;
}

.full-row-item:nth-child(even) .full-row-content {
  order: 1;
}

@media all and (max-width: 1024px) {
  .full-row-content {
    padding: 0 var(--one-space-s);
  }
}

@media all and (max-width: 639px) {
  .full-row-item {
    flex-direction: column;
  }

  .full-row-img {
    flex: none;
    width: 100%;
  }

  .full-row-item:nth-child(even) .full-row-img {
    order: 0;
  }

  .full-row-item:nth-child(even) .full-row-content {
    order: 0;
  }

  .full-row-content {
    padding: var(--one-space-s) var(--one-space-safe);
  }
}

/* ============================
   오시는 길 / 진료시간 섹션 (sub-time)
============================ */

.sub-time-info {
  display: flex;
  flex-direction: column;
}

.sub-time-map {
  width: 100%;
  overflow: hidden;
}

.sub-time-map iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}

.sub-time-content {
  display: flex;
  flex-direction: row;
}

.sub-time-col {
  flex: 1;
  margin: var(--one-space-s) 0 var(--one-gap-r);
  display: flex;
  flex-direction: column;
  padding: 0 var(--one-gap-lg);
  border-right: 1px dashed var(--gray-color01);
}

.sub-time-col:last-child {
  border-right: none;
}

.sub-time-title {
  font-size: var(--one-caption);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: var(--one-gap-r);
}

.sub-time-text p {
  font-size: var(--one-body);
  line-height: var(--one-lh-r);

  word-break: keep-all;
}

.sub-time-desc {
  margin-top: var(--one-gap-lg);
  font-size: var(--one-caption);
  line-height: var(--one-lh-r);
}

.sub-time-col .txt-help {
  color: var(--one-txt-color);
}

/* 진료시간 리스트 */
.sub-time-row {
  display: flex;
  align-items: center;
  gap: var(--one-gap-xl);
}

/* 요일 — span 균등 분배 */
.sub-time-day {
  display: flex;
  justify-content: space-between;
  flex-shrink: 0;
  font-weight: 500;
  letter-spacing: 0;
  width: 35%;
  min-width: 6em;
}

.sub-time-day span {
  display: inline-block;
}

/* 시간 — 자간 넓게 */
.sub-time-hour {
  letter-spacing: 0.3em;
  flex: auto;
}

.sub-time-phone {
  font-size: var(--one-p-tit);
  font-weight: 700;
}

.sub-time-phone a {
  text-decoration: none;
  color: inherit;
}

@media all and (max-width: 1024px) {
  .sub-time-map iframe {
    height: 360px;
  }
}

@media all and (max-width: 639px) {
  .sub-time-map iframe {
    height: 260px;
  }

  .sub-time-content {
    flex-direction: column;
  }

  .sub-time-col {
    padding: var(--one-space-s) 0 0;
    border-right: none;
  }

  .sub-time-col + .sub-time-col {
    border-top: 1px dashed var(--gray-color01);
  }

  .sub-header__desc br {
    display: none;
  }
}

/* ============================
   플러스 아이콘 버튼 (plus-icon-btn)
============================ */

.plus-icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--one-gap-xl);
  width: 100%;
  padding: var(--one-gap-xl);
  background: transparent;
  border: 1px solid;
  cursor: pointer;
  text-decoration: none;
  word-break: keep-all;
  transition:
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease;
  overflow: hidden;
}

.plus-icon-btn::after {
  content: '+';
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.35s ease;
  font-size: 1.85em;
}

.plus-icon-btn:hover {
  background: var(--sub-color01);
}

.plus-icon-btn:hover::after {
  transform: rotate(90deg);
}

@media all and (max-width: 1024px) {
  .plus-icon-btn {
    padding: var(--one-gap-lg);
  }
}

@media all and (max-width: 639px) {
  .plus-icon-btn {
    padding: var(--one-gap-xl) var(--one-gap-r);
  }
}

/* ============================
   라운드 아웃라인 버튼 (round-btn)
============================ */

.round-btn {
  display: inline-block;
  padding: var(--one-gap-lg) var(--one-gap-xl);
  border-radius: 100px;
  border: 1px solid var(--gray-color01);
  background: transparent;
  color: var(--one-txt-color);
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.round-btn:hover {
  background: var(--one-txt-color);
  border-color: var(--one-txt-color);
  color: var(--white-color);
}

.round-btn.round-btn-main:hover {
  background: var(--main-color);
  border-color: var(--main-color);
  color: var(--white-color);
}

.round-btn.round-btn-sub:hover {
  background: var(--sub-color01);
  border-color: var(--sub-color01);
  color: var(--white-color);
}

@media all and (max-width: 639px) {
  .round-btn {
    padding: var(--one-gap-r) var(--one-gap-xl);
    font-size: var(--one-caption);
  }
}

/* ============================
   서브 상단 피처 섹션 ver01 (sub-feature)
============================ */

.sub-feature-section {
  display: flex;
  flex-direction: column;
}

.sub-feature-img {
  position: relative;
  width: 100%;
}

.sub-feature-img .sub-feature-float {
  position: absolute;
  bottom: 3%;
  right: -4%;
  width: 45%;
}

.sub-feature-img img {
  width: 100%;
  height: auto;
  display: block;
}

.sub-feature-content {
  display: flex;
  flex-direction: row;
  align-items: self-start;
  gap: var(--one-gap-xl);
  padding: var(--one-gap-sm) 0 var(--one-space-r);
}

.sub-feature-title-wrap {
  width: 50%;
}

.sub-feature-title {
  font-size: var(--one-hd2);
  font-weight: 700;
  line-height: var(--one-lh-lg);
  word-break: keep-all;
}

.con-inner.sub-feature-subtitle {
  display: block;
  color: var(--one-txt-color02);
  letter-spacing: -0.01em;
  padding-top: var(--one-space-r);
}

.sub-feature-desc {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: var(--one-gap-xl);
  padding: 0 var(--one-space-s) var(--one-gap-lg);
  align-items: end;
  color: var(--one-txt-color02);
}

.sub-feature-desc p {
  font-size: var(--one-body);
  line-height: var(--one-lh-r);
  word-break: keep-all;
  color: var(--one-txt-color02);
}

@media all and (max-width: 1024px) {
  .sub-feature-content {
    gap: var(--one-gap-xl);
    padding: var(--one-gap-r) 0 var(--one-space-s);
  }
}

@media all and (max-width: 639px) {
  .sub-feature-title-wrap {
    width: 100%;
    text-align: center;
  }

  .con-inner.sub-feature-subtitle {
    text-align: center;
  }

  .sub-feature-desc {
    width: 100%;
    padding: 0 0 var(--one-gap-lg);
    align-items: flex-start;
  }

  .sub-feature-content {
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    text-align: center;
  }
}

/* ============================
   원형 테두리 UI (circle-bd-ui)
============================ */

.circle-bd-ui {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--one-gap-sm);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px solid;
  padding: var(--one-gap-xl);
  text-align: center;
  width: 100%;
}

.circle-bd-ui .circle-bd-title.p-tit {
  font-size: var(--one-p-tit);
  font-weight: 700;
  line-height: var(--one-lh-lg);
  word-break: keep-all;
}

.circle-bd-ui .circle-bd-desc {
  line-height: var(--one-lh-r);
  word-break: keep-all;
  color: var(--one-txt-color02);
}

@media all and (max-width: 1024px) {
  .circle-bd-ui.prf-benefit-item {
    max-width: 240px;
  }
}
@media all and (max-width: 639px) {
  .circle-bd-ui {
    max-width: 170px;
    width: 44vw;
    padding: var(--one-gap-r);
  }
}

/* ============================
   이미지-표 비교 레이아웃 (compare)
============================ */

.compare-table-wrap {
  width: 100%;
}

.compare-table {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.compare-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  border-top: 1px solid var(--gray-color04);
}

.compare-row:last-child {
  border-bottom: 2px solid var(--gray-color04);
}

.compare-row.compare-img-row {
  border-top: none;
}

.compare-row:nth-child(1) .compare-center,
.compare-row:nth-child(2) .compare-center {
  font-size: var(--one-p-tit);
}

.compare-col {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--one-gap-r);
}

.compare-center {
  flex: 0 0 200px;
  border-left: 1px solid var(--gray-color04);
  border-right: 1px solid var(--gray-color04);
}

.compare-img {
  width: 100%;
  overflow: hidden;
}

.compare-img-row .compare-col {
  padding: 0;
  border: none;
}

.compare-img img {
  width: 100%;
  height: auto;
  display: block;
}

.compare-title {
  font-size: var(--one-p-tit);
}

.compare-label {
  letter-spacing: -0.01em;
  line-height: var(--one-lh-lg);
}
.compare-text {
  font-size: var(--one-body);
  line-height: var(--one-lh-r);
  word-break: keep-all;
}

/* 타이틀 행 — 상하 보더 */
.compare-title-row {
  border-top: 1px solid var(--gray-color03);
  /* border-bottom: 1px solid var(--gray-color03); */
  font-size: var(--one-p-tit);
}

/* 내용 행 — 하단 보더 */
.compare-content-row {
  border-bottom: 1px solid var(--gray-color03);
}

@media all and (max-width: 1024px) {
  .compare-center {
    flex: 0 0 100px;
  }

  .compare-col {
    padding: var(--one-gap-r);
  }
}

@media all and (max-width: 639px) {
  .compare-center {
    flex: 0 0 55px;
    padding: var(--one-gap-sm);
    font-size: 3.6vw !important;
    min-width: 55px;
  }
  .compare-col {
    padding: 2.7vw 1.5vw;
  }
  .compare-title {
    font-size: var(--one-body);
  }

  .compare-row:nth-child(1) .compare-center,
  .compare-row:nth-child(2) .compare-center {
    font-size: var(--one-body);
  }

  .compare-text {
    line-height: var(--one-lh-lg);
  }

  .compare-img {
    width: 110%;
    position: relative;
    top: -4vw;
  }
  .compare-img-row .compare-img img {
    border-radius: 0.4rem;
  }
  .compare-img-row .compare-left .compare-img {
    margin-right: -10%;
  }
  .compare-img-row .compare-right .compare-img {
    margin-left: -10%;
  }
}

/* ============================
   좌 섹션 타이틀 + 우 체크 리스트 (ck-icon-list)
============================ */

.ck-icon-list-wrap {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.ck-icon-list-hd {
  width: 50%;
}

.ck-icon-list-hd .ck-icon-list-title {
  font-size: var(--one-hd2);
  font-weight: 700;
  line-height: var(--one-lh-lg);
  word-break: keep-all;
}

.ck-icon-list-body {
  width: 50%;
  padding-left: var(--one-space-r);
}

.ck-icon-list {
  display: flex;
  flex-direction: column;
}

.ck-icon-list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--one-gap-sm);
  padding: var(--one-gap-lg) var(--one-gap-sm);
  border-bottom: 1px dashed var(--gray-color02);
}

.ck-icon-list-item:last-child {
  border-bottom: none;
}

.ck-icon-list-icon {
  flex-shrink: 0;
  max-width: var(--one-icon-r);
  width: 100%;
  height: auto;
  padding-top: 0.3em;
}

.ck-icon-list-icon svg {
  width: 100%;
  height: auto;
  display: block;
  fill: currentColor;
  color: currentColor;
}

.ck-icon-list-text {
  font-size: var(--one-body);
  line-height: var(--one-lh-r);
  word-break: keep-all;
}

@media all and (max-width: 1024px) {
  .ck-icon-list-hd {
    width: 45%;
  }

  .ck-icon-list-body {
    width: 55%;
  }

  .ck-icon-list-wrap {
    gap: var(--one-space-s);
  }
}

@media all and (max-width: 639px) {
  .ck-icon-list-wrap {
    flex-direction: column;
    gap: var(--one-gap-xl);
  }

  .ck-icon-list-hd,
  .ck-icon-list-body {
    width: 100%;
  }

  .ck-icon-list-body {
    padding-left: 0;
  }

  .ck-icon-list-icon {
    max-width: var(--one-icon-s);
  }

  .ck-icon-list-hd .ck-icon-list-title {
    text-align: center;
  }
}

/* ============================
   step 이미지 카드 (step-img-card)
============================ */

.step-img-card {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;
}

.step-img-card-content {
  flex: 0 0 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--one-gap-xl);
  padding: var(--one-space-r) var(--one-space-s);
  position: relative;
  z-index: 1;
}

.step-img-card-num {
  display: block;
  font-size: var(--one-caption);
  font-weight: 700;
  letter-spacing: 0.2em;
}

.step-img-card-title {
  display: flex;
  flex-direction: column;
  gap: var(--one-gap-sm);
}

.step-img-card-title strong {
  font-size: var(--one-hd3);
  font-weight: 700;
  line-height: var(--one-lh-lg);
  word-break: keep-all;
}

.step-img-card-title span {
  font-size: var(--one-caption);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.step-img-card-desc {
  display: flex;
  flex-direction: column;
  gap: var(--one-gap-r);
}

.step-img-card-desc p {
  font-size: var(--one-body);
  line-height: var(--one-lh-r);
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.step-img-card-bg {
  flex: 0 0 40%;
  background: var(--gray-color03) no-repeat center / cover;
}

@media all and (max-width: 1024px) {
  .step-img-card-content {
    flex: 0 0 55%;
    padding: var(--one-space-s) var(--one-gap-xl);
  }

  .step-img-card-bg {
    flex: 0 0 45%;
  }
}

@media all and (max-width: 639px) {
  .step-img-card {
    flex-direction: column;
  }

  .step-img-card-content {
    flex: none;
    width: 100%;
    padding: var(--one-space-s) var(--one-gap-r);
  }

  .step-img-card-bg {
    flex: none;
    width: 100%;
    height: 200px;
  }
}

/* ============================
   서브 상단 탑 섹션 ver2 (sub-top-section-ver2)
============================ */

.sub-top-section-ver2 .sub-top-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--one-space-xl);
}

.sub-top-section-ver2 .sub-top-img-wrap {
  flex: 1;
  position: relative;
}

.sub-top-section-ver2 .sub-top-img {
  width: 100%;
  overflow: hidden;
  border-radius: 200px;
}

.sub-top-section-ver2 .sub-top-img img {
  width: 100%;
  height: auto;
  display: block;
}

.sub-top-section-ver2 .sub-top-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--one-space-s);
}

.sub-top-section-ver2 .sub-top-title {
  font-size: var(--one-hd2);
  font-weight: 700;
  line-height: var(--one-lh-lg);
  word-break: keep-all;
}

.sub-top-section-ver2 .sub-top-title-sub {
  display: block;
  font-size: var(--one-body);
  font-weight: 400;
  color: var(--sub-color01);
  letter-spacing: -0.01em;
  margin-bottom: var(--one-gap-r);
}

.sub-top-section-ver2 .sub-top-desc {
  display: flex;
  flex-direction: column;
  gap: var(--one-gap-xl);
}

.sub-top-section-ver2 .sub-top-desc p {
  font-size: var(--one-body);
  line-height: var(--one-lh-r);
  word-break: keep-all;
  color: var(--one-txt-color02);
}

@media all and (max-width: 1024px) {
  .sub-top-section-ver2 .sub-top-inner {
    gap: var(--one-space-s);
  }

  .sub-top-section-ver2 .sub-top-img {
    border-radius: 120px;
  }
}

@media all and (max-width: 639px) {
  .sub-top-section-ver2 .sub-top-inner {
    flex-direction: column;
    gap: var(--one-space-r);
  }

  .sub-top-section-ver2 .sub-top-img {
    border-radius: 80px;
  }

  .sub-top-section-ver2 .sub-top-content {
    gap: var(--one-gap-xl);
  }

  .sub-top-section-ver2 .sub-top-title {
    font-size: var(--one-hd2);
    text-align: center;
  }

  .sub-top-section-ver2 .sub-top-desc {
    text-align: center;
  }
}

/* ============================
   이미지 + 텍스트 카드 (img-text-card)
============================ */

.img-text-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.img-text-card-img {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--gray-color02);
}

.img-text-card-img img {
  width: 100%;
  height: auto;
  display: block;
}

.img-text-card-content {
  display: flex;
  flex-direction: column;
  gap: var(--one-gap-sm);
  padding: var(--one-gap-xl) var(--one-gap-lg);
}

.img-text-card-step {
  display: block;
  color: var(--ask-gray-400);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.img-text-card-text {
  line-height: var(--one-lh-r);
}

.img-text-card.is-rounded {
  border-radius: 12px;
}

.img-text-card.is-rounded .img-text-card-img {
  border-radius: 12px 12px 0 0;
}

.img-text-card.has-border {
  border: 1px solid;
}

.img-text-card.has-text-bg .img-text-card-content {
  background: var(--gray-color03);
}

/* ============================
   3열 포인트 카드 그리드 (point-card)
============================ */

.point-card-section {
  width: 100%;
}

.point-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--one-gap-lg);
}

.point-card {
  display: flex;
  flex-direction: column;
  padding: var(--one-space-s) var(--one-gap-xl);
}

.point-card-num {
  display: block;
  font-size: var(--one-p-tit);
  font-weight: 700;
}

.point-card-title {
  display: block;
  font-size: var(--one-p-tit);
  font-weight: 700;
  line-height: var(--one-lh-lg);
  margin-bottom: var(--one-gap-r);
  word-break: keep-all;
}

.point-card-desc {
  font-size: var(--one-body);
  line-height: var(--one-lh-r);
  word-break: keep-all;
}

.point-card.point-card-img-only {
  background: transparent !important;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.point-card-img {
  width: 100%;
}

.point-card-img img {
  width: 100%;
  height: auto;
  display: block;
}

@media all and (max-width: 1024px) {
  .point-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media all and (max-width: 639px) {
  .point-card-grid {
    grid-template-columns: 1fr;
    gap: var(--one-gap-r);
  }

  .point-card {
    padding: var(--one-gap-xl);
  }

  .img-text-card-content.txt-wrap .cp-txt {
    font-size: var(--one-body);
  }

  .img-text-card-content {
    min-height: 0;
  }
}

/* ============================
   아이콘 카드 그리드 (icon-card)
============================ */

.icon-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--one-gap-lg);
}

.icon-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--one-gap-xl);
  padding: var(--one-gap-xl) var(--one-space-s);
  border: 1px solid;
}

.icon-card-txt {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--one-gap-sm);
}

.icon-card-txt .icon-card-sub {
  font-size: var(--one-caption);
  line-height: var(--one-lh-r);
  word-break: keep-all;
}

.icon-card-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 80px;
  width: 100%;
}

.icon-card-icon img {
  width: 100%;
  height: auto;
  display: block;
}

@media all and (max-width: 639px) {
  .icon-card-grid {
    grid-template-columns: 1fr;
  }

  .icon-card {
    padding: var(--one-gap-lg) var(--one-gap-xl);
  }
}

/* ============================
   풀 와이드 STEP 카드 (step-row-card)
============================ */

.step-row-wrap {
  display: flex;
  flex-direction: column;
}

.step-row-item {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.step-row-img {
  flex: 0 0 50%;
  overflow: hidden;
}

.step-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.step-row-txt {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--one-space-r) var(--one-space-lg);
  gap: var(--one-gap-sm);
}

.step-row-num {
  display: block;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--gray-color01);
  opacity: 0.7;
}

.step-row-title {
  font-size: var(--one-hd3);
  font-weight: 700;
  line-height: var(--one-lh-lg);
  word-break: keep-all;
  margin-bottom: var(--one-gap-r);
}

.step-row-desc {
  font-size: var(--one-body);
  line-height: var(--one-lh-r);
  word-break: keep-all;
}

.certificate-icon {
  flex-shrink: 0;
  max-width: 1.1em;
  border-radius: 50%;
  background: #fff;
  padding: 0.05em;
  margin-top: 0.25em;
}

/* 전문의 하단 컨테이너 내 아이콘 */
.certificate-icon img {
  width: 100%;
  height: auto;
  display: block;
}

@media all and (max-width: 1024px) {
  .step-row-txt {
    padding: var(--one-space-s) var(--one-gap-xl);
  }
}

@media all and (max-width: 639px) {
  .step-row-item {
    flex-direction: column;
  }

  .step-row-img {
    flex: none;
    width: 100%;
  }

  .step-row-txt {
    padding: var(--one-space-s) var(--one-gap-lg);
    text-align: center;
  }

  .certificate-icon {
    max-width: 1.1em;
    padding: 0.09em;
    margin-top: 0.24em;
  }
}
