@charset "UTF-8";
/* ───────────────────────── Breakpoints ─────────────────────────
 *   sm  : 360px   (mobile-s)
 *   md  : 767px   (mobile ↔ tablet 경계)
 *   lg  : 1024px  (tablet-l)
 *   xl  : 1380px  (desktop-s)
 *   xxl : 1460px  (desktop-m)
 *   xxxl: 1600px  (desktop-l)
 * ───────────────────────────────────────────────────────────── */
/*
 * clearfix
 * @include clearfix;
*/
/*
* vw
* @include vw('font-size', 16px);
*/
/*
* textEllipsis 한 줄
* @include textEllipsis;
*/
/*
* textEllipsis 여러 줄
* @include textEllipsisClamp;
*/
/*
* textClip
* @include textClip;
*/
/*
* swiper
* @include swiper(center);
*/
/* component mixin */
body .KRP0036 .component-inner:has(.pdp-post-bottom) {
  padding: 0;
}

.care-solution-contents-html .post-section.post-headline .post-inner {
  padding-top: 0;
}

.video-toggle-btn,
.mute-toggle-btn {
  position: absolute;
  bottom: 12px;
  width: 24px;
  height: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.video-toggle-btn::after,
.mute-toggle-btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("/kr/Caresolution/images/icons/icon-video-play.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
}
.video-toggle-btn.pause::after,
.mute-toggle-btn.pause::after {
  background-image: url("/kr/Caresolution/images/icons/icon-video-pause.svg");
}

.video-toggle-btn {
  right: 12px;
}
.video-toggle-btn::after {
  background-image: url("/kr/Caresolution/images/icons/icon-video-play.svg");
}
.video-toggle-btn.pause::after {
  background-image: url("/kr/Caresolution/images/icons/icon-video-pause.svg");
}

.mute-toggle-btn {
  left: 12px;
}
.mute-toggle-btn::after {
  background-image: url("/kr/Caresolution/images/icons/icon-sound-muted.svg");
}
.mute-toggle-btn.muted::after {
  background-image: url("/kr/Caresolution/images/icons/icon-sound-play.svg");
}

.tab-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: fit-content;
  max-width: 416px;
  margin: 0 auto;
  margin-bottom: 32px;
}
.tab-list-pills {
  background-color: #f0ece4;
  border-radius: 99px;
}
.tab-list-pills .tab-btn {
  border-radius: 99px;
}
.tab-list-pills .tab-btn[aria-selected=true] {
  color: #fff;
  background-color: #000;
}
.tab-list-pills .tab-btn:focus-visible {
  outline: 2px dashed #000;
  outline-offset: 1px;
}
.tab-list-underline {
  max-width: 100%;
}
.tab-list-underline .tab-btn {
  position: relative;
  flex: 1 0 auto;
  padding-bottom: 15px;
}
.tab-list-underline .tab-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: #f65558;
  border-radius: 2px;
  transition: width 0.3s ease;
}
.tab-list-underline .tab-btn[aria-selected=true]::after {
  width: 100%;
}

.tab-btn {
  flex: 1;
  z-index: 1;
  max-width: 208px;
  padding: 16px 24px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: #000;
  word-break: keep-all;
}

.tab-panel,
[role=tabpanel] {
  position: relative;
  padding: 0;
}
.tab-panel[hidden],
[role=tabpanel][hidden] {
  display: none;
}

.accordion-list {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: #e6e1d6;
  border-radius: 24px;
}
.accordion-item {
  position: relative;
}
.accordion-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 0;
  left: 24px;
  height: 1px;
  background-color: #cbc8c2;
}
.accordion-item.is-active::after, .accordion-item:has(+ .is-active)::after {
  display: none;
}
.accordion-item:first-child .accordion-header {
  height: 72px;
  padding-top: 24px;
}
.accordion-item:last-child .accordion-header:not([aria-expanded=true]) {
  padding-bottom: 24px;
}
.accordion-item:last-child .accordion-panel-inner:not(:has(.panel-notes)) {
  padding-bottom: 32px;
}
.accordion-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 48px;
  padding: 12px 12px 12px 24px;
  font-size: 16px;
  line-height: 1.4;
  color: #000;
  text-align: left;
  transition: color 0.35s cubic-bezier(0.87, 0, 0.13, 1), background-color 0.35s cubic-bezier(0.87, 0, 0.13, 1);
}
.accordion-header:after {
  content: "";
  display: flex;
  align-items: center;
  width: 48px;
  height: 48px;
  background-image: url("/kr/Caresolution/images/icons/icon-arrow-ud-black.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px auto;
  transition: transform 0.35s cubic-bezier(0.87, 0, 0.13, 1);
}
.accordion-header[aria-expanded=true] {
  height: 68px;
  padding-top: 12px;
  padding-bottom: 12px;
  color: #fff;
  background: #000;
}
.accordion-header[aria-expanded=true]:after {
  background-image: url("/kr/Caresolution/images/icons/icon-arrow-ud-white.svg");
}
.accordion-panel {
  position: relative;
  transition: visibility 0s ease, opacity 0.3s cubic-bezier(0.87, 0, 0.13, 1);
  visibility: visible;
}
.accordion-panel-inner {
  font-size: 13px;
  line-height: 1.4;
  color: #fff;
  background: #000;
}
.accordion-panel-inner p {
  padding: 0 24px;
}
.accordion-panel-inner img {
  max-width: 100%;
  padding-top: 24px;
}
.accordion-panel-inner .panel-notes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
}
.accordion-panel-inner .panel-notes li {
  position: relative;
  padding-left: 11px;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.4;
  color: #ccc;
  word-break: keep-all;
}
.accordion-panel-inner .panel-notes li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 4px;
  height: 4px;
  background-color: #ccc;
  border-radius: 50%;
}

.swiper-button-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.swiper-button-wrapper [class*=swiper-button-] {
  position: static;
  width: 24px;
  height: 24px;
  margin: 0;
  background-image: url("/kr/Caresolution/images/icons/icon-arrow-circle-black-lr.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(180deg);
}
.swiper-button-wrapper [class*=swiper-button-]::after {
  display: none;
}
.swiper-button-wrapper .swiper-button-next {
  transform: rotate(0);
}

.swiper-nav-visible .swiper-button-wrapper {
  display: flex;
}

.swiper:not(.swiper-nav-visible) .swiper-button-wrapper {
  display: none;
}

.swiper.benefit-swiper:not(.swiper-nav-visible) + .swiper-button-wrapper {
  display: none;
}

.btn-video-subtitle {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 4px 12px;
  font-weight: 500;
  font-size: 13px;
  line-height: 18px;
  color: #fff;
  letter-spacing: -0.5px;
  background-color: #262626;
  border-radius: 50px;
}
.btn-video-subtitle:focus-vibible {
  outline: 2px dashed #fff;
  outline-offset: 1px;
}

.video-cap-section {
  position: relative;
  display: flex;
  gap: 10px;
  margin-top: 12px;
  padding: 16px;
  background: #f6f3eb;
  border-radius: 24px;
}
.video-cap-section[hidden] {
  display: none;
}
.video-cap-section .rectangle {
  flex: 1;
  overflow-y: auto;
  max-height: 68px;
  font-size: 14px;
  line-height: 1.4;
  color: #4a4946;
  word-break: keep-all;
}
.video-cap-section .rectangle::-webkit-scrollbar {
  width: 4px;
}
.video-cap-section .rectangle::-webkit-scrollbar-track {
  background: #cbc8c2;
  border-radius: 2px;
}
.video-cap-section .rectangle::-webkit-scrollbar-thumb {
  border-radius: 2px;
  border: 2px solid #4a4946;
}
.video-cap-section .btn-subtitle-close {
  width: 16px;
  height: 16px;
  background-image: url("/kr/Caresolution/images/icons/icon-close-16.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
}

.post-section {
  padding: 64px 0;
}

.post-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 24px;
}

.post-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  text-align: left;
}
.post-header-title {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.4;
  color: #000;
}
.post-header-description {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  word-break: keep-all;
}

.footnote {
  position: relative;
  padding-right: 2px;
  padding-left: 12px;
  margin-top: 24px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #666;
}
.footnote::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 2px;
  width: 4px;
  height: 4px;
  background-color: #4a4946;
  border-radius: 50%;
}

.footnote-list {
  margin-top: 24px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #666;
}
.footnote-list p + ul {
  margin-top: 12px;
}
.footnote-list ul li {
  position: relative;
  padding-right: 2px;
  padding-left: 12px;
}
.footnote-list ul li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 2px;
  width: 4px;
  height: 4px;
  background-color: #4a4946;
  border-radius: 50%;
}
.footnote-list ul li + li {
  margin-top: 12px;
}

.post-headline {
  padding: 0;
  text-align: center;
}
.post-headline .post-header {
  margin-bottom: 0;
}
.post-headline .post-inner {
  margin: 0 24px;
  padding: 64px 0;
  border-bottom: 1px solid #ddd;
}
.post-headline-title {
  display: block;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  color: #000;
  text-align: left;
  letter-spacing: -0.5px;
}

.post-subscription {
  padding-bottom: 0;
}
.post-subscription .care-swiper {
  padding: 64px 0;
  background-color: #e9e3d2;
}
.post-subscription .care-swiper .swiper-wrapper {
  align-items: stretch;
}
.post-subscription .care-card {
  height: auto;
  padding: 0 24px;
}
.post-subscription .care-card-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.post-subscription .care-card-title {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.4;
  color: #000;
}
.post-subscription .care-card-title .logo {
  padding: 0;
  font-size: 0;
  line-height: 1;
}
.post-subscription .care-card-title .logo img {
  max-width: 176px;
  height: auto;
}
.post-subscription .care-card-description {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: #a50034;
}
.post-subscription .care-card-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.post-subscription .care-card-body .card-image {
  display: block;
  padding-top: 14px;
  text-align: center;
}
.post-subscription .care-card-body .card-image img {
  max-width: 100%;
}
.post-subscription .care-card-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.post-subscription .care-card-item {
  font-weight: 500;
  font-size: 13px;
  line-height: 1.4;
  color: #4a4946;
  word-break: keep-all;
}

.post-comparison {
  padding: 0;
}
.post-comparison .post-inner {
  margin: 0 24px;
  padding: 64px 0;
}
.post-comparison .tab-list-pills {
  width: 100%;
}
.post-comparison .comparison-tbl {
  width: 100%;
  border-collapse: separate;
  background: #f0ece4;
  border-spacing: 0;
}
.post-comparison .comparison-tbl .highlight-row th,
.post-comparison .comparison-tbl .highlight-row td {
  padding: 8px;
  height: 60px;
  color: #fff;
  background-color: #000;
}
.post-comparison .comparison-tbl .highlight-row th {
  border-top-left-radius: 24px;
}
.post-comparison .comparison-tbl .highlight-row td {
  background-color: #fff;
}
.post-comparison .comparison-tbl .highlight-row td:last-child {
  border-top-right-radius: 24px;
}
.post-comparison .comparison-tbl .highlight-row ~ tr {
  background-color: #000;
  border-bottom-left-radius: 24px;
}
.post-comparison .comparison-table {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow-x: auto;
  width: 100%;
  background: #f0ece4;
  border-radius: 24px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.post-comparison .comparison-table::-webkit-scrollbar {
  display: none;
}
.post-comparison .comparison-table > .table-row {
  min-width: 100%;
}
.post-comparison .comparison-table .table-row.header-row {
  min-height: 76px;
}
.post-comparison .table-row {
  display: flex;
  gap: 4px;
  padding: 0 4px;
}
.post-comparison .table-row.header-row {
  padding: 4px 4px 0 4px;
}
.post-comparison .table-row.header-row .table-cell {
  font-weight: 700;
}
.post-comparison .table-row.header-row .table-cell:not(.title-cell) {
  border-bottom: 1px solid #f4f4fb;
  border-radius: 24px 24px 0 0;
}
.post-comparison .table-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 98px;
  min-height: 52px;
  padding: 0 13px;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.4;
  color: #000;
  text-align: center;
  background-color: #ffffff;
  letter-spacing: -0.4px;
  word-break: keep-all;
}
.post-comparison .table-cell.title-cell {
  flex: 1;
  justify-content: center;
  min-width: 100px;
  font-weight: 600;
  background-color: transparent;
}
.post-comparison .different-table {
  position: relative;
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  min-width: 100%;
  color: #fff;
  border-radius: 24px;
}
.post-comparison .different-table::before {
  content: "";
  position: absolute;
  top: 0;
  right: 4px;
  z-index: 0;
  width: 20px;
  height: 20px;
  background-color: #fff;
}
.post-comparison .different-table .table-row {
  background-color: #000;
}
.post-comparison .different-table .table-row:first-child {
  border-radius: 24px 24px 0 0;
}
.post-comparison .different-table .table-row:last-child {
  border-radius: 0 0 24px 24px;
}
.post-comparison .different-table .table-row.header-row {
  position: relative;
  min-height: auto;
}
.post-comparison .different-table .table-row.header-row:only-child {
  padding-bottom: 4px;
  border-radius: 24px;
}
.post-comparison .different-table .table-row.header-row:only-child .title-cell + .table-cell {
  border-bottom-left-radius: 20px;
}
.post-comparison .different-table .table-row.header-row:only-child .table-cell:last-child {
  border-bottom-right-radius: 20px;
}
.post-comparison .different-table .table-row.header-row .table-cell:not(.title-cell) {
  border-bottom: none;
  border-radius: 0;
}
.post-comparison .different-table .table-row.header-row .table-cell.title-cell + .table-cell {
  border-top-left-radius: 20px;
}
.post-comparison .different-table .table-row.header-row ~ .table-row:last-child {
  padding-bottom: 4px;
}
.post-comparison .different-table .table-row.header-row ~ .table-row:last-child .title-cell + .table-cell {
  border-radius: 0 0 0 20px;
}
.post-comparison .different-table .table-row.header-row ~ .table-row:last-child .table-cell:last-child {
  border-radius: 0 0 20px 0;
}
.post-comparison .different-table .table-row.header-row .table-cell:last-child {
  border-radius: 0 20px 0 0;
}
.post-comparison .different-table .table-row.header-row .title-cell + .table-cell:nth-last-child(n+3) {
  border-radius: 20px 0 0 0;
}
.post-comparison .different-table .table-row .table-cell {
  position: relative;
  font-weight: 500;
}
.post-comparison .different-table .table-cell {
  z-index: 1;
  padding: 0;
  color: #000;
}
.post-comparison .different-table .table-cell.title-cell {
  font-weight: 600;
  color: #fff;
}
.post-comparison .different-table .table-cell.premium-cell {
  color: #e00300;
}
.post-comparison .different-table .table-cell.premium-cell ~ .table-cell::before {
  content: "";
  position: absolute;
  top: 0;
  left: -4px;
  width: 4px;
  height: 100%;
  background-color: #f4f4fb;
}
.post-comparison .comparison-description {
  position: relative;
  padding-right: 4px;
  padding-left: 10px;
  margin-top: 24px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #666;
}
.post-comparison .comparison-description::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 4px;
  height: 4px;
  background-color: #4a4946;
  border-radius: 50%;
}
.post-comparison .contract-table .tab-list {
  margin-top: -16px;
}
.post-comparison .benefit-slide {
  height: auto;
}
.post-comparison .benefit-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
  padding: 48px 8px 8px;
  background-color: #f0ece4;
  border-radius: 24px;
}
.post-comparison .benefit-card-header {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  flex: 0 0 auto;
  height: 70px;
}
.post-comparison .benefit-card-cycle {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100%;
  padding-left: 16px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: #000;
}
.post-comparison .benefit-card-cycle.cycle-3 {
  gap: 6px;
  height: 52px;
  padding-left: 12px;
}
.post-comparison .benefit-card-cycle.cycle-3 [class*=time-] {
  height: 52px;
  background-size: contain;
}
.post-comparison .benefit-card-cycle.cycle-3 .time-6 {
  width: 38px;
}
.post-comparison .benefit-card-cycle.cycle-3 .time-12,
.post-comparison .benefit-card-cycle.cycle-3 .time-12-premium {
  width: 68px;
}
.post-comparison .benefit-card-cycle.cycle-3 .time-36,
.post-comparison .benefit-card-cycle.cycle-3 .time-36-premium {
  width: 80px;
}
.post-comparison .benefit-card-cycle .divider {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  width: 1px;
  height: 100%;
  background-color: #716f6a;
}
.post-comparison .benefit-card-cycle [class*=time-] {
  position: relative;
  height: 70px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center bottom;
}
.post-comparison .benefit-card-cycle .time-text {
  display: flex;
  align-items: flex-end;
  font-weight: 800;
  font-size: 40px;
}
.post-comparison .benefit-card-cycle .time-text.c-primary {
  color: #fd312e;
}
.post-comparison .benefit-card-cycle .time-3,
.post-comparison .benefit-card-cycle .time-6 {
  width: 49px;
}
.post-comparison .benefit-card-cycle .time-3 {
  background-image: url("/kr/Caresolution/images/icons/icon-num-3.svg");
}
.post-comparison .benefit-card-cycle .time-6 {
  background-image: url("/kr/Caresolution/images/icons/icon-num-6.svg");
}
.post-comparison .benefit-card-cycle .time-12,
.post-comparison .benefit-card-cycle .time-12-premium {
  width: 88px;
  background-image: url("/kr/Caresolution/images/icons/icon-num-12.svg");
}
.post-comparison .benefit-card-cycle .time-12-premium {
  background-image: url("/kr/Caresolution/images/icons/icon-num-12-red.svg");
}
.post-comparison .benefit-card-cycle .time-24,
.post-comparison .benefit-card-cycle .time-24-premium,
.post-comparison .benefit-card-cycle .time-30,
.post-comparison .benefit-card-cycle .time-36,
.post-comparison .benefit-card-cycle .time-36-premium {
  width: 105px;
}
.post-comparison .benefit-card-cycle .time-24 {
  background-image: url("/kr/Caresolution/images/icons/icon-num-24.svg");
}
.post-comparison .benefit-card-cycle .time-24-premium {
  background-image: url("/kr/Caresolution/images/icons/icon-num-24-red.svg");
}
.post-comparison .benefit-card-cycle .time-30 {
  background-image: url("/kr/Caresolution/images/icons/icon-num-30.svg");
}
.post-comparison .benefit-card-cycle .time-36 {
  background-image: url("/kr/Caresolution/images/icons/icon-num-36.svg");
}
.post-comparison .benefit-card-cycle .time-36-premium {
  background-image: url("/kr/Caresolution/images/icons/icon-num-36-red.svg");
}
.post-comparison .benefit-card-cycle .time-48,
.post-comparison .benefit-card-cycle .time-48-premium {
  width: 105px;
  background-image: url("/kr/Caresolution/images/icons/icon-num-48.svg");
}
.post-comparison .benefit-card-cycle .time-48-premium {
  background-image: url("/kr/Caresolution/images/icons/icon-num-48-red.svg");
}
.post-comparison .benefit-card-cycle .time-6_12 {
  width: 156px;
  background-image: url("/kr/Caresolution/images/icons/icon-num-6_12.svg");
}
.post-comparison .benefit-card-cycle .time-3_6 {
  width: 116px;
  background-image: url("/kr/Caresolution/images/icons/icon-num-3_6.svg");
}
.post-comparison .benefit-card-label {
  font-weight: 700;
}
.post-comparison .benefit-card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
  background-color: #fff;
  border-radius: 16px;
}
.post-comparison .benefit-card-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: min-content;
  align-content: start;
  align-items: start;
  gap: 12px 20px;
  height: 100%;
}
.post-comparison .benefit-card-group:has(.benefit-card-item.gray), .post-comparison .benefit-card-group:has(.benefit-card-item.full) {
  align-content: space-between;
}
.post-comparison .benefit-card-group.benefit-card-group-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}
.post-comparison .benefit-card-group.benefit-card-group-col .benefit-card-item {
  width: 100%;
}
.post-comparison .benefit-card-group.benefit-card-group-col .benefit-card-item.gray {
  margin-top: auto;
}
.post-comparison .benefit-card-item {
  position: relative;
  padding-left: 10px;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.4;
  color: #000;
}
.post-comparison .benefit-card-item::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 4px;
  height: 4px;
  background-color: #716f6a;
  border-radius: 50%;
}
.post-comparison .benefit-card-item.full {
  grid-column: 1/-1;
  width: 100%;
  margin-top: auto;
}
.post-comparison .benefit-card-item.gray {
  font-size: 12px;
  color: #666;
}
.post-comparison .benefit-card-item.gray::before {
  content: "*";
  top: 1px;
  width: 0px;
  height: 0px;
  color: #666;
  background-color: transparent;
}

.post-care-service {
  padding: 0;
}
.post-care-service:has(.care-video-section) .post-inner {
  padding-top: 64px;
  background-color: #f6f3eb;
}
.post-care-service .post-inner {
  padding: 0 24px 64px;
  background-color: #fff;
}
.post-care-service .care-video-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 64px 0;
}
.post-care-service .care-video-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 24px;
}
.post-care-service .care-video-title {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.4;
  color: #000;
  letter-spacing: -0.5px;
}
.post-care-service .care-video-description {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: #000;
}
.post-care-service .care-video-container {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  margin: 0 24px;
}
.post-care-service .care-video-container.is-active .care-video-play {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.post-care-service .care-video-container.is-active .care-video-btn,
.post-care-service .care-video-container.is-active .care-sound-btn {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.post-care-service .care-video-play {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 61.1111vw;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.post-care-service .care-video-play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  transform: translate(-50%, -50%);
  background-image: url("/kr/Caresolution/images/icons/icon-care-service-play.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
}
.post-care-service .care-video-media {
  position: relative;
  display: flex;
  overflow: hidden;
  background-color: #000;
  border-radius: 24px;
}
.post-care-service .care-video-media video {
  max-width: 100%;
  height: 61.1111vw;
  object-fit: contain;
}
.post-care-service .care-video-btn,
.post-care-service .care-sound-btn {
  position: absolute;
  bottom: 12px;
  width: 24px;
  height: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.post-care-service .care-video-btn::after,
.post-care-service .care-sound-btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("/kr/Caresolution/images/icons/icon-video-play.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
}
.post-care-service .care-video-btn.pause::after,
.post-care-service .care-sound-btn.pause::after {
  background-image: url("/kr/Caresolution/images/icons/icon-video-pause.svg");
}
.post-care-service .care-video-btn {
  right: 12px;
}
.post-care-service .care-video-btn::after {
  background-image: url("/kr/Caresolution/images/icons/icon-video-play.svg");
}
.post-care-service .care-video-btn.pause::after {
  background-image: url("/kr/Caresolution/images/icons/icon-video-pause.svg");
}
.post-care-service .care-video-icon {
  width: 100%;
  height: 100%;
}
.post-care-service .care-video-icon svg {
  width: 100%;
  height: 100%;
}
.post-care-service .care-sound-btn {
  left: 12px;
}
.post-care-service .care-sound-btn::after {
  background-image: url("/kr/Caresolution/images/icons/icon-sound-muted.svg");
}
.post-care-service .care-sound-btn.muted::after {
  background-image: url("/kr/Caresolution/images/icons/icon-sound-play.svg");
}

.post-faq {
  padding: 48px 0;
  background: #f0ece4;
}
.post-faq .post-inner {
  overflow: hidden;
}
.post-faq .qa-swiper {
  overflow: visible;
}
.post-faq .qa-swiper .swiper-wrapper {
  align-items: stretch;
}
.post-faq .qa-swiper .qa-slide {
  display: flex;
  height: auto;
}
.post-faq .qa-swiper .qa-card {
  min-height: 100%;
}
.post-faq .qa-swiper .qa-card-content {
  flex: 1;
}
.post-faq .qa-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.post-faq .qa-card-image {
  overflow: hidden;
  border-radius: 24px;
}
.post-faq .qa-card-image img {
  max-width: 100%;
  aspect-ratio: 52/81;
  object-fit: cover;
}
.post-faq .qa-video-wrap {
  display: flex;
  flex-direction: column;
}
.post-faq .qa-card-video {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 177.77%;
  overflow: hidden;
  border-radius: 24px;
  isolation: isolate;
}
.post-faq .qa-card-video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.post-faq .qa-card-video video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-radius: 24px;
}
.post-faq .qa-card-video.is-active video {
  z-index: 6;
  opacity: 1;
  pointer-events: auto;
}
.post-faq .qa-card-video.is-active .qa-thumb {
  opacity: 0;
  pointer-events: none;
}
.post-faq .qa-thumb {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  transition: opacity 0.35s ease;
  object-fit: cover;
}
.post-faq .mute-toggle-btn {
  width: 24px;
  height: 24px;
  z-index: 5;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.post-faq .qa-play-btn {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 5;
  width: 24px;
  height: 24px;
  background-image: url("/kr/Caresolution/images/icons/icon-video-pause.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
}
.post-faq .qa-play-btn.play {
  background-image: url("/kr/Caresolution/images/icons/icon-video-play.svg");
}
.post-faq .video-cap-section {
  background-color: #fff;
}
.post-faq .qa-card-body {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  padding: 24px;
  border: 1px solid #cbc8c2;
  border-radius: 24px;
}
.post-faq .qa-card-title {
  min-height: 36px;
  font-weight: 500;
  font-size: 13px;
  line-height: 18px;
  color: #000;
  word-break: keep-all;
}
.post-faq .qa-card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #cbc8c2;
}
.post-faq .qa-label {
  font-weight: 500;
  font-size: 13px;
  line-height: 1.4;
  color: #000;
}
.post-faq .qa-text {
  height: 78px;
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: #4a4946;
  word-break: keep-all;
}
.post-faq .ai-cta {
  margin-top: 64px;
}
.post-faq .ai-cta .ai-cta-container {
  display: flex;
  flex-direction: column;
  gap: 23px;
}
.post-faq .ai-cta .ai-cta-title {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.4;
}
.post-faq .ai-cta .ai-cta-btn {
  display: flex;
  overflow: hidden;
  width: 100%;
  height: auto;
  min-height: 113px;
  background-image: url("/kr/Caresolution/images/common/bg-lg-ai-subscription-mo_x2.gif");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 24px;
}

.post-bottom-banner .banner-container {
  position: relative;
}
.post-bottom-banner .banner-link {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 15px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 113px;
  padding: 0 20px 0 23px;
  background: var(--background-color, linear-gradient(0deg, #e8dbd2 0%, #cfc2b9 100%));
  border-radius: 24px;
}
.post-bottom-banner .banner-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.post-bottom-banner .banner-title {
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  color: #1d1d1d;
  letter-spacing: -0.4px;
}
.post-bottom-banner .banner-text {
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  color: #3d3d3d;
  letter-spacing: -0.6px;
}
.post-bottom-banner .banner-image {
  flex: 0 0 80px;
}
.post-bottom-banner .banner-image img {
  max-width: 100%;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  body .KRP0036 .component-inner:has(.pdp-post-bottom) {
    max-width: 100%;
    padding: 0;
  }
  .footnote {
    font-size: 16px;
  }
  .footnote::before {
    top: 9px;
    left: 0;
  }
  .footnote-list {
    margin-top: 32px;
    font-size: 16px;
  }
  .footnote-list p + ul {
    margin-top: 16px;
  }
  .footnote-list ul li {
    padding-left: 12px;
  }
  .footnote-list ul li::before {
    top: 9px;
    left: 0;
  }
  .footnote-list ul li + li {
    margin-top: 16px;
  }
  .tab-list {
    margin-bottom: 64px;
  }
  .tab-list-pills .tab-btn {
    width: 208px;
    padding: 20px 24px;
  }
  .tab-list .tab-btn {
    font-size: 24px;
  }
  .swiper-button-wrapper {
    margin-top: 0;
  }
  .swiper-button-wrapper [class*=swiper-button-] {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: block;
    width: 64px;
    height: 64px;
    background-image: url("/kr/Caresolution/images/icons/icon-arrow-circle-lr-48.svg");
    transform: translateY(-50%);
  }
  .swiper-button-wrapper [class*=swiper-button-].swiper-button-prev {
    left: -32px;
  }
  .swiper-button-wrapper [class*=swiper-button-].swiper-button-next {
    right: -32px;
    transform: translateY(-50%) scaleX(-1);
  }
  .btn-video-subtitle {
    padding: 6px 16px;
    font-size: 16px;
    line-height: 22px;
  }
  .post-section {
    max-width: 1380px;
    margin: 0 auto;
    padding: 120px 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1380px) {
  .post-section {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (min-width: 768px) {
  .post-header {
    gap: 24px;
    margin-bottom: 64px;
    text-align: center;
  }
  .post-header-title {
    font-size: 48px;
    line-height: 1.5;
  }
  .post-header-description {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.5;
  }
  .post-inner {
    padding: 0;
  }
  .post-headline {
    padding: 0;
  }
  .post-headline .post-inner {
    margin: 0 auto;
    padding: 120px 0;
  }
  .post-headline .post-desc {
    font-size: 32px;
    line-height: 1.5;
    text-align: center;
  }
  .post-subscription {
    padding-bottom: 0;
  }
  .post-subscription .post-header {
    margin-bottom: 64px;
  }
  .post-subscription .care-card-title {
    gap: 16px;
    min-height: 121px;
    font-size: 32px;
    letter-spacing: -0.5px;
  }
  .post-subscription .care-card-header {
    gap: 12px;
  }
  .post-subscription .care-card-body {
    gap: 24px;
  }
  .post-subscription .care-card-body .card-image {
    padding-top: 24px;
  }
  .post-subscription .care-card-body .card-image img {
    max-width: 280px;
  }
  .post-subscription .care-card-body .care-card-item {
    font-size: 14px;
  }
  .post-subscription .care-swiper {
    padding: 0;
    background-color: transparent;
  }
  .post-subscription .care-swiper .swiper-wrapper {
    gap: 24px;
  }
  .post-subscription .care-swiper .care-card {
    flex: 1;
    padding: 64px 48px 48px;
    background-color: #e9e3d2;
    border-radius: 24px;
  }
  .post-comparison {
    border-bottom: 1px solid #ddd;
  }
  .post-comparison .post-inner {
    margin: 0;
    padding: 0;
  }
  .post-comparison .tab-list-pills {
    width: auto;
  }
  .post-comparison .table-row {
    gap: 8px;
    padding: 0 8px;
  }
  .post-comparison .table-row.header-row {
    padding: 8px 8px 0 8px;
  }
  .post-comparison .table-cell {
    min-height: 60px;
    font-size: 20px;
    padding: 0;
  }
  .post-comparison .table-cell.title-cell {
    justify-content: flex-start;
    flex: 1;
    max-width: 389px;
    padding: 0 0 0 56px;
    text-align: left;
  }
  .post-comparison .different-table::before {
    right: 8px;
  }
  .post-comparison .different-table .table-row:only-child {
    padding-bottom: 8px;
  }
  .post-comparison .different-table .table-row.header-row:only-child,
  .post-comparison .different-table .table-row.header-row ~ .table-row:last-child {
    padding-bottom: 8px;
  }
  .post-comparison .different-table .table-row.header-row:only-child .table-cell + .premium-cell {
    border-bottom-left-radius: 20px;
  }
  .post-comparison .different-table .table-row.header-row:only-child .table-cell + .premium-cell + .table-cell {
    border-bottom-right-radius: 20px;
  }
  .post-comparison .different-table .table-cell.title-cell {
    padding-left: 56px;
    font-weight: 500;
  }
  .post-comparison .different-table .table-cell::before {
    display: none;
  }
  .post-comparison .benefit-swiper .benefit-slide {
    height: auto;
  }
  .post-comparison .benefit-card {
    gap: 50px;
    padding: 64px 24px 24px;
  }
  .post-comparison .benefit-card-header {
    height: 146px;
  }
  .post-comparison .benefit-card-cycle {
    gap: 16px;
    height: 146px;
    padding-left: 24px;
    font-size: 24px;
  }
  .post-comparison .benefit-card-cycle.cycle-3 {
    gap: 12px;
    height: 124px;
    padding-left: 24px;
  }
  .post-comparison .benefit-card-cycle.cycle-3 .divider {
    height: 124px;
  }
  .post-comparison .benefit-card-cycle.cycle-3 [class*=time-] {
    height: 124px;
  }
  .post-comparison .benefit-card-cycle.cycle-3 .time-6 {
    width: 90px;
  }
  .post-comparison .benefit-card-cycle.cycle-3 .time-12,
  .post-comparison .benefit-card-cycle.cycle-3 .time-12-premium {
    width: 162px;
  }
  .post-comparison .benefit-card-cycle.cycle-3 .time-36,
  .post-comparison .benefit-card-cycle.cycle-3 .time-36-premium {
    width: 188px;
  }
  .post-comparison .benefit-card-cycle [class*=time-] {
    height: 146px;
  }
  .post-comparison .benefit-card-cycle .time-text {
    font-size: 80px;
  }
  .post-comparison .benefit-card-cycle .time-text.c-primary, .post-comparison .benefit-card-cycle .time-text.premium {
    color: #fd312e;
  }
  .post-comparison .benefit-card-cycle .time-3,
  .post-comparison .benefit-card-cycle .time-6 {
    width: 102px;
  }
  .post-comparison .benefit-card-cycle .time-12,
  .post-comparison .benefit-card-cycle .time-12-premium {
    width: 185px;
  }
  .post-comparison .benefit-card-cycle .time-24,
  .post-comparison .benefit-card-cycle .time-24-premium,
  .post-comparison .benefit-card-cycle .time-30,
  .post-comparison .benefit-card-cycle .time-36,
  .post-comparison .benefit-card-cycle .time-36-premium,
  .post-comparison .benefit-card-cycle .time-48,
  .post-comparison .benefit-card-cycle .time-48-premium {
    width: 219px;
  }
  .post-comparison .benefit-card-cycle .time-6_12 {
    width: 323px;
  }
  .post-comparison .benefit-card-cycle .time-3_6 {
    width: 240px;
  }
  .post-comparison .benefit-card-body {
    flex: 1;
    min-height: 196px;
    padding: 40px;
  }
  .post-comparison .benefit-card-group {
    gap: 16px 28px;
  }
  .post-comparison .benefit-card-group.benefit-card-group-col {
    gap: 16px;
    width: 100%;
  }
  .post-comparison .benefit-card-item {
    padding-left: 18px;
    font-weight: 500;
    font-size: 20px;
    word-break: keep-all;
  }
  .post-comparison .benefit-card-item::before {
    top: 11px;
    width: 6px;
    height: 6px;
  }
  .post-comparison .benefit-card-item.gray {
    font-size: 16px;
  }
  .post-care-service {
    padding: 0;
  }
  .post-care-service:has(.care-video-section) .post-inner {
    padding-top: 120px;
    background-color: #fff;
  }
  .post-care-service:not(:has(.care-video-section)) .post-inner {
    padding-bottom: 120px;
  }
  .post-care-service .post-inner {
    padding: 120px 0 64px;
    background-color: #fff;
  }
  .post-care-service .care-video-section {
    flex-direction: row;
    align-items: center;
    gap: 64px;
    margin: 64px 0 120px;
    padding: 48px 48px 48px 64px;
    background-color: #f6f3eb;
    border-radius: 24px;
  }
  .post-care-service .care-video-content {
    gap: 16px;
    flex: 1;
    padding: 0;
  }
  .post-care-service .care-video-title {
    font-size: 48px;
    line-height: 1.4;
  }
  .post-care-service .care-video-description {
    font-size: 24px;
    line-height: 1.4;
  }
  .post-care-service .care-video-container {
    margin: 0;
  }
  .post-care-service .care-video-play {
    width: 640px;
    height: 420px;
  }
  .post-care-service .care-video-play::after {
    width: 64px;
    height: 64px;
  }
  .post-care-service .care-video-media {
    display: flex;
    flex: 0 0 auto;
    width: 640px;
    height: auto;
    border-radius: 16px;
  }
  .post-care-service .care-video-media video {
    max-width: 100%;
    height: 420px;
  }
  .post-care-service .care-video-btn,
  .post-care-service .care-sound-btn {
    width: 36px;
    height: 36px;
  }
  .post-care-service .video-cap-section {
    margin-top: 24px;
    padding: 20px 24px;
    background: #fff;
    border-radius: 24px;
  }
  .post-care-service .video-cap-section .rectangle {
    max-height: 80px;
  }
  .care-tabs-solution {
    display: grid;
    grid-template-columns: 1fr 520px;
    grid-template-areas: "panel tablist";
  }
  .care-tabs-nav {
    grid-area: tablist;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
    max-width: 520px;
    padding: 24px 64px;
    background-color: #e6e1d6;
    border-radius: 0 24px 24px 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1380px) {
  .care-tabs-nav {
    padding: 24px 20px;
  }
}
@media screen and (min-width: 768px) {
  .care-tabs-list {
    display: flex;
    flex-direction: column;
  }
  .care-tabs-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    padding: 24px 20px 24px 0;
    font-weight: 500;
    font-size: 20px;
    line-height: 1;
    text-align: left;
    line-height: 1.4;
    word-break: keep-all;
    border-bottom: 1px solid #cbc8c2;
    transition: all 0.15s ease-in-out;
  }
  .care-tabs-btn::before {
    content: "";
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background-image: url("/kr/Caresolution/images/icons/icon-arrow-lr-24.svg");
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: opacity 0.15s ease-in-out;
  }
  .care-tabs-btn[aria-selected=true] {
    font-weight: 700;
  }
  .care-tabs-btn[aria-selected=true]::before {
    opacity: 1;
  }
  .care-tabs-btn:last-child {
    border-bottom: none;
  }
  .care-tabs-panels {
    grid-area: panel;
    z-index: 1;
  }
  .care-tabs-panel {
    display: none;
    flex-direction: column;
    height: 100%;
    padding: 64px;
    gap: 36px;
    background-color: #000;
    border-radius: 24px 0 0 24px;
  }
  .care-tabs-panel[aria-hidden=false] {
    display: flex;
  }
  .care-tabs-panel:focus-visible {
    outline: 2px dashed #000;
    outline-offset: 1px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1380px) {
  .care-tabs-panel {
    padding: 48px;
    gap: 24px;
  }
}
@media screen and (min-width: 768px) {
  .panel-header {
    display: flex;
    align-items: flex-start;
    gap: 48px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1380px) {
  .panel-header {
    flex-direction: column;
    gap: 24px;
  }
}
@media screen and (min-width: 768px) {
  .panel-heading {
    flex: 0 0 auto;
    width: 232px;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    color: #fff;
  }
  .panel-desc {
    flex: 1;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #fff;
    word-break: keep-all;
  }
  .panel-content {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }
  .panel-image {
    overflow: hidden;
    width: 100%;
    height: auto;
    border-radius: 16px;
  }
  .panel-image img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
  }
  .panel-notes {
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    max-height: 96px;
    padding-right: 40px;
  }
  .panel-notes::-webkit-scrollbar {
    width: 4px;
  }
  .panel-notes::-webkit-scrollbar-track {
    background: #4a4946;
    border-radius: 2px;
  }
  .panel-notes::-webkit-scrollbar-thumb {
    border-radius: 2px;
    border: 2px solid #cbc8c2;
  }
  .panel-notes li {
    position: relative;
    padding-left: 16px;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: #ccc;
    word-break: keep-all;
  }
  .panel-notes li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 2px;
    width: 4px;
    height: 4px;
    background-color: #ccc;
    border-radius: 50%;
  }
  .post-faq {
    max-width: 100%;
    background-color: #f0ece4;
  }
  .post-faq .qa-swiper {
    overflow: hidden;
  }
  .post-faq .qa-swiper .swiper-wrapper {
    align-items: stretch;
    gap: 24px;
  }
  .post-faq .qa-slide {
    display: flex;
    flex: 1;
    height: auto;
  }
  .post-faq .qa-card {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 16px;
    min-height: 100%;
  }
  .post-faq .mute-toggle-btn,
  .post-faq .qa-play-btn {
    width: 36px;
    height: 36px;
  }
  .post-faq .qa-card-body,
  .post-faq .qa-card-content {
    flex: 0 0 auto;
  }
  .post-faq .qa-card-title {
    min-height: 44px;
    font-size: 16px;
    line-height: 22px;
  }
  .post-faq .qa-label {
    font-size: 16px;
    line-height: 22px;
  }
  .post-faq .qa-text {
    overflow-y: auto;
    height: 66px;
  }
  .post-faq .qa-text::-webkit-scrollbar {
    width: 4px;
  }
  .post-faq .qa-text::-webkit-scrollbar-track {
    background: #cbc8c2;
    border-radius: 2px;
  }
  .post-faq .qa-text::-webkit-scrollbar-thumb {
    border-radius: 2px;
    border: 2px solid #4a4946;
  }
  .post-faq .qa-text {
    font-size: 16px;
    line-height: 22px;
  }
  .post-faq .ai-cta {
    margin-top: 120px;
  }
  .post-faq .ai-cta .ai-cta-container {
    gap: 36px;
  }
  .post-faq .ai-cta .ai-cta-title {
    font-size: 48px;
    line-height: 1.5;
    text-align: center;
  }
  .post-faq .ai-cta .ai-cta-btn {
    min-height: 200px;
    background-image: url("/kr/Caresolution/images/common/bg-lg-ai-subscription-pc.gif");
    background-size: cover;
  }
  .post-bottom-banner .banner-link {
    align-items: center;
    justify-content: center;
    gap: 48px;
    min-height: 200px;
  }
  .post-bottom-banner .banner-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 0 0 auto;
  }
  .post-bottom-banner .banner-title {
    font-size: 36px;
  }
  .post-bottom-banner .banner-text {
    font-size: 24px;
  }
  .post-bottom-banner .banner-image {
    flex: 0 0 168px;
  }
}
@media screen and (max-width: 1024px) {
  .care-tabs-solution {
    grid-template-columns: auto;
  }
  .care-tabs-solution .panel-header {
    flex-direction: column;
  }
  .care-tabs-solution .panel-image {
    height: auto;
  }
  .post-care-service .care-video-section {
    flex-direction: column;
  }
}