/* =========================================================================
   MyTripp Boost - 고도화 스타일 (안티그래비티 / 계산기 / FAQ / 연속성)
   ========================================================================= */

:root {
    --mtb-teal: #0f8b8d;
    --mtb-teal-dark: #0a6f72;
    --mtb-orange: #e85d2a;
    --mtb-ink: #183136;
    --mtb-soft: #f5f8f8;
}

/* ---------- 공통: 스크롤 리빌 (안티그래비티 진입) ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
    will-change: opacity, transform;
}
.reveal.is-in {
    opacity: 1;
    transform: none;
}
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .mtb-float, .mtb-code-card, .mtb-tilt { animation: none !important; }
}

/* ---------- 안티그래비티 부유 일러스트 ---------- */
@keyframes mtbFloat {
    0%   { transform: translateY(0) rotate(0); }
    50%  { transform: translateY(-18px) rotate(4deg); }
    100% { transform: translateY(0) rotate(0); }
}
@keyframes mtbFloatSlow {
    0%   { transform: translateY(0) rotate(0); }
    50%  { transform: translateY(-26px) rotate(-5deg); }
    100% { transform: translateY(0) rotate(0); }
}
.mtb-float-layer {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.mtb-float {
    position: absolute;
    font-size: clamp(1.8rem, 4vw, 3rem);
    opacity: .55;
    filter: drop-shadow(0 10px 18px rgba(15,139,141,.18));
    animation: mtbFloat 6s ease-in-out infinite;
}
.mtb-float--plane { top: 14%; left: 6%;  animation-duration: 7s; }
.mtb-float--coin  { top: 22%; right: 9%; animation: mtbFloatSlow 8s ease-in-out infinite; }
.mtb-float--pin   { bottom: 18%; left: 12%; animation-duration: 9s; }
.mtb-float--bag   { bottom: 12%; right: 7%; animation: mtbFloatSlow 7.5s ease-in-out infinite; }

/* ---------- 빠른 할인코드 밴드 ---------- */
.mtb-quick {
    position: relative;
    background: linear-gradient(160deg, #eafaf7 0%, #f5f8f8 55%, #fff 100%);
    overflow: hidden;
}
.mtb-quick .container { position: relative; z-index: 1; }
.mtb-quick-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 760px;
    margin: 0 auto;
}
.mtb-code-card {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    padding: 22px 26px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(15,139,141,.14);
    box-shadow: 0 16px 40px rgba(26,47,55,.10);
    text-decoration: none;
    color: var(--mtb-ink);
    transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s, border-color .3s;
    overflow: hidden;
}
.mtb-code-card::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -30%;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15,139,141,.16), transparent 70%);
    transition: transform .4s ease;
}
.mtb-code-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 60px rgba(15,139,141,.22);
    border-color: rgba(15,139,141,.4);
}
.mtb-code-card:hover::before { transform: scale(1.5); }
.mtb-code-card.is-primary {
    background: linear-gradient(150deg, var(--mtb-teal), var(--mtb-teal-dark));
    color: #fff;
    border-color: transparent;
}
.mtb-code-card.is-primary em,
.mtb-code-card.is-primary .mtb-code-go { color: rgba(255,255,255,.92); }
.mtb-code-icon { font-size: 2.4rem; line-height: 1; flex-shrink: 0; }
.mtb-code-body { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 0; }
.mtb-code-body strong { font-size: 1.12rem; font-weight: 800; line-height: 1.4; }
.mtb-code-body em { font-style: normal; font-size: .92rem; color: #5d7176; line-height: 1.6; }
.mtb-code-go {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    margin-left: auto;
    font-weight: 800;
    color: var(--mtb-orange);
}
.mtb-code-card.is-primary .mtb-code-go { color: #ffd9a8; }

/* ---------- 예상 절약액 계산기 ---------- */
.mtb-calc { background: #fff; }
.mtb-calc-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(26,47,55,.12);
    border: 1px solid rgba(15,139,141,.14);
}
.mtb-calc-form {
    padding: 34px;
    background: var(--mtb-soft);
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.mtb-calc-field { display: flex; flex-direction: column; gap: 8px; }
.mtb-calc-field span { font-weight: 800; color: #44595e; font-size: .95rem; }
.mtb-calc-field select,
.mtb-calc-field input {
    width: 100%;
    min-height: 52px;
    border: 1px solid #cfdedd;
    border-radius: 12px;
    background: #fff;
    color: var(--mtb-ink);
    font: inherit;
    font-weight: 700;
    padding: 12px 14px;
}
.mtb-calc-range { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.mtb-calc-range > span { font-weight: 800; color: #44595e; }
.mtb-stepper { display: flex; align-items: center; gap: 8px; }
.mtb-stepper button {
    width: 44px; height: 44px;
    border: 0; border-radius: 12px;
    background: var(--mtb-teal); color: #fff;
    font-size: 1.4rem; font-weight: 800; cursor: pointer;
    transition: background .2s, transform .15s;
}
.mtb-stepper button:hover { background: var(--mtb-teal-dark); transform: translateY(-1px); }
.mtb-stepper input {
    width: 72px; min-height: 44px; text-align: center;
    border: 1px solid #cfdedd; border-radius: 12px; font: inherit; font-weight: 800;
}
.mtb-calc-result {
    padding: 34px;
    background: linear-gradient(155deg, var(--mtb-teal), var(--mtb-teal-dark));
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 18px;
    justify-content: center;
}
.mtb-calc-save span,
.mtb-calc-pay span { display: block; font-size: .92rem; opacity: .85; margin-bottom: 4px; }
.mtb-calc-save strong {
    display: block;
    font-size: clamp(2rem, 5vw, 2.9rem);
    font-weight: 900;
    color: #ffd9a8;
    line-height: 1.1;
}
.mtb-calc-save small { display: inline-block; margin-top: 6px; font-weight: 700; opacity: .9; }
.mtb-calc-pay { padding-top: 16px; border-top: 1px solid rgba(255,255,255,.22); }
.mtb-calc-pay b { font-size: 1.4rem; font-weight: 800; }
.mtb-calc-pay small { display: block; margin-top: 4px; opacity: .8; }
.mtb-calc-cta {
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 20px;
    border-radius: 14px;
    background: var(--mtb-orange);
    color: #fff;
    font-weight: 800;
    font-size: 1.05rem;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(232,93,42,.4);
    transition: transform .2s, box-shadow .2s;
}
.mtb-calc-cta:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(232,93,42,.5); }
.mtb-calc-note { margin-top: 16px; text-align: center; color: #8a9aa0; font-size: .86rem; }

/* ---------- FAQ ---------- */
.mtb-faq { background: var(--mtb-soft); }
.mtb-faq-list { display: flex; flex-direction: column; gap: 14px; }
.mtb-faq-item {
    background: #fff;
    border: 1px solid rgba(24,49,54,.1);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(26,47,55,.06);
}
.mtb-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
    background: none;
    border: 0;
    cursor: pointer;
    text-align: left;
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--mtb-ink);
}
.mtb-faq-q i {
    flex-shrink: 0;
    width: 32px; height: 32px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: #e6f4f1; color: var(--mtb-teal);
    font-style: normal; font-size: 1.4rem; font-weight: 800;
    transition: transform .3s, background .3s, color .3s;
}
.mtb-faq-q[aria-expanded="true"] i { transform: rotate(45deg); background: var(--mtb-teal); color: #fff; }
.mtb-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}
.mtb-faq-a p {
    margin: 0;
    padding: 0 24px 24px;
    color: #4a5d62;
    line-height: 1.9;
}
.mtb-faq-cta {
    margin-top: 34px;
    text-align: center;
}
.mtb-faq-cta p { margin-bottom: 16px; font-weight: 700; color: #44595e; }

/* ---------- 콘텐츠 허브 ---------- */
.mtb-hub-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 18px;
}
.mtb-hub-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 24px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(24,49,54,.09);
    box-shadow: 0 12px 30px rgba(26,47,55,.07);
    text-decoration: none;
    color: var(--mtb-ink);
    transition: transform .3s, box-shadow .3s, border-color .3s;
}
.mtb-hub-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(15,139,141,.18);
    border-color: rgba(15,139,141,.35);
}
.mtb-hub-type {
    align-self: flex-start;
    padding: 5px 12px;
    border-radius: 999px;
    background: #e6f4f1;
    color: var(--mtb-teal);
    font-size: .78rem;
    font-weight: 800;
}
.mtb-hub-card h3 { margin: 0; font-size: 1.1rem; line-height: 1.45; }
.mtb-hub-card p { margin: 0; flex: 1; color: #5d7176; font-size: .94rem; line-height: 1.7; }
.mtb-hub-more { font-weight: 800; color: var(--mtb-orange); }
.mtb-hub-foot {
    margin-top: 34px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ---------- 본문 인라인 CTA (단일 글) ---------- */
.mtb-inline-cta {
    margin: 34px 0;
    padding: 24px;
    border-radius: 16px;
    background: linear-gradient(150deg, #eafaf7, #f5f8f8);
    border: 1px dashed rgba(15,139,141,.4);
}
.mtb-inline-cta__head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 1.1rem;
    color: var(--mtb-ink);
}
.mtb-inline-cta__head span { font-size: 1.5rem; }
.mtb-inline-cta__links { display: flex; flex-direction: column; gap: 10px; }
.mtb-inline-cta__links a {
    display: block;
    padding: 14px 18px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(15,139,141,.2);
    color: var(--mtb-ink);
    font-weight: 800;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.mtb-inline-cta__links a:hover {
    transform: translateX(6px);
    border-color: var(--mtb-teal);
    box-shadow: 0 10px 24px rgba(15,139,141,.16);
}

/* ---------- 다음 읽을거리 (연속성) ---------- */
.mtb-next {
    margin-top: 54px;
    padding-top: 40px;
    border-top: 2px solid #eef2f2;
}
.mtb-next h3 { margin: 0 0 6px; font-size: 1.4rem; }
.mtb-next__sub { margin: 0 0 22px; color: #5d7176; }
.mtb-next-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 14px;
}
.mtb-next-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    border-radius: 14px;
    background: #fbfdfd;
    border: 1px solid rgba(24,49,54,.09);
    text-decoration: none;
    color: var(--mtb-ink);
    transition: transform .25s, box-shadow .25s, background .25s;
}
.mtb-next-card:hover {
    transform: translateY(-6px);
    background: #fff;
    box-shadow: 0 18px 40px rgba(15,139,141,.16);
}
.mtb-next-type {
    align-self: flex-start;
    padding: 4px 10px;
    border-radius: 999px;
    background: #fff1e8;
    color: var(--mtb-orange);
    font-size: .74rem;
    font-weight: 800;
}
.mtb-next-card strong { font-size: 1rem; line-height: 1.5; }
.mtb-next-card em { font-style: normal; font-weight: 800; color: var(--mtb-teal); font-size: .9rem; }

/* ---------- 추천 할인코드 (단일 글 하단) ---------- */
.mtb-related-codes {
    margin-top: 40px;
    padding: 28px;
    border-radius: 18px;
    background: var(--mtb-soft);
    border: 1px solid rgba(15,139,141,.14);
}
.mtb-related-codes h3 { margin: 0 0 18px; font-size: 1.25rem; }
.mtb-related-codes__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 12px;
}
.mtb-related-codes__grid a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 18px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(15,139,141,.18);
    color: var(--mtb-ink);
    font-weight: 800;
    text-decoration: none;
    transition: transform .2s, border-color .2s, box-shadow .2s;
}
.mtb-related-codes__grid a:hover {
    transform: translateY(-3px);
    border-color: var(--mtb-teal);
    box-shadow: 0 12px 26px rgba(15,139,141,.16);
}

/* ---------- CTA 버튼 그룹 ---------- */
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 8px;
}

/* ---------- 카드 클릭성 강조 (커서) ---------- */
.discount-card, .article-card { cursor: default; }
.article-card.is-clickable { cursor: pointer; }

/* ---------- 반응형 ---------- */
@media (max-width: 1024px) {
    .mtb-hub-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .mtb-next-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 768px) {
    .mtb-calc-card { grid-template-columns: 1fr; }
    .mtb-next-grid { grid-template-columns: 1fr; }
    .mtb-related-codes__grid { grid-template-columns: 1fr; }
    .mtb-float--coin, .mtb-float--bag { display: none; }
    .cta-buttons .btn { width: 100%; }
}
@media (max-width: 480px) {
    .mtb-code-card { padding: 18px 18px; gap: 14px; }
    .mtb-code-icon { font-size: 2rem; }
    .mtb-code-body strong { font-size: 1.04rem; }
    .mtb-code-body em { font-size: .86rem; }
    .mtb-code-go { font-size: .9rem; }
    .mtb-hub-grid { grid-template-columns: 1fr; }
    .mtb-calc-form, .mtb-calc-result { padding: 24px; }
    .mtb-faq-q { font-size: 1rem; padding: 18px; }
}

/* =========================================================================
   예상 절약액 계산기 v2 (대형 플랫폼형)
   ========================================================================= */
.mtb-calc-kicker {
    display: inline-block;
    margin-bottom: 10px;
    padding: 4px 12px;
    border-radius: 999px;
    background: #e6f4f1;
    color: #0f8b8d;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}
.mtb-calc2 {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 0;
    max-width: 960px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(26,47,55,.16);
    border: 1px solid rgba(15,139,141,.14);
}
.mtb-calc2__panel { padding: 34px; }
.mtb-calc2__controls { background: #fff; display: flex; flex-direction: column; }
.mtb-calc2__label {
    margin: 0 0 11px;
    font-size: 0.82rem;
    font-weight: 800;
    color: #44595e;
    letter-spacing: 0.01em;
}
.mtb-calc2__label:not(:first-child) { margin-top: 24px; }

/* 카테고리 탭 */
.mtb-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
.mtb-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 8px;
    border: 1.5px solid #dce8e8;
    border-radius: 12px;
    background: #fbfdfd;
    color: #44595e;
    font-weight: 800;
    font-size: 0.92rem;
    cursor: pointer;
    transition: all .2s ease;
}
.mtb-tab span { font-size: 1.05rem; }
.mtb-tab:hover { border-color: #9fd3d0; }
.mtb-tab.is-active {
    background: linear-gradient(150deg, #0f8b8d, #0a6f72);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 20px rgba(15,139,141,.3);
}

/* 금액 입력 */
.mtb-amount {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid #cfdedd;
    border-radius: 12px;
    background: #fbfdfd;
    padding: 4px 16px;
}
.mtb-amount input {
    flex: 1;
    width: 100%;
    min-width: 0;
    border: 0;
    background: transparent;
    font: inherit;
    font-size: 1.5rem;
    font-weight: 900;
    color: #183136;
    padding: 12px 0;
    text-align: right;
}
.mtb-amount input:focus { outline: none; }
.mtb-amount b { color: #62757a; font-weight: 800; font-size: 1.1rem; }

/* 슬라이더 */
.mtb-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    margin: 16px 0 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, #0f8b8d, #9fd3d0);
    cursor: pointer;
}
.mtb-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid #0f8b8d;
    box-shadow: 0 4px 10px rgba(15,139,141,.35);
}
.mtb-range::-moz-range-thumb {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid #0f8b8d;
    box-shadow: 0 4px 10px rgba(15,139,141,.35);
}
.mtb-amt-quick {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.mtb-amt-quick button {
    padding: 9px 4px;
    border: 1px solid #dce8e8;
    border-radius: 9px;
    background: #fff;
    color: #44595e;
    font-weight: 800;
    font-size: 0.86rem;
    cursor: pointer;
    transition: all .15s;
}
.mtb-amt-quick button:hover { border-color: #0f8b8d; color: #0f8b8d; }

.mtb-calc2__peoplerow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
}

/* 결과 패널 */
.mtb-calc2__result {
    background: linear-gradient(160deg, #0f8b8d 0%, #0a6f72 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}
.mtb-calc2__result::before {
    content: "";
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,.07);
}
.mtb-calc2__rate {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.mtb-calc2__rate span { opacity: .85; font-weight: 700; font-size: 0.9rem; }
.mtb-calc2__rate b {
    padding: 5px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.16);
    color: #ffd9a8;
    font-size: 1.05rem;
    font-weight: 900;
}
.mtb-calc2__save { position: relative; }
.mtb-calc2__save span { display: block; opacity: .85; font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.mtb-calc2__save strong {
    display: block;
    font-size: clamp(2.2rem, 6vw, 3.1rem);
    font-weight: 900;
    color: #ffd9a8;
    line-height: 1.05;
    letter-spacing: -0.01em;
}
.mtb-calc2__compare {
    display: grid;
    gap: 10px;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,.18);
    border-bottom: 1px solid rgba(255,255,255,.18);
}
.mtb-cmp-row {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}
.mtb-cmp-row > span { opacity: .85; font-weight: 700; }
.mtb-cmp-bar {
    height: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.16);
    overflow: hidden;
}
.mtb-cmp-bar b {
    display: block;
    height: 100%;
    border-radius: inherit;
    transition: width .5s cubic-bezier(.2,.7,.2,1);
}
.mtb-cmp-bar b.is-before { background: rgba(255,255,255,.5); }
.mtb-cmp-bar b.is-after  { background: #ffd9a8; }
.mtb-cmp-row > b { font-weight: 800; white-space: nowrap; }
.mtb-calc2__person {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}
.mtb-calc2__person span { opacity: .85; font-weight: 700; font-size: 0.9rem; }
.mtb-calc2__person b { font-size: 1.15rem; font-weight: 800; }
.mtb-calc2__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
    padding: 16px;
    border-radius: 14px;
    background: #e85d2a;
    color: #fff;
    font-weight: 900;
    font-size: 1.05rem;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(232,93,42,.4);
    transition: transform .2s, box-shadow .2s;
}
.mtb-calc2__cta:hover { transform: translateY(-3px); box-shadow: 0 20px 42px rgba(232,93,42,.52); }
.mtb-calc2__trust {
    margin: 2px 0 0;
    text-align: center;
    font-size: 0.78rem;
    opacity: .8;
}

@media (max-width: 768px) {
    .mtb-calc2 { grid-template-columns: 1fr; max-width: 480px; }
    .mtb-calc2__panel { padding: 26px; }
}
@media (max-width: 480px) {
    .mtb-tabs { grid-template-columns: repeat(2, 1fr); }
    .mtb-amount input { font-size: 1.25rem; }
}

/* =========================================================================
   여행정보 글 본문 스타일 (figure/table/CTA/관련글) — 2026-06-02
   ========================================================================= */
.content-body .mytripp-figure { margin: 30px 0; }
.content-body .mytripp-figure img { width: 100%; height: auto; display: block; border-radius: 14px; box-shadow: 0 10px 30px rgba(26,47,55,.12); }
.content-body .mytripp-figure figcaption { margin-top: 10px; text-align: center; font-size: .9rem; color: #6b7d82; }
.content-body .mytripp-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: .96rem; }
.content-body .mytripp-table th, .content-body .mytripp-table td { border: 1px solid #e3ecec; padding: 11px 14px; text-align: left; }
.content-body .mytripp-table thead th { background: #eafaf7; color: #0c6d70; font-weight: 800; white-space: nowrap; }
.content-body .mytripp-table tbody td:first-child { font-weight: 700; color: #0f8b8d; white-space: nowrap; }
.content-body .mytripp-cta-box { background: linear-gradient(150deg, #0f8b8d, #0c6d70); border: none; color: #fff; }
.content-body .mytripp-cta-box h3, .content-body .mytripp-cta-box p { color: #fff; }
.content-body .mytripp-cta-btn { display: inline-block; margin-top: 6px; padding: 13px 26px; border-radius: 999px; background: #ff7a1a; color: #fff !important; font-weight: 800; text-decoration: none; box-shadow: 0 8px 22px rgba(255,122,26,.4); transition: transform .2s; }
.content-body .mytripp-cta-btn:hover { transform: translateY(-2px); }
.content-body .mytripp-related { margin: 36px 0; padding: 24px 26px; background: #fbfbf8; border: 1px solid #ececec; border-radius: 16px; }
.content-body .mytripp-related h3 { margin: 0 0 14px; font-size: 1.12rem; }
.content-body .mytripp-related ul { margin: 0; padding: 0; list-style: none; }
.content-body .mytripp-related li { padding: 9px 0; border-bottom: 1px dashed #e4e4e4; }
.content-body .mytripp-related li:last-child { border-bottom: none; }
.content-body .mytripp-related a { color: #0f8b8d; font-weight: 700; text-decoration: none; }
.content-body .mytripp-related a:hover { text-decoration: underline; }
.content-body .mytripp-img-credit { margin-top: 26px; font-size: .8rem; color: #9aa7aa; text-align: right; }
@media (max-width: 480px) {
  .content-body .mytripp-table { font-size: .88rem; }
  .content-body .mytripp-table th, .content-body .mytripp-table td { padding: 8px 9px; }
}

/* =========================================================================
   가격 추적 메모 공유 버튼 + 토스트 (2026-06-02)
   ========================================================================= */
.mytripp-watch-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 14px 0 4px; }
.mytripp-watch-actions__label { font-size: .82rem; font-weight: 800; color: #5d7176; margin-right: 2px; }
.mytripp-watch-actions button { display: inline-flex; align-items: center; gap: 5px; padding: 8px 14px; border: 1px solid #cfe3e2; border-radius: 999px; background: #fff; color: #0f6d70; font-weight: 800; font-size: .85rem; cursor: pointer; transition: all .15s; }
.mytripp-watch-actions button:hover { border-color: #0f8b8d; background: #eafaf7; transform: translateY(-1px); }
.mytripp-watch-actions [data-watch-share="share"] { background: linear-gradient(135deg, #0f8b8d, #0c6d70); border-color: transparent; color: #fff; }
.mytripp-watch-actions [data-watch-share="share"]:hover { box-shadow: 0 8px 20px rgba(15,139,141,.35); background: linear-gradient(135deg, #0f8b8d, #0c6d70); }
.mytripp-toast { position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%) translateY(20px); z-index: 9999; max-width: 90vw; padding: 13px 20px; border-radius: 999px; background: rgba(24,49,54,.95); color: #fff; font-weight: 700; font-size: .9rem; box-shadow: 0 12px 30px rgba(0,0,0,.25); opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; }
.mytripp-toast.is-on { opacity: 1; transform: translateX(-50%) translateY(0); }

/* =========================================================================
   사용방법 (how-to-use) 페이지 (2026-06-02)
   ========================================================================= */
.htu { max-width: 860px; margin: 0 auto; }
.htu-intro { text-align: center; margin: 4px 0 36px; }
.htu-badge { display: inline-block; padding: 6px 16px; border-radius: 999px; background: #eafaf7; color: #0c6d70; font-weight: 800; font-size: .85rem; margin-bottom: 16px; }
.htu-lead { font-size: 1.18rem; line-height: 1.85; color: #37474a; margin: 0; }
.htu-h2 { text-align: center; font-size: 1.7rem; margin: 50px 0 10px; color: #16323a; }
.htu-sub { text-align: center; color: #5d7176; margin: 0 0 26px; }
.htu-steps { list-style: none; margin: 28px 0 0; padding: 0; }
.htu-step { position: relative; display: flex; gap: 20px; padding: 0 0 26px; }
.htu-step::before { content: ""; position: absolute; left: 23px; top: 50px; bottom: -2px; width: 2px; background: linear-gradient(#0f8b8d, #d9ece8); }
.htu-step:last-child::before { display: none; }
.htu-step__num { flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, #0f8b8d, #0c6d70); color: #fff; font-weight: 900; font-size: 1.3rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 18px rgba(15,139,141,.3); z-index: 1; }
.htu-step__body { flex: 1; background: #fff; border: 1px solid #e7efef; border-radius: 16px; padding: 16px 22px 18px; box-shadow: 0 8px 24px rgba(26,47,55,.06); }
.htu-step__icon { font-size: 1.5rem; }
.htu-step__body h3 { margin: 4px 0 8px; font-size: 1.15rem; color: #16323a; }
.htu-step__body p { margin: 0; color: #4a5d62; line-height: 1.75; }
.htu-note { margin: 16px 0 0; padding: 16px 20px; background: #fff8ef; border: 1px solid #ffe1bf; border-radius: 14px; color: #8a5a2b; line-height: 1.75; }
.htu-tools { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 6px; }
.htu-tool { background: #fff; border: 1px solid #e7efef; border-radius: 16px; padding: 22px; box-shadow: 0 8px 24px rgba(26,47,55,.06); }
.htu-tool span { font-size: 2rem; line-height: 1; }
.htu-tool h4 { margin: 10px 0 8px; font-size: 1.08rem; color: #16323a; }
.htu-tool p { margin: 0; color: #5d7176; line-height: 1.7; font-size: .95rem; }
.htu-faq { margin-top: 6px; display: flex; flex-direction: column; gap: 12px; }
.htu-faq__item { background: #fff; border: 1px solid #e7efef; border-radius: 14px; overflow: hidden; }
.htu-faq__item summary { cursor: pointer; padding: 17px 22px; font-weight: 800; color: #16323a; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.htu-faq__item summary::-webkit-details-marker { display: none; }
.htu-faq__item summary::after { content: "+"; flex-shrink: 0; color: #0f8b8d; font-size: 1.5rem; font-weight: 800; line-height: 1; transition: transform .2s; }
.htu-faq__item[open] summary::after { transform: rotate(45deg); }
.htu-faq__item > div { padding: 0 22px 20px; color: #4a5d62; line-height: 1.8; }
.htu-faq__item ul { margin: 8px 0 0; padding-left: 20px; }
.htu-cta { margin: 50px 0 0; padding: 40px 28px; text-align: center; border-radius: 22px; background: linear-gradient(150deg, #0f8b8d, #0c6d70); color: #fff; }
.htu-cta h3 { margin: 0 0 10px; font-size: 1.5rem; color: #fff; }
.htu-cta p { margin: 0 0 22px; opacity: .92; }
.htu-cta__btn { display: inline-block; padding: 15px 32px; border-radius: 999px; background: #ff7a1a; color: #fff !important; font-weight: 800; font-size: 1.05rem; text-decoration: none; box-shadow: 0 10px 26px rgba(255,122,26,.4); transition: transform .2s; }
.htu-cta__btn:hover { transform: translateY(-2px); }
.htu-cta__link { display: inline-block; margin-top: 16px; color: #d6f3f0 !important; font-weight: 700; text-decoration: none; }
.htu-cta__link:hover { text-decoration: underline; }
.htu-more { margin: 34px 0 0; padding: 24px 26px; background: #fbfbf8; border: 1px solid #ececec; border-radius: 16px; }
.htu-more h3 { margin: 0 0 12px; font-size: 1.15rem; }
.htu-more ul { margin: 0; padding: 0; list-style: none; }
.htu-more li { padding: 9px 0; border-bottom: 1px dashed #e4e4e4; }
.htu-more li:last-child { border-bottom: none; }
.htu-more a { color: #0f8b8d; font-weight: 700; text-decoration: none; }
.htu-more a:hover { text-decoration: underline; }
@media (max-width: 600px) { .htu-tools { grid-template-columns: 1fr; } .htu-h2 { font-size: 1.4rem; } .htu-lead { font-size: 1.06rem; } }
