/* =========================================================
   Service detail page
   Screenshot reference: /service/guide/service
========================================================= */

:root {
  --service-container: 1080px;
}

.service-page {
  --service-container: 1080px;
  background: #f7f7f7;
}

.service-page main {
  padding-top: var(--header-height);
}

.service-container {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), var(--service-container));
  margin-inline: auto;
}

.service-hero {
  position: relative;
  min-height: 285px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #f7f7f7;
}

.service-hero h1 {
  margin: 0 0 20px;
  color: var(--red);
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 1.2;
  font-weight: 450;
  letter-spacing: .025em;
}

.service-hero p {
  margin: 0;
  font-size: 13px;
  color: #4f4f4f;
  letter-spacing: .02em;
}

.service-hero-dots {
  position: absolute;
  z-index: 1;
  right: -90px;
  top: 0;
  width: 470px;
  height: 100%;
  opacity: .85;
  background-image: radial-gradient(#e6e6e6 .85px, transparent .85px);
  background-size: 7px 7px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 45%);
  mask-image: linear-gradient(90deg, transparent 0, #000 45%);
}

.service-block {
  position: relative;
  padding: 72px 0 86px;
  overflow: hidden;
  border-radius: 56px 56px 0 0;
}

.problem-block {
  background: #fff;
}

.service-title {
  margin-bottom: 46px;
}

.service-title h2 {
  margin: 0 0 12px;
  color: var(--red);
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1;
  font-weight: 450;
  letter-spacing: .02em;
}

.service-title p {
  margin: 0;
  font-size: 12px;
  color: #4d4d4d;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 62px;
}

.problem-item {
  position: relative;
  min-width: 0;
  padding: 0 34px;
  text-align: center;
}

.problem-item + .problem-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 10px;
  width: 1px;
  background: #e8e8e8;
}

.problem-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 17px;
  color: var(--red);
}

.problem-icon svg {
  width: 100%;
  height: 100%;
}

.problem-item h3 {
  margin: 0 0 22px;
  font-size: 17px;
  font-weight: 500;
}

.problem-item strong {
  display: block;
  margin-bottom: 9px;
  color: #343434;
  font-size: 13px;
  line-height: 1.65;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}

.problem-item p {
  margin: 0;
  color: #888;
  font-size: 9px;
  line-height: 1.8;
}

.strength-panel {
  position: relative;
  overflow: hidden;
  padding: 51px 72px 54px;
  border-radius: 48px;
  background: #f4f4f4;
}

.strength-panel > *:not(.strength-dots) {
  position: relative;
  z-index: 2;
}

.strength-panel > h2 {
  margin: 0 0 38px;
  color: var(--red);
  font-size: 28px;
  font-weight: 480;
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 58px;
  row-gap: 37px;
}

.strength-grid article span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 11px;
}

.strength-grid article h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 500;
}

.strength-grid article p {
  margin: 0;
  color: #6e6e6e;
  font-size: 10px;
  line-height: 1.9;
}

.strength-dots {
  position: absolute;
  z-index: 1;
  width: 290px;
  height: 280px;
  background-image: radial-gradient(rgba(201, 192, 161, .72) .75px, transparent .75px);
  background-size: 7px 7px;
}

.strength-dots-left {
  left: -65px;
  bottom: -115px;
  -webkit-mask-image: radial-gradient(circle at 35% 60%, #000 0, transparent 68%);
  mask-image: radial-gradient(circle at 35% 60%, #000 0, transparent 68%);
}

.strength-dots-right {
  right: -65px;
  top: -90px;
  -webkit-mask-image: radial-gradient(circle at 60% 45%, #000 0, transparent 68%);
  mask-image: radial-gradient(circle at 60% 45%, #000 0, transparent 68%);
}

.service-works {
  background: #f3f3f3;
}

.service-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.service-heading-row .service-title,
.service-heading-row .pill-link {
  margin-bottom: 36px;
}

.service-work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  width: min(100%, 615px);
}

.service-work-card {
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.025);
}

.service-work-card > img {
  aspect-ratio: 1.57;
  object-fit: cover;
}

.service-work-body {
  padding: 20px 20px 18px;
}

.service-work-body h3 {
  margin: 0 0 14px;
  min-height: 54px;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
}

.service-work-body > p {
  margin: 0 0 23px;
  min-height: 54px;
  color: #555;
  font-size: 10px;
  line-height: 1.8;
}

.service-work-company {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 43px;
  padding-top: 13px;
  border-top: 1px solid #ededed;
  color: #777;
  font-size: 8px;
  line-height: 1.45;
}

.company-logo {
  flex: 0 0 auto;
  min-width: 35px;
  height: 25px;
  display: grid;
  place-items: center;
  padding-inline: 5px;
  border-radius: 5px;
  font-size: 7px;
  font-weight: 800;
}

.logo-a { background: #eef5de; color: #8baa39; }
.logo-b { background: #e8f3fa; color: #3689b8; }

.flow-block {
  background: #fff;
}

.flow-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 40px;
  align-items: center;
}

.flow-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid transparent;
}

.flow-list li {
  position: relative;
  min-height: 72px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 0;
  align-items: center;
  padding: 13px 18px 13px 20px;
  border: 1px solid #e7e7e7;
  background: #fff;
}

.flow-list li + li {
  border-top: 0;
}

.flow-list li::before {
  content: "";
  position: absolute;
  left: 30px;
  top: -13px;
  width: 1px;
  height: 25px;
  background: var(--red);
}

.flow-list li:first-child::before {
  display: none;
}

.flow-list li.is-active {
  z-index: 2;
  border-color: var(--red);
}

.flow-list li > span {
  align-self: start;
  padding-top: 4px;
  color: var(--red);
  font-size: 11px;
}

.flow-list h3 {
  margin: 0 0 5px;
  font-size: 13px;
  font-weight: 600;
}

.flow-list p {
  margin: 0;
  color: #777;
  font-size: 8px;
  line-height: 1.7;
}

.flow-image {
  overflow: hidden;
}

.flow-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.faq-block {
  background: #f4f4f4;
}

.faq-list {
  max-width: 100%;
}

.faq-list details {
  border-bottom: 1px solid #e1e1e1;
}

.faq-list summary {
  min-height: 62px;
  display: grid;
  grid-template-columns: 34px 1fr 22px;
  gap: 13px;
  align-items: center;
  list-style: none;
  cursor: pointer;
  font-size: 14px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-q {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-size: 11px;
  font-weight: 600;
}

.faq-toggle {
  position: relative;
  width: 16px;
  height: 16px;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 1px;
  background: var(--red);
  transform: translate(-50%, -50%);
  transition: transform .2s ease;
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  padding: 0 44px 20px 47px;
  color: #666;
  font-size: 11px;
  line-height: 1.9;
}

.service-contact {
  position: relative;
  z-index: 2;
  margin-top: 0;
  border-radius: 56px 56px 0 0;
  background-color: #fff;
}

.service-footer {
  position: relative;
  z-index: 3;
  margin-top: -1px;
}

.service-page .global-nav a[aria-current="page"]::after {
  right: 0;
}

@media (max-width: 980px) {
  .service-page { --service-container: 1080px; }
  .problem-item { padding-inline: 22px; }
  .strength-panel { padding-inline: 48px; }
}

@media (max-width: 720px) {
  .service-container {
    width: min(calc(100% - 32px), var(--service-container));
  }

  .service-hero {
    min-height: 230px;
  }

  .service-hero h1 {
    font-size: 35px;
  }

  .service-hero p {
    max-width: 85%;
    font-size: 11px;
  }

  .service-block {
    padding: 58px 0 68px;
    border-radius: 34px 34px 0 0;
  }

  .service-title {
    margin-bottom: 34px;
  }

  .service-title h2 {
    font-size: 34px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-bottom: 50px;
  }

  .problem-item {
    padding: 0 10px 30px;
    border-bottom: 1px solid #e9e9e9;
  }

  .problem-item + .problem-item::before {
    display: none;
  }

  .problem-item h3 {
    margin-bottom: 15px;
  }

  .problem-item p {
    font-size: 10px;
  }

  .strength-panel {
    padding: 40px 26px;
    border-radius: 28px;
  }

  .strength-panel > h2 {
    margin-bottom: 30px;
    font-size: 24px;
  }

  .strength-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .strength-grid article h3 {
    font-size: 19px;
  }

  .service-heading-row {
    align-items: flex-start;
  }

  .service-heading-row .pill-link {
    min-width: 98px;
  }

  .service-work-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .service-work-body h3,
  .service-work-body > p {
    min-height: auto;
  }

  .flow-layout {
    grid-template-columns: 1fr;
  }

  .flow-image {
    order: -1;
  }

  .flow-image img {
    aspect-ratio: 16 / 11;
  }

  .faq-list summary {
    font-size: 12px;
  }

  .faq-answer {
    padding-left: 0;
    padding-right: 0;
  }

  .service-contact {
    border-radius: 34px 34px 0 0;
  }
}

/* =========================================================
   CREATREE canonical service copy
========================================================= */
.ct-service-section-title {
  margin: 0 0 30px;
  color: #2f2f2f;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.45;
  font-weight: 500;
}
.ct-service-pricing,
.ct-service-overview { background: #fff; }
.ct-service-model,
.ct-service-summary-pricing { background: #f3f3f3; }
.ct-service-summary-models { background: #fff; }
.ct-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.ct-plan-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 30px;
  border: 1px solid #e7e7e7;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .035);
}
.ct-plan-card h3 { margin: 0 0 12px; font-size: 21px; line-height: 1.5; font-weight: 600; }
.ct-plan-price { margin: 0 0 17px; color: var(--red); font-size: 22px; line-height: 1.4; font-weight: 700; }
.ct-plan-description { min-height: 58px; margin: 0 0 22px; color: #5f5f5f; font-size: 12px; line-height: 1.8; }
.ct-plan-card h4 { margin: 0 0 10px; font-size: 12px; font-weight: 700; }
.ct-plan-card ul { margin: 0 0 22px; padding: 0; list-style: none; }
.ct-plan-card li { position: relative; margin: 7px 0; padding-left: 17px; color: #555; font-size: 11px; line-height: 1.65; }
.ct-plan-card li::before { content: ""; position: absolute; left: 0; top: .72em; width: 6px; height: 6px; border-radius: 50%; background: var(--red); }
.ct-plan-duration { margin: auto 0 0; padding-top: 17px; border-top: 1px solid #ededed; font-size: 12px; font-weight: 650; }
.ct-service-note {
  margin: 22px 0 0;
  padding: 15px 18px;
  border-left: 3px solid var(--red);
  color: #696969;
  background: #fafafa;
  font-size: 10px;
  line-height: 1.85;
}
.ct-model-problem { margin-bottom: 34px; padding: 26px 30px; border-radius: 12px; background: #fff; }
.ct-model-problem h3,
.ct-model-flow > h3,
.ct-model-effects > h3 { margin: 0 0 15px; font-size: 18px; font-weight: 600; }
.ct-model-problem p { margin: 8px 0 0; color: #5d5d5d; font-size: 12px; }
.ct-model-flow { margin-bottom: 38px; }
.ct-model-flow ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: service-step;
}
.ct-model-flow li {
  position: relative;
  min-height: 90px;
  display: flex;
  align-items: center;
  padding: 26px 20px 17px;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  background: #fff;
  counter-increment: service-step;
}
.ct-model-flow li::before {
  content: counter(service-step, decimal-leading-zero);
  position: absolute;
  left: 19px;
  top: 9px;
  color: var(--red);
  font-size: 9px;
  font-weight: 700;
}
.ct-model-flow li::after { content: "→"; position: absolute; right: -11px; top: 50%; z-index: 2; color: var(--red); transform: translateY(-50%); }
.ct-model-flow li:nth-child(4n)::after,
.ct-model-flow li:last-child::after { display: none; }
.ct-model-flow li span { font-size: 11px; line-height: 1.6; font-weight: 600; }
.ct-service-table-wrap { width: 100%; overflow-x: auto; border: 1px solid #e5e5e5; border-radius: 8px; background: #fff; }
.ct-service-table { width: 100%; min-width: 560px; border: 0; border-collapse: collapse; table-layout: fixed; }
.ct-service-table th,
.ct-service-table td { padding: 14px 18px; border: 0; border-bottom: 1px solid #ebebeb; font-size: 11px; line-height: 1.6; text-align: right; }
.ct-service-table thead th { color: #fff; background: #333; font-weight: 650; }
.ct-service-table th:first-child { width: 42%; text-align: left; }
.ct-service-table tbody th { color: #3f3f3f; background: #fafafa; font-weight: 600; }
.ct-service-table tbody tr:last-child > * { border-bottom: 0; }
.ct-service-final-cta { padding: 78px 0 86px; text-align: center; background-color: #fff; }
.ct-service-final-cta h2 { max-width: 790px; margin: 0 auto 20px; font-size: clamp(25px, 3vw, 36px); line-height: 1.55; font-weight: 500; }
.ct-service-final-cta p { max-width: 720px; margin: 0 auto 28px; color: #616161; font-size: 12px; }
.ct-service-final-cta a,
.ct-inline-cta {
  width: min(100%, 390px);
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 20px 0 28px;
  border-radius: 99px;
  color: #fff;
  background: var(--red);
  font-size: 12px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}
.ct-service-final-cta a span,
.ct-inline-cta span { width: 30px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; color: var(--red); background: #fff; }
.ct-service-final-cta a:hover,
.ct-inline-cta:hover { color: #fff; background: var(--red-dark); transform: translateY(-2px); }
.ct-service-overview-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.ct-service-overview-card { position: relative; min-width: 0; padding: 31px; border: 1px solid #e5e5e5; border-radius: 14px; background: #fff; }
.ct-service-overview-card:last-child { grid-column: 1 / -1; }
.ct-service-card-number { margin: 0 0 8px !important; color: var(--red) !important; font-size: 10px !important; font-weight: 800; }
.ct-service-overview-card h2 { margin: 0 0 12px; font-size: 22px; font-weight: 550; }
.ct-service-overview-card > p { margin: 0 0 16px; color: #666; font-size: 11px; }
.ct-service-overview-card .tags { margin-bottom: 24px; }
.ct-service-overview-card > a:not(.ct-service-overview-card__link) { display: inline-flex; align-items: center; gap: 15px; color: var(--red); font-size: 11px; font-weight: 700; }
.ct-service-overview-card > a:not(.ct-service-overview-card__link) span { width: 26px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--red); }
.ct-service-overview .ct-service-overview-card { padding: 0; overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.ct-service-overview .ct-service-overview-card:hover { border-color: rgba(144, 125, 56, .42); box-shadow: 0 14px 36px rgba(46, 40, 20, .1); transform: translateY(-3px); }
.ct-service-overview .ct-service-overview-card:focus-within { outline: 3px solid rgba(201, 192, 161, .65); outline-offset: 3px; }
.ct-service-overview-card__link { display: flex; flex-direction: column; min-height: 100%; padding: 31px; color: inherit; text-decoration: none; }
.ct-service-overview-card__link:focus-visible { outline: none; }
.ct-service-overview-card__link > p:not(.ct-service-card-number) { margin: 0 0 16px; color: #666; font-size: 11px; }
.ct-service-overview-card__more { display: inline-flex; align-items: center; gap: 15px; margin-top: auto; color: var(--red); font-size: 11px; font-weight: 700; }
.ct-service-overview-card__more i { width: 26px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--red); font-style: normal; }
.ct-service-summary-pricing > .service-container > p { color: #606060; font-size: 12px; }
.ct-pricing-explanation { margin: 30px 0 25px; padding: 26px 30px; border-radius: 12px; background: #fff; }
.ct-pricing-explanation p { margin: 0; color: #595959; font-size: 12px; }
.ct-pricing-explanation ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; padding: 0; list-style: none; }
.ct-pricing-explanation li { padding: 7px 12px; border-radius: 99px; color: #555; background: #f0f0f0; font-size: 10px; }
.ct-summary-model-list { display: grid; gap: 24px; }
.ct-summary-model-card { padding: 32px; border: 1px solid #e7e7e7; border-radius: 14px; background: #fff; }
.ct-summary-model-card h3 { margin: 0 0 12px; font-size: 20px; font-weight: 600; }
.ct-summary-model-card > p:not(.ct-service-note) { margin: 0 0 22px; color: #626262; font-size: 11px; }
.ct-summary-model-card .ct-model-after { margin: 18px 0 0 !important; color: #454545 !important; font-weight: 600; }

@media (max-width: 720px) {
  .ct-plan-grid,
  .ct-service-overview-grid { grid-template-columns: 1fr; }
  .ct-service-overview-card:last-child { grid-column: auto; }
  .ct-plan-card,
  .ct-service-overview-card,
  .ct-summary-model-card { padding: 24px 20px; }
  .ct-service-overview .ct-service-overview-card { padding: 0; }
  .ct-service-overview-card__link { padding: 24px 20px; }
  .ct-plan-description { min-height: 0; }
  .ct-model-flow ol { grid-template-columns: 1fr; }
  .ct-model-flow li { min-height: 66px; }
  .ct-model-flow li::after { content: "↓"; left: 50%; right: auto; top: auto; bottom: -14px; transform: translateX(-50%); }
  .ct-model-flow li:nth-child(4n)::after { display: block; }
  .ct-model-flow li:last-child::after { display: none; }
  .ct-service-table th,
  .ct-service-table td { padding: 12px 13px; }
  .ct-service-final-cta { padding: 60px 0 68px; }
  .ct-service-final-cta p { font-size: 11px; }
}

/* Gutenberg renders div/figure wrappers instead of the static reference markup. */
.service-editor-content > .wp-block-group { margin: 0; }
.service-editor-content .wp-block-group__inner-container { width: 100%; }
.problem-icon {
  display: grid;
  place-items: center;
  font-size: 38px !important;
  line-height: 1 !important;
}
.problem-item .problem-lead { margin-bottom: 9px; }
.problem-item .problem-lead strong { display: inline; }
.strength-grid > .strength-item .strength-number {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 11px;
}
.strength-grid > .strength-item h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 500;
}
.strength-grid > .strength-item > p:last-child {
  margin: 0;
  color: #6e6e6e;
  font-size: 10px;
  line-height: 1.9;
}
.service-work-grid.wp-block-columns { align-items: stretch !important; }
.service-work-card figure img { width: 100%; aspect-ratio: 1.57; object-fit: cover; }
.service-work-card > h3 {
  margin: 20px 20px 14px;
  min-height: 54px;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
}
.service-work-card > p { margin: 0 20px 23px; color: #555; font-size: 10px; line-height: 1.8; }
.flow-layout.wp-block-columns { align-items: center !important; }
.flow-list > .flow-item {
  position: relative;
  min-height: 72px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 0;
  align-items: center;
  padding: 13px 18px 13px 20px;
  border: 1px solid #e7e7e7;
  background: #fff;
}
.flow-list > .flow-item + .flow-item { border-top: 0; }
.flow-list > .flow-item::before {
  content: "";
  position: absolute;
  left: 30px;
  top: -13px;
  width: 1px;
  height: 25px;
  background: var(--red);
}
.flow-list > .flow-item:first-child::before { display: none; }
.flow-list > .flow-item.is-active { z-index: 2; border-color: var(--red); }
.flow-list .flow-number { align-self: start; margin: 0; padding-top: 4px; color: var(--red); font-size: 11px; }
.flow-list .flow-copy h3 { margin: 0 0 5px; font-size: 13px; font-weight: 600; }
.flow-list .flow-copy p { margin: 0; color: #777; font-size: 8px; line-height: 1.7; }
.faq-list > details > summary::before {
  content: "Q";
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-size: 11px;
  font-weight: 600;
}
.faq-list > details > summary::after {
  content: "+";
  color: var(--red);
  font-size: 20px;
  line-height: 1;
}
.faq-list > details[open] > summary::after { content: "−"; }
.faq-list > details > p { margin: 0; padding: 0 44px 20px 47px; color: #666; font-size: 11px; line-height: 1.9; }

@media (max-width: 720px) {
  .strength-grid > .strength-item h3 { font-size: 19px; }
  .service-work-card > h3 { min-height: auto; }
  .flow-layout.wp-block-columns { display: grid; }
  .faq-list > details > p { padding-left: 0; padding-right: 0; }
}

/* Contextual Guide links on the AI automation service. */
.ct-detail-card__guide-link { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 22px; padding-top: 17px; border-top: 1px solid rgba(144, 125, 56, .2); color: var(--gold-main); font-size: 11px; font-weight: 750; line-height: 1.7; }
.ct-detail-card__guide-link span { flex: 0 0 auto; font-size: 16px; }
.ct-service-guide-links { margin-top: 34px; padding: 28px; border: 1px solid rgba(144, 125, 56, .18); border-radius: 15px; background: #f8f6ef; }
.ct-service-guide-links > p { margin: 0 0 17px; color: var(--gold-main); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.ct-service-guide-links > div { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 22px; }
.ct-service-guide-links a { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px 0; border-bottom: 1px solid rgba(144, 125, 56, .16); color: #44443f; font-size: 12px; font-weight: 700; line-height: 1.65; }
.ct-service-guide-links a span { flex: 0 0 auto; color: var(--gold-main); font-size: 16px; }
@media (max-width: 720px) { .ct-service-guide-links { padding: 23px 20px; } .ct-service-guide-links > div { grid-template-columns: 1fr; gap: 0; } }
