@charset "utf-8";

:root {
  --site-width: 1200px;
  --gutter: 24px;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
  --primary: #1f73e8;
  --primary-dark: #0f5fc7;
  --primary-soft: #edf5ff;
  --orange: #d97706;
  --orange-soft: #fff5e8;
  --text: #15191f;
  --text-sub: #5f6874;
  --line: #e4e8ee;
  --surface: #f6f7f9;
  --surface-blue: #f2f7fd;
  --white: #fff;
  --danger: #e5484d;
  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow-card: 0 18px 46px rgba(27, 45, 68, .08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  word-break: keep-all;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
label,
select {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

ul,
ol,
p,
h1,
h2,
h3,
fieldset {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

fieldset {
  min-width: 0;
  border: 0;
}


.visually_hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site_shell {
  width: calc(100% - (var(--gutter) * 2));
  max-width: var(--site-width);
  margin-right: auto;
  margin-left: auto;
}

/* Header */
.site_header {
  border-bottom: 1px solid #edf0f3;
  background: rgba(255, 255, 255, .96);
}

.site_header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 90px;
}

.site_brand,
.footer_brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.05;
}

.site_brand__eyebrow,
.footer_brand__eyebrow {
  color: #555f69;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: -.02em;
}

.site_brand__name,
.footer_brand__name {
  color: #22272e;
  font-size: 29px;
  font-weight: 800;
  letter-spacing: -.055em;
}

.site_brand__name span,
.footer_brand__name span {
  color: var(--primary);
}

.header_right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  margin-left: auto;
  align-self: flex-start;
  padding-top: 16px;
}

.site-nav {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 7px;
  border: 0;
  background: transparent;
  align-items: center;
  justify-content: center;
}

.nav-toggle-img {
  display: block;
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.nav-backdrop,
.nav-list__head {
  display: none;
}

.nav-list-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 1.8vw, 28px);
}

.nav-item {
  flex: 0 0 auto;
}

.nav-item--mobile-only {
  display: none;
}

.nav-item a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 28px;
  color: #29313a;
  font-size: 16px;
  letter-spacing: -.035em;
  white-space: nowrap;
  transition: color .2s ease;
}

.nav-item a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
  content: "";
}

.nav-item a:hover {
  color: var(--primary-dark);
}

.nav-item a:hover::after,
.nav-item a:focus-visible::after {
  transform: scaleX(1);
}

/* Main */
.site_main {
  overflow: hidden;
}

/* Hero */
.quote_hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: calc(100% - (var(--gutter) * 2));
  max-width: var(--site-width);
  margin: 12px auto 0;
  padding: 10px 0 12px;
  border-radius: var(--radius-lg);
  background: #eef3f8;
}

.quote_hero::before {
  position: absolute;
  inset: -18px;
  z-index: -2;
  background:
    url("https://cancerok.speedgabia.com/site/img/bg/herobg_autoinsu.jpg")
    center center / cover no-repeat;
  filter: blur(7px);
  transform: scale(1.05);
  opacity: .68;
  content: "";
}

.quote_hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(246, 249, 252, .90) 0%,
      rgba(246, 249, 252, .78) 43%,
      rgba(246, 249, 252, .66) 100%
    );
  content: "";
}

.quote_hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 48px;
  align-items: center;
  width: 100%;
  max-width: none;
  padding-right: 28px;
  padding-left: 28px;
}

.quote_hero__eyebrow,
.section_heading__eyebrow,
.quote_card__eyebrow {
  margin-bottom: 4px;
  color: var(--primary);
  font-size: 20px;
  font-weight: 600;
}

.quote_hero__title {
  color: #12171d;
  font-size: clamp(40px, 3.8vw, 50px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.055em;
}

.quote_hero__title span {
  color: var(--primary);
}

.quote_hero__intro {
  position: relative;

  padding-right: 210px;
  text-align: left;
}

.quote_hero__description {
  max-width: 520px;
  margin: 12px 0 0;
  color: var(--text-sub);
  font-size: 20px;
  line-height: 1.75;
}

.quote_hero__car {
  position: absolute;
  top: 70%;
  right: 45px;
  z-index: 2;
  display: block;
  width: 300px;
  max-width: none;
  height: auto;
  object-fit: contain;
  transform: translateY(-40%) scaleX(-1);
  filter: drop-shadow(0 16px 20px rgba(23, 40, 58, .14));
  pointer-events: none;
  user-select: none;
}


/* Quote card */
.quote_card {
  padding: 18px 20px 16px;
  border: 1px solid #dde2e8;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
}


.quote_card__title {
  color: #11161c;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.04em;
}

.quote_card__description {
  margin-top: 4px;
  color: var(--text-sub);
  font-size: 14px;
}

.quote_form {
  padding-top: 8px;
}

.quote_form__field {
  display: block;
  margin-top: 8px;
}

.quote_form__field--name {
  margin-top: 0;
}


.quote_form__label,
.modal_field > span,
.modal_field legend {
  display: block;
  margin-bottom: 7px;
  color: #323943;
  font-size: 14px;
  font-weight: 750;
}

.quote_form__control,
.modal_control {
  width: 100%;
  min-width: 0;
  height: 34px;
  padding: 0 10px;
  border: 1px solid #d6dce3;
  border-radius: 8px;
  background: #fff;
  color: #222933;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
  font-size: 16px;
}

.quote_form__control:focus,
.modal_control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(31, 115, 232, .11);
}

.quote_form__phone {
  display: grid;
  grid-template-columns: 72px 1fr 1fr;
  gap: 5px;
}

.quote_form__vehicle {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 62px 62px;
  gap: 5px;
  align-items: stretch;
  margin-top: 0;
}

.modal_vehicle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}

.choice_button {
  display: block;
  cursor: pointer;
}

.choice_button input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.choice_button span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid #d7dde4;
  border-radius: 8px;
  background: #f8f9fb;
  color: #4c5662;
  font-size:15px;
  font-weight: 750;
  cursor: pointer;
  transition: .2s ease;
}

.choice_button input:checked + span {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
  box-shadow: 0 7px 16px rgba(31, 115, 232, .18);
}

.quote_form__consent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-top: 7px;
}

.consent_check {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #515b66;
  font-size:14px;
}

.consent_check input {
  width: 15px;
  height: 15px;
  accent-color: var(--primary);
}

.consent_check em {
  color: var(--danger);
  font-style: normal;
}

.consent_more {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--primary-dark);
  font-size:14px;
  font-weight: 750;
  text-decoration: underline;
}

.quote_form__notice {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px;
  margin-top: 6px;
  color: #68727d;
  font-size:14px;
  line-height: 1.35;
  letter-spacing: -1.6px;
}

.quote_form__notice strong {
  color: var(--danger);
}

.quote_form__submit,
.quote_modal__submit {
  width: 100%;
  min-height: 42px;
  margin-top: 8px;
  border: 0;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  box-shadow: 0 10px 22px rgba(31, 115, 232, .22);
  transition: background .2s ease, transform .2s ease;
}

.quote_form__submit:hover,
.quote_modal__submit:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.quote_form__callback {
  margin-top: 4px;
  color: #8a929b;
  text-align: center;
  font-size:14px;
  line-height: 1.4;
}

.quote_form__tm {
  flex: 0 0 auto;
  margin-top: 0;
  margin-left: auto;
  color: var(--primary);
  text-align: right;
  font-size:14px;
  white-space: nowrap;
}

/* Shared headings */
.section_heading {
  margin-bottom: 28px;

}

.section_heading--left {
  text-align: left;
}

.section_heading__title {
  color: #151a20;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -.045em;
}

/* Discounts */
.discount_section {
  padding: 32px 0;
  background: #fff;
}

.discount_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.discount_card {
  min-height: 176px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 18px;
  border: 1px solid #edf0f4;
  border-radius: var(--radius-md);
  background: var(--surface);
  text-align: center;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.discount_card:hover {
  transform: translateY(-3px);
  border-color: #c7d9f3;
  background: #f7fbff;
  box-shadow: 0 12px 26px rgba(31, 115, 232, .08);
}

.discount_card__icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.discount_card__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.discount_card strong {
  color: #191f26;
  font-size: 22px;
  font-weight: 800;
}

.discount_card p {
  margin-top: 6px;
  color: #626c77;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
}

.discount_section__note {
  margin-top: 14px;
  color: #8b939c;
  text-align: right;
  font-size: 14px;
}

/* Notices */
.notice_section {
  padding: 8px 0 24px;
  background: #fff;
}

.notice_list {
  display: grid;
  gap: 14px;
}

.notice_card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 22px 24px;
  border: 1px solid #dfe3e8;
  border-radius: var(--radius-md);
  background: #f8f9fa;
}

.notice_card__icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.notice_card__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.notice_card h3 {
  color: #222830;
  font-size: 18px;
  font-weight: 700;
}

.notice_card p {
  margin-top: 5px;
  color: #5f6872;
  font-size: 16px;
  line-height: 1.75;
}

/* News */
.news_section {
  padding: 60px 0 70px;
  background: #fff;
}

.news_section__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #dce1e7;
}

.news_section__heading h2 {
    color: #151a20;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -.045em;
}

.news_section__more {
  color: #65707b;
  font-size: 14px;
  font-weight: 700;
}

.news_list {
  border-bottom: 1px solid #e4e8ec;
}

.news_item {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 0 6px;
  border-bottom: 1px solid #edf0f3;
}

.news_item:last-child {
  border-bottom: 0;
}

.news_item:hover .news_item__title {
  color: var(--primary-dark);
  cursor: pointer;
}


.news_item__title {
  min-width: 0;
  overflow: hidden;
  color: #333b45;
  font-size: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news_item--empty {
  color: #8a929b;
}

/* Family sites */
.family_sites {
  padding: 30px 0;
  border-top: 1px solid #edf0f3;
  background: #fafbfc;
}

.family_sites__title {
  margin-bottom: 12px;
  color: #5a646f;
  font-size: 18px;
}

.family_sites__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.family_sites__links a {
  color: #69737e;
  font-size: 16px;
}

.family_sites__links a:hover {
  color: var(--primary-dark);
}

/* Footer */
.site_footer {
  padding: 30px 0 36px;
  border-top: 1px solid #edf0f3;
  background: #fff;
}

.site_footer__inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 34px;
  align-items: start;
}

.footer_brand {
  width: max-content;
  max-width: 100%;
}

/* Footer logo color */
.footer_brand__eyebrow,
.footer_brand__name,
.footer_brand__name span {
  color: #7a828b;
}

.site_footer__company {
  color: #7a828b;
  font-size: 15px;
  line-height: 1.75;
}

.site_footer__company p + p {
  margin-top: 2px;
}

.site_footer__copyright {
  margin-top: 5px !important;
}

/* Modal */
.fog,
.fog3 {
  position: absolute;
  z-index: 1000;
  background: #101318;
  opacity: 0;
}

.quote_modal,
.bohum_view_layer {
  position: absolute;
  z-index: 1001;
  display: none;
}

.quote_modal {
  width: min(440px, calc(100vw - 28px));
}

.quote_modal__panel {
  padding: 28px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .23);
}

.quote_modal__close,
.bohum_view_layer__close {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #15191f;
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

.quote_modal__close {
  top: -12px;
  right: -12px;
}

.quote_modal__header p {
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
}

.quote_modal__header h2 {
  margin-top: 5px;
  font-size: 24px;
  letter-spacing: -.04em;
}

.quote_modal__form {
  margin-top: 20px;
}

.modal_field {
  display: block;
  margin-top: 13px;
}

.modal_field:first-of-type {
  margin-top: 0;
}

.modal_phone {
  display: grid;
  grid-template-columns: 82px 1fr 1fr;
  gap: 7px;
}

.bohum_view_layer {
  width: min(760px, calc(100vw - 30px));
  padding: 45px 18px 18px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .22);
}

.bohum_view_layer__close {
  top: 7px;
  right: 9px;
}

.bohum_view_layer iframe {
  width: 100%;
  height: min(760px, 80vh);
  border: 0;
}

.hidden_frame {
  position: absolute;
  width: 0;
  height: 0;
  border: 0;
  visibility: hidden;
}

/* Responsive */
/* Desktop/Tablet hero layout */
@media (max-width: 1100px) {
  .quote_hero {
    padding: 8px 0 10px;
  }

  .quote_hero__intro {
    min-height: 300px;
    padding-right: 190px;
  }

  .quote_hero__car {
    width: 185px;
  }

  .quote_hero__grid {
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 36px;
  }

  .quote_card {
    width: 100%;
    max-width: none;
  }

  .discount_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Hero stacks only on small tablets/mobile */
@media (max-width: 820px) {
  .quote_hero {
    padding: 14px 0 16px;
  }

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

  .quote_hero__intro {
    max-width: 700px;
    min-height: 0;
    padding-right: 0;
  }

  .quote_hero__car {
    display: none;
  }

  .quote_card {
    max-width: 620px;
  }
}

@media (max-width: 700px) {
  :root {
    --gutter: 16px;
  }

  body {
    font-size: 16px;
  }

  .quote_hero {
    margin-top: 10px;
    padding: 12px 0 14px;
    border-radius: var(--radius-md);
  }

  .quote_hero__title {
    font-size: 37px;
  }

  .quote_hero__description {
    margin-top: 15px;
    font-size: 16px;
  }


  .quote_card {
    padding: 16px 14px;
    border-radius: 14px;
  }

  .quote_card__title {
    font-size: 24px;
  }

  .quote_form__phone {
    grid-template-columns: 76px 1fr 1fr;
    gap: 6px;
  }

  .quote_form__consent {
    align-items: flex-start;
  }

  .section_heading__title {
    font-size: 25px;
  }

  .discount_section,
  .notice_section,
  .news_section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .discount_grid {
    gap: 10px;
  }

  .discount_card {
    min-height: 162px;
    padding: 18px 10px;
  }

  .discount_card p {
    font-size: 14px;
  }

  .notice_card {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    padding: 18px 15px;
  }

  .notice_card p {
    font-size: 14px;
  }

  .site_footer__inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 430px) {


  .quote_card__header {
    padding-bottom: 18px;
  }

  .quote_form__field {
    margin-top: 6px;
  }

  .quote_form__label {
    font-size: 14px;
  }

  .quote_form__control {
    height: 40px;
  }

  .quote_form__phone {
    grid-template-columns: 72px 1fr 1fr;
  }

  .discount_grid {
    grid-template-columns: 1fr 1fr;
  }

  .discount_card {
    min-height: 154px;
  }

  .news_item {
    grid-template-columns: minmax(0, 1fr);
  }

  .family_sites__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
  }

  .modal_phone {
    grid-template-columns: 72px 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .quote_hero::before {
    filter: blur(6px);
    opacity: .58;
  }

  .quote_hero::after {
    background: rgba(246, 249, 252, .82);
  }
}

@media (max-width: 700px) {
  .quote_hero::before {
    inset: -14px;
    filter: blur(5px);
    transform: scale(1.06);
    opacity: .52;
  }

  .quote_hero::after {
    background: rgba(246, 249, 252, .88);
  }
}


/* =========================================================
   Mobile responsive / font tuning
   - Desktop styles remain unchanged
   - Even-number font sizes
========================================================= */

/* Small tablet */
@media (max-width: 820px) {
  .site_header {
    position: relative;
    z-index: 1200;
  }

  .site_header__inner {
    min-height: 76px;
  }

  .header_right {
    flex: 0 0 auto;
    align-self: center;
    padding-top: 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1298;
    display: block;
    background: rgba(13, 23, 34, .46);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
  }

  .nav-list {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1299;
    width: min(360px, 86vw);
    height: 100dvh;
    padding: 0 22px 28px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #fff;
    box-shadow: -18px 0 50px rgba(18, 44, 72, .18);
    transform: translateX(102%);
    visibility: hidden;
    transition: transform .28s ease, visibility .28s ease;
  }

  .nav-list__head {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    border-bottom: 1px solid #e6ebf0;
    background: #fff;
  }

  .nav-list__title {
    color: #1c2630;
    font-size: 20px;
    font-weight: 800;
  }

  .nav-close {
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #f2f5f8;
    color: #27313b;
    font-size: 22px;
    line-height: 1;
  }

  .nav-list-inner {
    display: block;
    padding-top: 10px;
  }

  .nav-item {
    border-bottom: 1px solid #edf0f3;
  }

  .nav-item--mobile-only {
    display: block;
  }

  .nav-item a {
    min-height: 54px;
    padding: 0 4px;
    color: #303943;
    font-size: 16px;
    white-space: normal;
  }

  .nav-item a::after {
    display: none;
  }

  .site-nav.is-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
  }

  .site-nav.is-open .nav-list {
    transform: translateX(0);
    visibility: visible;
  }

  body.nav-open {
    overflow: hidden;
  }

  .site_brand__eyebrow,
  .footer_brand__eyebrow {
    font-size: 12px;
  }

  .site_brand__name,
  .footer_brand__name {
    font-size: 26px;
  }

  .quote_hero {
    padding: 14px 0 16px;
  }

  .quote_hero__grid {
    gap: 14px;
  }

  .quote_hero__intro {
    max-width: none;
  }

  .quote_hero__eyebrow,
  .section_heading__eyebrow,
  .quote_card__eyebrow {
    font-size: 16px;
  }

  .quote_hero__title {
    font-size: 36px;
    line-height: 1.12;
  }

  .quote_hero__description {
    max-width: none;
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.7;
  }


  .quote_card {
    width: 100%;
    max-width: none;
    padding: 18px 20px 16px;
  }

  .quote_card__title {
    font-size: 24px;
  }

  .quote_form {
    padding-top: 18px;
  }

  .section_heading {
    margin-bottom: 24px;
  }

  .section_heading__title,
  .news_section__heading h2 {
    font-size: 28px;
  }

  .discount_card strong {
    font-size: 20px;
  }

  .discount_card p {
    font-size: 16px;
  }

  .notice_card h3 {
    font-size: 18px;
  }

  .notice_card p {
    font-size: 16px;
  }

  .news_item__title {
    font-size: 16px;
  }
}

/* General mobile */
@media (max-width: 700px) {

  .quote_hero__description{
    display:none !important;
  }

  :root {
    --gutter: 16px;
  }

  .quote_hero__intro {
    position: relative;
    padding: 0;
    text-align: left;
  }

  .quote_hero__eyebrow {
    position: relative;
    z-index: 3;
    max-width: 58%;
  }

  .quote_hero__title {
    position: relative;
    z-index: 3;
    width: 58%;
    max-width: 58%;
  }

  .quote_hero__car {
    display: block;
    position: absolute;
    top: 44%;
    right: -4px;
    left: auto;
    bottom: auto;
    z-index: 2;
    transform: scaleX(-1);
    width: 50%;
    max-width: 250px;
    height: auto;
    margin: 0;
    object-fit: contain;
    filter: drop-shadow(0 12px 16px rgba(23, 40, 58, .13));
  }

  .quote_hero__description {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: none;
    margin: 24px 0 0;
    padding-top: 12px;
  }

  body {
    font-size: 16px;
  }

  .site_header__inner {
    min-height: 68px;
  }

  .site_brand__eyebrow,
  .footer_brand__eyebrow {
    font-size: 10px;
  }

  .site_brand__name,
  .footer_brand__name {
    font-size: 24px;
  }

  .quote_hero {
    padding: 12px 0 14px;
  }

  .quote_hero__grid {
    gap: 12px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .quote_hero__eyebrow,
  .section_heading__eyebrow,
  .quote_card__eyebrow {
    font-size: 16px;
  }

  .quote_hero__title {
    font-size: 32px;
    line-height: 1.14;
    letter-spacing: -.05em;
  }

  .quote_hero__description {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.65;
  }


  .quote_card {
    width: calc(100% + 24px);
    max-width: none;
    margin-left: -12px;
    padding: 18px 14px 16px;
    border-radius: 14px;
  }

  .quote_card__header {
    padding-bottom: 10px;
    border-bottom: 1px solid #e9edf2;
  }

  .quote_card__title {
    font-size: 22px;
    line-height: 1.3;
  }

  .quote_form {
    padding-top: 10px;
  }

  .quote_form__field {
    margin-top: 8px;
  }

  .quote_form__label,
  .modal_field > span,
  .modal_field legend {
    margin-bottom: 6px;
    font-size: 14px;
  }

  .quote_form__control,
  .modal_control {
    height: 40px;
    padding: 0 10px;
    font-size: 15px;
  }

  .quote_form__phone {
    grid-template-columns: 72px minmax(0, 1fr) minmax(0, 1fr);
    gap: 5px;
  }

  .quote_form__vehicle,
  .modal_vehicle {
    gap: 6px;
  }

  .choice_button span {
    min-height: 40px;
    font-size:14px;
  }

  .quote_form__consent {
    align-items: center;
    gap: 6px;
    margin-top: 9px;
  }

  .consent_check,
  .consent_more,
  .quote_form__notice {
    font-size: 12px;
  }

  .quote_form__submit,
  .quote_modal__submit {
    min-height: 48px;
    margin-top: 10px;
    font-size: 18px;
  }

  .quote_form__callback {
    margin-top: 6px;
    font-size:14px;
    line-height: 1.45;
  }

  .quote_form__tm {
    font-size:14px;
  }

  .section_heading {
    margin-bottom: 22px;
  }

  .section_heading__title,
  .news_section__heading h2 {
    font-size: 26px;
  }

  .discount_section,
  .notice_section,
  .news_section {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .discount_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .discount_card {
    min-height: 154px;
    padding: 16px 10px;
  }

  .discount_card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
  }

  .discount_card strong {
    font-size: 18px;
  }

  .discount_card p {
    margin-top: 4px;
    font-size: 14px;
    line-height: 1.5;
  }

  .discount_section__note {
    font-size: 12px;
    line-height: 1.6;
  }

  .notice_list {
    gap: 10px;
  }

  .notice_card {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 10px;
    padding: 16px 14px;
  }

  .notice_card__icon {
    width: 30px;
    height: 30px;
  }

  .notice_card h3 {
    font-size: 16px;
  }

  .notice_card p {
    margin-top: 4px;
    font-size: 14px;
    line-height: 1.65;
  }

  .news_section__heading {
    gap: 12px;
    padding-bottom: 12px;
  }

  .news_section__more {
    font-size: 12px;
  }

  .news_item {
    min-height: 52px;
    padding: 0 2px;
  }

  .news_item__title {
    font-size: 16px;
  }

  .family_sites {
    padding: 24px 0;
  }

  .family_sites__title {
    font-size: 14px;
  }

  .family_sites__links {
    gap: 8px 14px;
  }

  .family_sites__links a {
    font-size: 12px;
  }

  .site_footer {
    padding: 26px 0 30px;
  }

  .site_footer__inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer_brand strong {
    font-size: 20px;
  }

  .site_footer__company {
    font-size: 12px;
    line-height: 1.7;
  }
}

/* Small mobile */
@media (max-width: 430px) {
  .site_brand__name,
  .footer_brand__name {
    font-size: 22px;
  }

  .quote_hero__grid {
    padding-right: 12px;
    padding-left: 12px;
  }

  .quote_hero__eyebrow {
    max-width: 56%;
  }

  .quote_hero__title {
    width: 56%;
    max-width: 56%;
  }

  .quote_hero__car {
    top: 44%;
    right: -6px;
    width: 50%;
    max-width: 200px;
  }

  .quote_hero__description {
    margin-top: 20px;
    padding-top: 8px;
  }

  .quote_hero {
    margin-top: 8px;
    padding: 10px 0 12px;
  }

  .quote_hero__title {
    font-size: 28px;
    line-height: 1.16;
  }

  .quote_hero__description {
    font-size: 16px;
  }

  .quote_card {
    padding: 18px 14px 16px;
  }

  .quote_card__title {
    font-size: 22px;
  }

  .quote_form__phone,
  .modal_phone {
    grid-template-columns: 72px minmax(0, 1fr) minmax(0, 1fr);
  }

  .quote_form__consent {
    align-items: flex-start;
  }

  .section_heading__title,
  .news_section__heading h2 {
    font-size: 24px;
  }

  .discount_card {
    min-height: 146px;
    padding: 14px 8px;
  }

  .discount_card__icon {
    width: 44px;
    height: 44px;
  }

  .discount_card strong {
    font-size: 16px;
  }

  .discount_card p {
    font-size: 14px;
  }

  .family_sites__links {
    grid-template-columns: 1fr 1fr;
  }
}

/* Extra small mobile */
@media (max-width: 360px) {
  :root {
    --gutter: 14px;
  }

  .quote_hero__intro {

  }

  .quote_hero__title {
    width: 55%;
    max-width: 55%;
  }

  .quote_hero__car {
    top: 28px;
    right: -12px;
    width: 47%;
    max-width: 190px;
  }

  .quote_hero__title {
    font-size: 27px;
  }


  .quote_card {
    padding: 18px 14px;
  }

  .quote_form__phone,
  .modal_phone {
    grid-template-columns: 68px minmax(0, 1fr) minmax(0, 1fr);
    gap: 5px;
  }

  .discount_grid {
    grid-template-columns: 1fr;
  }

  .discount_card {
    min-height: 136px;
  }
}

/* Vehicle row compact responsive */
@media (max-width: 700px) {
  .quote_form__vehicle {
    grid-template-columns: minmax(0, 1fr) 58px 58px;
    gap: 5px;
  }

  .quote_form__vehicle .choice_button span {
    min-height: 40px;
    padding: 0 5px;
    font-size: 14px;
    white-space: nowrap;
  }
}

@media (max-width: 430px) {
  .quote_form__vehicle {
    grid-template-columns: minmax(0, 1fr) 58px 58px;
    gap: 5px;
  }

  .quote_form__vehicle .quote_form__control {
    padding-right: 10px;
    padding-left: 10px;
  }

  .quote_form__vehicle .choice_button span {
    padding: 0 4px;
    font-size:14px;
  }
}

@media (max-width: 360px) {
  .quote_form__vehicle {
    grid-template-columns: minmax(0, 1fr) 56px 56px;
  }
}

/* =========================================================
   SHOWCASE 콘텐츠 가이드
   - style_dtcar_insu 기준
   - style_autoinsu 변수명에 맞춰 적용
========================================================= */

#showcase,
.autoinsu-guide-section,
.sweet-guide-section{
  clear:both;
  width:100%;
  padding:12px 0 24px;
  background:#fff;
}

#showcase .container{
  width:calc(100% - (var(--gutter) * 2));
  max-width:var(--site-width);
  margin:0 auto;
  padding:0;
}

#showcase .section-head{
  width:100%;
  margin:28px 0;
  padding:0;
  text-align:left;
}

#showcase .section-head.section-head--sub{
  padding-top:clamp(34px, 5vw, 56px);
}

#showcase .section-head h2{
  margin:0;
  color:#111;
  font-family:"Nanum Square","Noto Sans KR","Malgun Gothic",sans-serif;
  font-size:36px;
  font-weight:800;
  line-height:1.35;
  letter-spacing:-1.2px;
}

#showcase .media-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
  width:100%;
  margin:0 auto;
  padding:0;
}

#showcase .media-link{
  display:block;
  width:100%;
  color:inherit;
  text-decoration:none;
}

#showcase .media{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  width:100%;
  height:270px;
  margin:0;
  padding:26px 20px 22px;
  border:1px solid #d8d8d8;
  border-radius:12px;
  background:#fff;
  box-shadow:0 10px 24px rgba(21,69,148,.08);
  overflow:hidden;
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
}

#showcase .media-link:focus-visible{
  outline:none;
}

#showcase .media-link:focus-visible .media{
  border-color:var(--primary);
  box-shadow:0 0 0 3px rgba(31,115,232,.20);
}

@media (hover:hover) and (pointer:fine){
  #showcase .media:hover{
    transform:translateY(-2px);
    border-color:var(--primary);
    box-shadow:0 12px 18px rgba(0,0,0,.08);
  }
}

@media (hover:none) and (pointer:coarse){
  #showcase .media:active{
    transform:translateY(-1px);
    border-color:var(--primary);
    box-shadow:0 8px 14px rgba(0,0,0,.07);
  }
}

#showcase .media img{
  display:block;
  width:68px;
  height:68px;
  max-width:68px;
  min-width:68px;
  margin:0 auto 18px;
  object-fit:contain;
}

#showcase .media figcaption{
  display:block;
  width:100%;
  margin:0;
  padding:0;
  overflow:hidden;
}

#showcase .media-title{
  display:-webkit-box;
  width:100%;
  max-height:65px;
  margin:0 0 10px;
  overflow:hidden;
  color:#222;
  font-family:"Nanum Square","Noto Sans KR","Malgun Gothic",sans-serif;
  font-size:20px;
  font-weight:800;
  line-height:1.35;
  letter-spacing:-.8px;
  text-align:left;
  text-overflow:ellipsis;
  word-break:keep-all;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
}

#showcase .media-desc{
  display:-webkit-box;
  width:100%;
  max-height:53px;
  margin:0;
  overflow:hidden;
  color:#586374;
  font-family:"Nanum Square","Noto Sans KR","Malgun Gothic",sans-serif;
  font-size:14px;
  font-weight:400;
  line-height:1.45;
  letter-spacing:-.3px;
  text-align:left;
  text-overflow:ellipsis;
  word-break:keep-all;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
}


/* =========================================================
   TABLET
========================================================= */
@media (max-width:1024px){

  #showcase{
    padding:24px 0 20px;
  }

  #showcase .section-head{
    margin-bottom:28px;
  }

  #showcase .section-head h2{
    font-size:28px;
  }

  #showcase .media-grid,
  #showcase .media-grid.grid--4{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
  }

  #showcase .media{
    height:270px;
    padding:26px 20px 24px;
  }

  #showcase .media img{
    margin-bottom:18px;
  }
}


/* =========================================================
   MOBILE
========================================================= */
@media (max-width:768px){

  #showcase{
    max-width:100%;
    overflow-x:hidden;
    padding:12px 0 24px;
  }

  #showcase .section-head{
    margin-bottom:22px;
  }

  #showcase .section-head h2{
    font-size:28px;
    line-height:1.35;
    letter-spacing:-.8px;
  }

  #showcase .media-grid{
    grid-template-columns:1fr;
    gap:12px;
  }

  #showcase .media-grid.grid--4{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  #showcase .media{
    min-width:0;
    height:230px;
    padding:22px 18px;
    border-radius:10px;
  }

  #showcase .media img{
    margin-bottom:14px;
  }
}


/* =========================================================
   MOBILE 480
========================================================= */
@media (max-width:480px){

  #showcase{
    padding:8px 0;
  }

  #showcase .section-head{
    margin-bottom:18px;
  }

  #showcase .media-grid{
    grid-template-columns:1fr;
    gap:10px;
  }

  #showcase .media-grid.grid--4{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  #showcase .media{
    height:220px;
    padding:20px 16px;
  }
}


/* =========================================================
   MOBILE 430
========================================================= */
@media (max-width:430px){

  #showcase .media-grid.grid--4{
    grid-template-columns:1fr;
  }
}

/* =========================================================
   AUTOINSU 서브페이지
========================================================= */

.auto_subpage{
  padding:42px 0 72px;
  background:#f6f8fb;
}

.auto_subpage__inner{
  width:calc(100% - (var(--gutter) * 2));
  max-width:var(--site-width);
  margin:0 auto;
}

/* 상단 타이틀 */
.auto_subpage__header{
  padding:48px 44px;
  border:1px solid #e1e7ee;
  border-radius:24px;
  background:
    linear-gradient(135deg,#f7fbff 0%,#edf5ff 100%);
  text-align:center;
  box-shadow:0 14px 36px rgba(27,45,68,.06);
}

.auto_subpage__eyebrow{
  margin:0 0 10px;
  color:var(--primary);
  font-size:16px;
  font-weight:800;
  letter-spacing:-.02em;
}

.auto_subpage__title{
  margin:0;
  color:#17212b;
  font-size:clamp(32px,4vw,46px);
  font-weight:800;
  line-height:1.2;
  letter-spacing:-.05em;
}

.auto_subpage__summary{
  max-width:760px;
  margin:16px auto 0;
  color:#52606d;
  font-size:17px;
  line-height:1.8;
}

/* 관련 특약 메뉴 */
.auto_subnav{
  margin-top:22px;
  padding:18px;
  border:1px solid #e2e7ed;
  border-radius:18px;
  background:#fff;
  box-shadow:0 10px 26px rgba(27,45,68,.05);
}

.auto_subnav__list{
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:8px;
}

.auto_subnav__link{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:8px 10px;
  border:1px solid #e0e5eb;
  border-radius:10px;
  background:#f8fafc;
  color:#4b5865;
  font-size:14px;
  font-weight:700;
  line-height:1.35;
  text-align:center;
  transition:.2s ease;
}

.auto_subnav__link:hover{
  border-color:#bdd4f3;
  background:#f3f8ff;
  color:var(--primary-dark);
}

.auto_subnav__link.is-active{
  border-color:var(--primary);
  background:var(--primary);
  color:#fff;
  box-shadow:0 8px 18px rgba(31,115,232,.18);
}

/* 본문 카드 */
.auto_subpage__article{
  margin-top:22px;
  padding:10px 40px 42px;
  border:1px solid #e1e7ed;
  border-radius:22px;
  background:#fff;
  box-shadow:0 14px 36px rgba(27,45,68,.06);
}

.auto_info_section{
  padding:34px 0;
  border-bottom:1px solid #e8edf2;
}

.auto_info_section:last-child{
  border-bottom:0;
}

.auto_info_section__title{
  margin:0 0 18px;
  padding-left:14px;
  border-left:4px solid var(--primary);
  color:#1b2733;
  font-size:24px;
  font-weight:800;
  line-height:1.35;
  letter-spacing:-.035em;
}

.auto_info_section__text{
  margin:0;
  color:#465360;
  font-size:17px;
  line-height:1.85;
}

.auto_info_list{
  display:grid;
  gap:10px;
}

.auto_info_list li{
  position:relative;
  padding:14px 18px 14px 42px;
  border:1px solid #e3e8ee;
  border-radius:11px;
  background:#f9fbfd;
  color:#45525f;
  font-size:16px;
  line-height:1.7;
}

.auto_info_list li::before{
  position:absolute;
  top:1.15em;
  left:18px;
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--primary);
  content:"";
}

.auto_tip_box{
  margin-top:16px;
  padding:17px 19px;
  border:1px solid #d9e7f8;
  border-radius:12px;
  background:var(--primary-soft);
  color:#34506d;
  font-size:15px;
  line-height:1.7;
}

/* 할인율 표 */
.auto_table_wrap{
  overflow-x:auto;
  border:1px solid #dce3ea;
  border-radius:12px;
  background:#fff;
  -webkit-overflow-scrolling:touch;
}

.auto_table{
  width:100%;
  min-width:520px;
  border-collapse:collapse;
  color:#35424f;
  font-size:15px;
}

.auto_table th,
.auto_table td{
  padding:16px 18px;
  border-bottom:1px solid #e4e9ee;
  text-align:center;
}

.auto_table thead th{
  background:#edf5ff;
  color:#263746;
  font-weight:800;
}

.auto_table tbody tr:last-child td{
  border-bottom:0;
}

.auto_table tbody tr:nth-child(even) td{
  background:#fbfcfe;
}

/* 절차 */
.auto_step_list{
  display:grid;
  gap:10px;
  counter-reset:auto-step;
}

.auto_step_list li{
  position:relative;
  min-height:58px;
  display:flex;
  align-items:center;
  padding:14px 18px 14px 66px;
  border:1px solid #e2e7ed;
  border-radius:11px;
  background:#fafbfd;
  color:#44515e;
  font-size:16px;
  line-height:1.65;
  counter-increment:auto-step;
}

.auto_step_list li::before{
  position:absolute;
  left:16px;
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:var(--primary);
  color:#fff;
  font-size:13px;
  font-weight:800;
  content:counter(auto-step);
}

/* 주의사항 */
.auto_notice{
  margin-top:22px;
  overflow:hidden;
  border:1px solid #e1e6ec;
  border-radius:18px;
  background:#fff;
  box-shadow:0 10px 26px rgba(27,45,68,.05);
}

.auto_notice__title{
  padding:20px 24px;
  border-bottom:1px solid #e7ebf0;
  color:#1e2832;
  font-size:21px;
  font-weight:800;
}

.auto_notice__title span{
  color:var(--danger);
}

.auto_notice__item{
  display:grid;
  grid-template-columns:54px minmax(0,1fr);
  gap:18px;
  padding:24px;
}

.auto_notice__item + .auto_notice__item{
  border-top:1px solid #edf0f3;
}

.auto_notice__icon img{
  display:block;
  width:48px;
  height:auto;
}

.auto_notice__heading{
  margin:0 0 6px;
  color:#2b3540;
  font-size:17px;
  font-weight:800;
  line-height:1.5;
}

.auto_notice__text{
  margin:0;
  color:#5a6570;
  font-size:15px;
  line-height:1.75;
}

/* 태블릿 */
@media (max-width:900px){
  .auto_subnav__list{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }

  .auto_subpage__header{
    padding:40px 28px;
  }

  .auto_subpage__article{
    padding-right:28px;
    padding-left:28px;
  }
}

/* 모바일 */
@media (max-width:700px){
  .auto_subpage{
    padding:24px 0 48px;
  }

  .auto_subpage__header{
    padding:30px 20px;
    border-radius:18px;
  }

  .auto_subpage__eyebrow{
    font-size:14px;
  }

  .auto_subpage__title{
    font-size:30px;
  }

  .auto_subpage__summary{
    margin-top:12px;
    font-size:15px;
    line-height:1.7;
  }

  .auto_subnav{
    margin-top:14px;
    padding:12px;
    border-radius:14px;
  }

  .auto_subnav__list{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:7px;
  }

  .auto_subnav__link{
    min-height:46px;
    padding:7px 8px;
    font-size:13px;
  }

  .auto_subpage__article{
    margin-top:14px;
    padding:4px 18px 28px;
    border-radius:16px;
  }

  .auto_info_section{
    padding:26px 0;
  }

  .auto_info_section__title{
    margin-bottom:15px;
    padding-left:11px;
    border-left-width:3px;
    font-size:21px;
  }

  .auto_info_section__text{
    font-size:15px;
    line-height:1.78;
  }

  .auto_info_list li{
    padding:13px 14px 13px 36px;
    font-size:14px;
  }

  .auto_info_list li::before{
    left:15px;
  }

  .auto_tip_box{
    padding:15px;
    font-size:14px;
  }

  .auto_table th,
  .auto_table td{
    padding:13px 14px;
  }

  .auto_step_list li{
    padding:13px 14px 13px 58px;
    font-size:14px;
  }

  .auto_step_list li::before{
    left:14px;
    width:32px;
    height:32px;
  }

  .auto_notice{
    margin-top:14px;
    border-radius:14px;
  }

  .auto_notice__title{
    padding:17px 18px;
    font-size:18px;
  }

  .auto_notice__item{
    grid-template-columns:40px minmax(0,1fr);
    gap:12px;
    padding:18px;
  }

  .auto_notice__icon img{
    width:38px;
  }

  .auto_notice__heading{
    font-size:15px;
  }

  .auto_notice__text{
    font-size:14px;
    line-height:1.7;
  }
}

@media (max-width:430px){
  .auto_subnav__list{
    grid-template-columns:1fr 1fr;
  }

  .auto_subpage__title{
    font-size:28px;
  }
}

/* 서브페이지 디자인 */
.dis_f.w1000{
  width:calc(100% - (var(--gutter) * 2));
  max-width:var(--site-width);
  margin:28px auto 0;
  padding:36px 38px 40px;
  border:1px solid #e1e7ee;
  border-radius:var(--radius-lg);
  background:#fff;
  box-shadow:var(--shadow-card);
}

.dis_f .dis_title{
  margin:0 0 8px;
  color:#151a20;
  font-size:30px;
  font-weight:800;
  line-height:1.3;
  letter-spacing:-.045em;
  text-align:left;
}

.dis_f .txt{
  margin:0 0 24px;
  color:var(--text-sub);
  font-size:16px;
  line-height:1.7;
  text-align:left;
}

.dis_f > ul{
  margin:14px 0 0;
  padding:20px 22px;
  border:1px solid #e3e8ee;
  border-radius:12px;
  background:#f9fbfd;
}

.dis_f > ul:first-of-type{
  margin-top:0;
}

.dis_f > ul > li{
  color:#465360;
  font-size:15px;
  line-height:1.75;
}

.dis_f > ul > li:first-child{
  margin-bottom:8px;
  color:var(--primary-dark);
  font-size:17px;
  font-weight:800;
}

.dis_f > ul > li + li{
  margin-top:4px;
}

.dis_f > ul > li:first-child::first-letter{
  color:var(--primary);
}

/* 할인율 표 */
.dis_f table,
.sub01_discount_table{
  width:100%;
  margin-top:10px;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border:1px solid #dce3ea;
  border-radius:10px;
  background:#fff;
  color:#35424f;
  font-size:14px;
}

.dis_f table th,
.dis_f table td,
.sub01_discount_table th,
.sub01_discount_table td{
  padding:13px 14px;
  border-right:1px solid #e4e9ee;
  border-bottom:1px solid #e4e9ee;
  text-align:center;
  vertical-align:middle;
}

.dis_f table th:last-child,
.dis_f table td:last-child,
.sub01_discount_table th:last-child,
.sub01_discount_table td:last-child{
  border-right:0;
}

.dis_f table thead th,
.sub01_discount_table thead th{
  background:var(--primary-soft);
  color:#263746;
  font-weight:800;
}

.dis_f table tbody tr:nth-child(even) td,
.sub01_discount_table tbody tr:nth-child(even) td{
  background:#fbfcfe;
}

.dis_f table tbody tr:last-child td,
.sub01_discount_table tbody tr:last-child td{
  border-bottom:0;
}

/* 가입 주의사항 */
.notice_box.w1000{
  width:calc(100% - (var(--gutter) * 2));
  max-width:var(--site-width);
  height:auto;
  margin:28px auto 56px;
  padding:28px 30px;
  border:1px solid #dfe3e8;
  border-radius:var(--radius-lg);
  background:#fff;
  box-shadow:var(--shadow-card);
}

.notice_box .notice_title{
  margin:0 0 14px;
  color:#151a20;
  font-size:28px;
  font-weight:800;
  line-height:1.35;
  letter-spacing:-.04em;
}

.notice_box .color_r{
  color:var(--danger);
}

.notice_box .n_box1,
.notice_box .n_box2{
  display:grid;
  grid-template-columns:42px minmax(0,1fr);
  gap:16px;
  align-items:start;
  padding:20px 0;
}

.notice_box .n_box2{
  border-top:1px solid #edf0f3;
}

.notice_box .n_icon{
  display:flex;
  align-items:flex-start;
  justify-content:center;
}

.notice_box .n_icon img{
  display:block;
  width:36px;
  height:auto;
}

.notice_box .n_con{
  min-width:0;
}

.notice_box .n_con_t{
  margin:0;
  color:#222830;
  font-size:17px;
  font-weight:800;
  line-height:1.55;
}

.notice_box .n_con_c{
  margin:6px 0 0;
  color:#5f6872;
  font-size:14px;
  line-height:1.75;
}

/* SUB01 tablet */
@media (max-width:900px){
  .discount_section .discount_grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .dis_f.w1000{
    padding:30px 28px 34px;
  }

  .notice_box.w1000{
    padding:24px 26px;
  }
}

/* SUB01 mobile */
@media (max-width:700px){
  .discount_section{
    padding:16px 0 14px;
  }

  .discount_section .section_heading{
    margin-bottom:20px;
  }

  .discount_section .section_heading__eyebrow{
    font-size:14px;
  }

  .discount_section .section_heading__title{
    font-size:25px;
  }

  .discount_section .discount_grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
  }

  .discount_section .discount_card{
    min-height:154px;
    padding:16px 10px;
  }

  .discount_section .discount_card__icon{
    width:46px;
    height:46px;
    margin-bottom:10px;
  }

  .discount_section .discount_card strong{
    font-size:17px;
  }

  .discount_section .discount_card p{
    font-size:13px;
  }

  .dis_f.w1000{
    margin-top:22px;
    padding:24px 18px 26px;
    border-radius:16px;
  }

  .dis_f .dis_title{
    font-size:24px;
  }

  .dis_f .txt{
    margin-bottom:18px;
    font-size:14px;
  }

  .dis_f > ul{
    padding:17px 15px;
  }

  .dis_f > ul > li{
    font-size:14px;
  }

  .dis_f > ul > li:first-child{
    font-size:16px;
  }

  .dis_f table,
  .sub01_discount_table{
    font-size:13px;
  }

  .dis_f table th,
  .dis_f table td,
  .sub01_discount_table th,
  .sub01_discount_table td{
    padding:11px 10px;
  }

  .notice_box.w1000{
    margin-top:22px;
    margin-bottom:40px;
    padding:22px 18px;
    border-radius:16px;
  }

  .notice_box .notice_title{
    font-size:23px;
  }

  .notice_box .n_box1,
  .notice_box .n_box2{
    grid-template-columns:34px minmax(0,1fr);
    gap:12px;
    padding:17px 0;
  }

  .notice_box .n_icon img{
    width:30px;
  }

  .notice_box .n_con_t{
    font-size:15px;
  }

  .notice_box .n_con_c{
    font-size:13px;
  }
}

@media (max-width:430px){
  .discount_section .discount_grid{
    grid-template-columns:1fr 1fr;
  }

  .discount_section .discount_card{
    min-height:146px;
  }
}