/* =========================================
   근영방수 - 매거진형 시공 사례 상세 페이지
   송파구 식당 주방 방수
   ========================================= */

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #0047AB;
    --primary-light: #e6f0ff;
    --primary-dark: #003380;
    --accent: #FFD100;
    --accent-light: #fff8e0;
    --surface-light: #FFFFFF;
    --surface-gray: #F3F4F6;
    --text-main: #1F2937;
    --text-sub: #4B5563;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --red-50: #FEF2F2;
    --red-500: #EF4444;
    --green-400: #4ADE80;
    --green-600: #16A34A;
    --orange-500: #f97316;
    --orange-50: #fff7ed;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: white;
    color: var(--text-main);
    line-height: 1.6;
}

::selection {
    background-color: var(--primary);
    color: white;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

/* Container */
.blog-container {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    position: relative;
    padding: 5rem 0 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-color: var(--gray-50);
    z-index: -10;
    transform: skewY(-2deg);
    transform-origin: top left;
    height: 150%;
    margin-top: -50%;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.badge-black {
    background-color: black;
    color: white;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.badge-line {
    width: 3rem;
    height: 1px;
    background-color: var(--gray-300);
}

.badge-blue {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 2rem;
    word-break: keep-all;
}

.hero-title .highlight {
    display: inline-block;
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 0;
    width: 100%;
    height: 0.75rem;
    background-color: rgba(255, 209, 0, 0.4);
    z-index: -1;
}

.hero-title .blue {
    color: var(--primary);
}

.hero-quote {
    font-size: 1.25rem;
    color: var(--gray-600);
    font-style: italic;
    line-height: 1.75;
    max-width: 48rem;
    margin-bottom: 3rem;
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
    border-top: 1px solid rgba(17, 24, 39, 0.1);
    border-bottom: 1px solid rgba(17, 24, 39, 0.1);
    padding: 2rem 0;
}

.stat-label {
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-value {
    color: var(--gray-900);
    font-size: 1.125rem;
    font-weight: 700;
}

/* =========================================
   Section Headers
   ========================================= */
.section-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.section-number {
    font-size: 6rem;
    font-weight: 900;
    color: var(--gray-200) !important;
    line-height: 1;
    z-index: 0;
    user-select: none;
    margin-bottom: -2.5rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gray-900);
    z-index: 10;
    position: relative;
    padding-left: 1rem;
}

/* =========================================
   Article Content
   ========================================= */
.article {
    padding: 3rem 0 5rem;
}

.article-section {
    margin-bottom: 10rem;
}

.article-section:last-child {
    margin-bottom: 0;
}

.prose {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 2;
    margin-bottom: 3rem;
}

.prose p {
    margin-bottom: 1.5rem;
}

.prose strong {
    color: var(--primary);
    font-weight: 600;
}

.drop-cap::first-letter {
    float: left;
    font-size: 3.5rem;
    line-height: 0.8;
    font-weight: 900;
    margin-right: 0.75rem;
    color: var(--primary);
}

/* =========================================
   Magazine Quote
   ========================================= */
.magazine-quote {
    margin: 3rem 0;
    padding: 2.5rem;
    background-color: var(--gray-50);
    border-radius: 0 2rem 0 2rem;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.magazine-quote::before {
    content: '"';
    position: absolute;
    top: -1.5rem;
    left: -0.5rem;
    font-size: 5rem;
    color: var(--gray-200);
    font-family: Georgia, serif;
    z-index: 0;
    opacity: 0.5;
}

.magazine-quote p {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--gray-800);
    text-align: center;
    line-height: 1.75;
    font-style: italic;
    position: relative;
    z-index: 10;
    margin: 0;
}

.magazine-quote .attribution {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.magazine-quote.accent {
    background-color: var(--primary-light);
}

.magazine-quote.accent::before {
    color: var(--primary);
    opacity: 0.3;
}

.magazine-quote.accent p {
    color: var(--primary-dark);
}

.magazine-quote.orange {
    background-color: var(--orange-50);
    border: 2px solid var(--orange-500);
}

.magazine-quote.orange::before {
    color: var(--orange-500);
    opacity: 0.3;
}

.magazine-quote.orange p {
    color: var(--orange-500);
}

/* =========================================
   Content Figure
   ========================================= */
.content-figure {
    margin: 2rem 0;
    position: relative;
}

.content-figure .overflow-hidden {
    overflow: hidden;
    border-radius: 0.5rem;
}

.content-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
    transition: transform 0.7s;
}

.content-figure:hover img {
    transform: scale(1.02);
}

.content-figure figcaption {
    margin-top: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.content-figure figcaption .line {
    width: 2rem;
    height: 1px;
    background-color: var(--gray-400);
}

/* =========================================
   Image Grid
   ========================================= */
.image-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.image-wrapper {
    position: relative;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
    transition: transform 0.7s;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-wrapper .overflow-hidden {
    overflow: hidden;
    border-radius: 0.5rem;
    aspect-ratio: 4/3;
}

/* =========================================
   Info Card
   ========================================= */
.info-card {
    background-color: white;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border-radius: 0.75rem;
    border: 1px solid var(--gray-100);
    margin-top: 2rem;
}

.info-card h3 {
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-100);
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
}

.info-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--red-50);
    color: var(--red-500);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.info-icon.warning {
    background-color: var(--orange-50);
    color: var(--orange-500);
}

.info-icon.primary {
    background-color: var(--primary-light);
    color: var(--primary);
}

.info-item strong {
    display: block;
    color: var(--gray-900);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.info-item span {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.625;
}

/* =========================================
   Diagnosis Card (Dark)
   ========================================= */
.diagnosis-card {
    background-color: var(--gray-900);
    color: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    margin: 3rem 0;
}

.diagnosis-card .glow-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background-color: rgba(0, 71, 171, 0.2);
    border-radius: 50%;
    filter: blur(60px);
    margin-right: -8rem;
    margin-top: -8rem;
    pointer-events: none;
}

.diagnosis-card .glow-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 209, 0, 0.1);
    border-radius: 50%;
    filter: blur(60px);
    margin-left: -5rem;
    margin-bottom: -5rem;
    pointer-events: none;
}

.diagnosis-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
}

.diagnosis-header .label {
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    display: block;
}

.diagnosis-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.diagnosis-header .icon {
    font-size: 2.25rem;
    color: rgba(255, 255, 255, 0.2);
}

.diagnosis-grid {
    display: grid;
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.diagnosis-item .label {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-bottom: 0.5rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.diagnosis-item .value {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.diagnosis-item .value .number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
}

.diagnosis-item .value .suffix {
    font-size: 1rem;
    color: var(--gray-400);
    margin-bottom: 0.5rem;
}

.diagnosis-item .value.white .number {
    color: white;
}

.diagnosis-item p {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--gray-300);
    line-height: 1.625;
}

.diagnosis-item .solution-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    padding: 0.25rem 0.75rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* =========================================
   Risk Table
   ========================================= */
.risk-table {
    margin: 2rem 0;
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.risk-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.risk-table th,
.risk-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-100);
}

.risk-table th {
    background: var(--gray-900);
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
}

.risk-table td {
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.risk-table tr:hover td {
    background-color: var(--gray-50);
}

.risk-table tr:last-child td {
    border-bottom: none;
}

/* =========================================
   Warning Box
   ========================================= */
.warning-box {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--red-50);
    border: 1px solid #fca5a5;
    border-left: 4px solid var(--red-500);
    border-radius: 0 0.75rem 0.75rem 0;
    margin: 2rem 0;
}

.warning-box .icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.warning-box p {
    margin: 0;
    font-size: 1rem;
    color: var(--gray-800);
    line-height: 1.75;
}

/* =========================================
   Tip Box
   ========================================= */
.tip-box {
    margin: 2rem 0;
    background-color: var(--primary-light);
    border-left: 4px solid var(--primary);
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: 0 0.75rem 0.75rem 0;
}

.tip-box .icon {
    font-size: 2rem;
    color: var(--primary);
}

.tip-box h4 {
    font-weight: 700;
    color: var(--gray-900);
    font-size: 1.125rem;
    margin: 0 0 0.5rem 0;
}

.tip-box p {
    color: var(--gray-600);
    line-height: 1.75;
    margin: 0;
}

.tip-box.orange {
    background-color: var(--orange-50);
    border-left-color: var(--orange-500);
}

.tip-box.orange .icon {
    color: var(--orange-500);
}

.tip-box.orange h4 {
    color: var(--orange-500);
}

/* =========================================
   Process Section
   ========================================= */
.process-item {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    margin-bottom: 6rem;
}

.process-item:last-child {
    margin-bottom: 0;
}

.process-image {
    width: 100%;
    position: relative;
}

.process-image .step-number {
    position: absolute;
    top: -1.5rem;
    left: -1rem;
    font-size: 5rem;
    font-weight: 900;
    color: var(--gray-100);
    z-index: -1;
}

.process-image .img-container {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.process-image:hover img {
    transform: scale(1.05);
}

.process-content {
    width: 100%;
}

.process-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.process-content p {
    color: var(--gray-600);
    line-height: 1.875;
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
}

.process-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.process-tag {
    padding: 0.5rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* =========================================
   Comparison Table
   ========================================= */
.comparison-table {
    margin: 2rem 0;
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-100);
}

.comparison-table th {
    background: var(--primary);
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
}

.comparison-table td {
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.comparison-table tr:hover td {
    background-color: var(--primary-light);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* =========================================
   Info Box
   ========================================= */
.info-box {
    padding: 2rem;
    border-radius: 1rem;
    margin: 2rem 0;
    text-align: center;
}

.info-box.primary {
    background-color: var(--primary-light);
    border: 2px solid var(--primary);
}

.info-box.orange {
    background-color: var(--orange-50);
    border: 2px solid var(--orange-500);
}

.info-box .info-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.info-box.orange .info-title {
    color: var(--orange-500);
}

.info-box .info-main {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.info-box .info-sub {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.75;
}

/* =========================================
   Result Card
   ========================================= */
.result-card {
    background-color: var(--gray-50);
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-100);
    margin: 3rem 0;
}

.result-content {
    padding: 2rem;
}

.result-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.result-text {
    order: 2;
}

.result-text .label {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
    font-size: 0.875rem;
}

.result-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.result-text h3 .gradient {
    background: linear-gradient(to right, var(--primary), #2563EB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-text > p {
    font-size: 1.0625rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.75;
}

.result-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-100);
}

.result-item .icon {
    color: var(--green-600);
    font-size: 1.25rem;
}

.result-item span {
    font-weight: 500;
    color: var(--gray-800);
}

.result-image {
    width: 100%;
    order: 1;
}

.result-image-inner {
    position: relative;
}

.result-image-inner .shadow {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    transform: rotate(3deg) scale(0.95);
    transition: transform 0.5s;
}

.result-image-inner:hover .shadow {
    transform: rotate(6deg) scale(0.95);
}

.result-image-inner .img-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 6px solid white;
}

.result-image-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.result-image-inner:hover img {
    transform: scale(1.05);
}

.result-image-inner .badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    color: var(--gray-900);
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
}

.result-bar {
    height: 0.75rem;
    width: 100%;
    background: linear-gradient(to right, var(--primary), var(--accent));
}

/* =========================================
   Before & After Gallery
   ========================================= */
.ba-gallery {
    margin: 3rem 0;
}

.ba-arrow {
    text-align: center;
    font-size: 2rem;
    color: var(--gray-400);
    margin: 2rem 0;
}

/* =========================================
   FAQ Section
   ========================================= */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 2rem 0;
}

.faq-item {
    background: var(--gray-50);
    border-radius: 0.75rem;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item:hover {
    border-color: var(--primary-light);
}

.faq-item[open] {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-item summary:hover {
    background: var(--primary-light);
}

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

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gray-400);
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    content: '−';
    color: var(--primary);
}

.faq-item .faq-answer {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.75;
}

/* =========================================
   CTA Section
   ========================================= */
.cta-section {
    background-color: var(--gray-900);
    padding: 5rem 1.25rem;
    position: relative;
    overflow: hidden;
}

.cta-section .glow-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
}

.cta-section .glow-1 {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 60%;
    background-color: var(--primary);
    border-radius: 50%;
    filter: blur(100px);
}

.cta-section .glow-2 {
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 60%;
    height: 60%;
    background-color: var(--accent);
    border-radius: 50%;
    filter: blur(100px);
}

.cta-content {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-content h2 {
    font-size: 1.875rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cta-content h2 .yellow {
    color: var(--accent);
}

.cta-content > p {
    color: var(--gray-300);
    font-size: 1.0625rem;
    margin-bottom: 2.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

.cta-phone-box {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    margin: 2rem auto;
    max-width: 400px;
}

.cta-phone-box .phone-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.cta-phone-box .phone-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--orange-500);
    display: block;
    transition: transform 0.2s;
}

.cta-phone-box .phone-number:hover {
    transform: scale(1.05);
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.9375rem;
    color: var(--gray-400);
}

.cta-thanks {
    margin-top: 3rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
}

/* =========================================
   Highlight Text
   ========================================= */
.highlight-text {
    color: var(--primary);
    font-weight: 700;
}

.highlight-orange {
    color: var(--orange-500);
    font-weight: 700;
    background: linear-gradient(to top, rgba(255, 237, 213, 0.6) 40%, transparent 40%);
}

/* =========================================
   Text Utilities
   ========================================= */
.text-center {
    text-align: center;
}

.text-sub {
    color: var(--gray-500);
    font-size: 0.9375rem;
    line-height: 1.75;
}

/* =========================================
   Responsive - Tablet (768px)
   ========================================= */
@media (min-width: 768px) {
    .hero {
        padding: 6rem 0 5rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-quote {
        font-size: 1.375rem;
    }

    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }

    .section-header {
        flex-direction: row;
        align-items: baseline;
    }

    .section-title {
        padding-left: 0;
    }

    .magazine-quote {
        margin: 3rem 2rem;
        padding: 3rem;
    }

    .image-grid {
        grid-template-columns: repeat(12, 1fr);
    }

    .image-grid .image-wrapper {
        grid-column: span 7;
    }

    .image-grid .info-card-wrapper {
        grid-column: span 5;
        margin-left: -3rem;
        position: relative;
        z-index: 10;
        margin-top: 0;
    }

    .diagnosis-card {
        padding: 2.5rem;
    }

    .diagnosis-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tip-box {
        flex-direction: row;
        align-items: flex-start;
    }

    .process-item {
        flex-direction: row;
        gap: 3rem;
    }

    .process-item.reverse {
        flex-direction: row-reverse;
    }

    .process-item.reverse .process-content {
        text-align: right;
    }

    .process-item.reverse .process-tags {
        justify-content: flex-end;
    }

    .process-item.reverse .step-number {
        left: auto;
        right: -1rem;
    }

    .process-image,
    .process-content {
        width: 50%;
    }

    .result-content {
        padding: 3rem;
    }

    .result-grid {
        flex-direction: row;
    }

    .result-text,
    .result-image {
        flex: 1;
        order: unset;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .cta-phone-box .phone-number {
        font-size: 2.5rem;
    }
}

/* =========================================
   Responsive - Desktop (1024px)
   ========================================= */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .blog-container {
        padding: 0;
    }

    .article {
        padding: 5rem 0;
    }

    .article-section {
        margin-bottom: 12rem;
    }
}
/* =========================================
   Related Cases Section
   ========================================= */
.related-cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.related-case-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-100);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.case-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-case-card:hover .case-image img {
    transform: scale(1.08);
}

.case-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.case-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.case-tags {
    display: flex;
    gap: 0.5rem;
}

.case-tag {
    padding: 0.25rem 0.625rem;
    border-radius: 4px;
    font-size: 0.6875rem;
    font-weight: 600;
}

.case-tag.location {
    background: var(--gray-900);
    color: white;
}

.case-tag.type {
    background: var(--accent);
    color: var(--gray-900);
}

.case-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.case-desc {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.case-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--gray-400);
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-100);
}

/* 더보기 버튼 */
.cases-more {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.btn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--gray-900);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.btn-more:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 71, 171, 0.3);
}

.btn-more .arrow {
    transition: transform 0.3s ease;
}

.btn-more:hover .arrow {
    transform: translateX(4px);
}

/* =========================================
   Responsive - Related Cases
   ========================================= */
@media (min-width: 640px) {
    .related-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .related-cases-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .case-content {
        padding: 1.25rem;
    }

    .case-title {
        font-size: 1rem;
    }
}
