/* ========================================
   The White Rehab - Article Details Page Stylesheet
   ======================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #4a7c59;
    --dark-green: #2d5a3d;
    --light-green: #6b9b7a;
    --accent-red: #d32f2f;
    --gold: #c9a961;
    --cream: #f5f1e8;
    --brown: #8b6914;
    --text-dark: #333;
    --text-gray: #666;
}

body {
    font-family: 'DB Heavent', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: visible;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   Article Header
   ======================================== */
.ard-header {
    background-color: var(--cream);
    padding: 44px 0 32px;
}

.ard-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 16px;
}

.ard-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.4rem;
    color: var(--text-gray);
}

.ard-meta i {
    color: var(--primary-green);
}

/* ========================================
   Thumbnail
   ======================================== */
.ard-thumbnail {
    background-color: #f7f4eb;
    padding: 0;
}

.ard-thumbnail img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

/* ========================================
   Article Body
   ======================================== */
.ard-body {
    background-color: #f7f4eb;
    padding: 52px 0 60px;
}

.ard-body__content {
    max-width: 1200px;
    margin: 0 auto 48px;
    font-size: 1.5rem;
    line-height: 1.9;
    color: var(--text-dark);
}

.ard-body__content p {
    margin-bottom: 18px;
}

.ard-body__content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-green);
    margin: 32px 0 12px;
}

.ard-body__content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-green);
    margin: 24px 0 10px;
}

.ard-body__content ul,
.ard-body__content ol {
    padding-left: 28px;
    margin-bottom: 18px;
}

.ard-body__content li {
    margin-bottom: 6px;
}

.ard-body__content img {
    width: 100%;
    border-radius: 8px;
    margin: 20px 0;
}

.ard-body__content strong {
    color: var(--dark-green);
}

/* ========================================
   Share Buttons
   ======================================== */
.ard-share {
    max-width: 1200px;
    margin: 0 auto;
    /* padding-top: 28px; */
    /* border-top: 1px solid rgba(0, 0, 0, 0.1); */
}

.ard-share__label {
    font-size: 1.4rem;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.ard-share__buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ard-share__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 1.4rem;
    font-family: inherit;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
}

.ard-share__btn:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.ard-share__btn--line {
    background-color: #06c755;
    color: #fff;
}

.ard-share__btn--facebook {
    background-color: #1877f2;
    color: #fff;
}

.ard-share__btn--copy {
    background-color: #fff;
    color: var(--text-dark);
    border: 1px solid #d0ccc2;
}

.ard-share__btn i {
    font-size: 1.2rem;
}

/* ========================================
   CTA Section
   ======================================== */
.ard-cta-section {
    background-color: var(--cream);
    padding: 52px 0 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.ard-cta__actions {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.ard-cta__left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.ard-cta__label {
    font-size: 3rem;
    font-weight: 500;
    color: var(--text-dark);
}

.ard-cta__phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(180deg, #f9e8bbc9 0%, #e8d7a1 100%);
    color: var(--text-dark);
    padding: 14px 100px;
    font-size: 3.5rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    transition: box-shadow 0.2s;
}

.ard-cta__phone-btn:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.ard-cta__phone-btn i {
    font-size: 1.7rem;
    color: var(--text-dark);
}

.ard-btn-orange {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(180deg, #f5ad68 0%, #fd8818 100%);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1.5rem;
    text-decoration: none;
    transition: opacity 0.2s;
    margin-bottom: 1rem;
}

.ard-btn-orange:hover {
    opacity: 0.88;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
    .ard-title {
        font-size: 2.1rem;
    }

    .ard-thumbnail img {
        height: 260px;
    }

    .ard-body__content {
        font-size: 1.25rem;
    }

    .ard-body__content h2 {
        font-size: 3rem;
    }

    .ard-body__content h3 {
        font-size: 1.5rem;
    }

    .ard-cta__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ard-cta__left {
        align-items: flex-start;
    }

    .ard-cta__label {
        font-size: 2.2rem;
    }

    .ard-cta__phone-btn {
        font-size: 2.4rem;
        padding: 14px 32px;
    }

    .ard-btn-orange {
        justify-content: center;
    }
}