/* Blog Article Styles */

/* Blog Article Container */
.blog-article {
    background: var(--bg-white);
    padding: 80px 0 100px;
}

.blog-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Article Header */
.blog-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--bg-cream);
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-meta-item i {
    color: var(--accent-copper);
    font-size: 1.1rem;
}

.blog-category {
    display: inline-block;
    background: var(--accent-copper);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-title {
    color: var(--primary-navy);
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 900;
}

.blog-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    line-height: 1.5;
    font-weight: 400;
    font-style: italic;
}

/* Featured Image */
.blog-featured-image {
    width: 100%;
    margin: 3rem 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px var(--shadow-light);
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Blog Content */
.blog-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Typography within content */
.blog-content h2 {
    color: var(--primary-navy);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    border-left: 4px solid var(--accent-copper);
    padding-left: 1.5rem;
}

.blog-content h3 {
    color: var(--primary-navy);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.blog-content h4 {
    color: var(--primary-navy);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.blog-content p {
    margin-bottom: 1.5rem;
}

.blog-content p:first-of-type {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 500;
}

.blog-content strong {
    color: var(--primary-navy);
    font-weight: 600;
}

.blog-content em {
    color: var(--accent-copper);
}

/* Lists */
.blog-content ul,
.blog-content ol {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.blog-content li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.blog-content ul li {
    list-style: none;
    position: relative;
    padding-left: 1.5rem;
}

.blog-content ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-copper);
    font-weight: bold;
}

/* Blockquotes */
.blog-content blockquote {
    background: var(--bg-cream);
    border-left: 4px solid var(--accent-copper);
    padding: 2rem;
    margin: 2.5rem 0;
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
    border-radius: 0 10px 10px 0;
}

.blog-content blockquote p:last-child {
    margin-bottom: 0;
}

.blog-content blockquote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-gray);
    font-style: normal;
    font-weight: 600;
}

/* Images within content */
.blog-content img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px var(--shadow-light);
}

/* Callout Boxes */
.blog-callout {
    background: linear-gradient(135deg, var(--bg-cream) 0%, white 100%);
    border: 2px solid var(--accent-copper);
    border-radius: 15px;
    padding: 2rem;
    margin: 2.5rem 0;
}

.blog-callout-icon {
    font-size: 2.5rem;
    color: var(--accent-copper);
    margin-bottom: 1rem;
}

.blog-callout h3 {
    color: var(--primary-navy);
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.blog-callout p:last-child {
    margin-bottom: 0;
}

/* Info boxes with different colors */
.blog-callout.info {
    border-color: var(--primary-navy);
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.05) 0%, white 100%);
}

.blog-callout.info .blog-callout-icon {
    color: var(--primary-navy);
}

.blog-callout.warning {
    border-color: #e67e22;
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.05) 0%, white 100%);
}

.blog-callout.warning .blog-callout-icon {
    color: #e67e22;
}

.blog-callout.success {
    border-color: var(--success-green);
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.05) 0%, white 100%);
}

.blog-callout.success .blog-callout-icon {
    color: var(--success-green);
}

/* Code blocks (if needed) */
.blog-content code {
    background: var(--bg-cream);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: var(--primary-navy);
}

.blog-content pre {
    background: var(--primary-navy);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    overflow-x: auto;
    margin: 2rem 0;
}

.blog-content pre code {
    background: none;
    padding: 0;
    color: white;
}

/* Table of Contents */
.blog-toc {
    background: var(--bg-cream);
    border-radius: 15px;
    padding: 2rem;
    margin: 2.5rem 0;
}

.blog-toc h3 {
    color: var(--primary-navy);
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-toc h3 i {
    color: var(--accent-copper);
}

.blog-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-toc li {
    margin-bottom: 0.8rem;
}

.blog-toc a {
    color: var(--text-dark);
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.blog-toc a:hover {
    color: var(--accent-copper);
    padding-left: 0.5rem;
}

/* Author Bio Box */
.blog-author {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
    color: white;
    border-radius: 15px;
    padding: 2.5rem;
    margin: 3rem 0;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.blog-author-image {
    flex-shrink: 0;
}

.blog-author-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-copper);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.blog-author-content h3 {
    color: var(--accent-copper);
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.blog-author-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.blog-author-bio {
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.6 !important;
    margin-bottom: 0 !important;
}

/* CTA Section */
.blog-cta {
    background: linear-gradient(135deg, var(--accent-copper) 0%, var(--accent-copper-dark) 100%);
    color: white;
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
}

.blog-cta h3 {
    color: white;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.blog-cta p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.blog-cta-button {
    display: inline-block;
    background: white;
    color: var(--accent-copper);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.blog-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.blog-cta-button i {
    margin-left: 0.5rem;
}

/* Related Articles */
.blog-related {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--bg-cream);
}

.blog-related h3 {
    color: var(--primary-navy);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.blog-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.blog-related-card {
    background: white;
    border: 1px solid var(--bg-cream);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow-light);
}

.blog-related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.blog-related-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-related-card-content {
    padding: 1.5rem;
}

.blog-related-card h4 {
    color: var(--primary-navy);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    margin-top: 0;
}

.blog-related-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.blog-related-card a {
    color: var(--accent-copper);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.blog-related-card a:hover {
    gap: 0.8rem;
}

/* Social Share */
.blog-share {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-cream);
    border-radius: 15px;
    text-align: center;
}

.blog-share h4 {
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.blog-share-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.blog-share-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.blog-share-button.linkedin {
    background: #0077b5;
    color: white;
}

.blog-share-button.facebook {
    background: #1877f2;
    color: white;
}

.blog-share-button.twitter {
    background: #1da1f2;
    color: white;
}

.blog-share-button.email {
    background: var(--primary-navy);
    color: white;
}

.blog-share-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-medium);
}

/* Breadcrumbs */
.blog-breadcrumbs {
    max-width: 900px;
    margin: 2rem auto 0;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.blog-breadcrumbs a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-breadcrumbs a:hover {
    color: var(--accent-copper);
}

.blog-breadcrumbs i {
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-article {
        padding: 40px 0 60px;
    }

    .blog-container {
        padding: 0 15px;
    }

    .blog-title {
        font-size: 1.8rem;
    }

    .blog-subtitle {
        font-size: 1.1rem;
    }

    .blog-content {
        font-size: 1rem;
    }

    .blog-content h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }

    .blog-content h3 {
        font-size: 1.3rem;
    }

    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .blog-author {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .blog-author-image img {
        width: 100px;
        height: 100px;
    }

    .blog-callout,
    .blog-cta {
        padding: 1.5rem;
    }

    .blog-related-grid {
        grid-template-columns: 1fr;
    }

    .blog-share-buttons {
        flex-direction: column;
    }

    .blog-share-button {
        width: 100%;
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .blog-breadcrumbs,
    .blog-share,
    .blog-cta,
    .blog-related {
        display: none;
    }

    .blog-article {
        padding: 0;
    }

    .blog-content {
        font-size: 12pt;
        line-height: 1.5;
    }
}

/* ==============================================
   THERAPY CATEGORY PAGE STYLES
   ============================================== */

/* Hero Section */
.therapy-hero {
    min-height: 60vh;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
    position: relative;
    overflow: hidden;
}

.therapy-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.therapy-hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(184, 115, 51, 0.1);
    border: 1px solid rgba(184, 115, 51, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
}

.therapy-hero-badge i {
    color: var(--accent-copper);
    margin-right: 0.5rem;
}

.therapy-hero-badge span {
    color: var(--accent-copper);
    font-weight: 500;
    font-size: 0.9rem;
}

.therapy-hero-title {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
}

.therapy-hero-title .highlight {
    color: var(--accent-copper);
}

.therapy-hero-subtitle {
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.therapy-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.therapy-hero-btn-primary {
    background: var(--accent-copper);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 25px rgba(184, 115, 51, 0.3);
}

.therapy-hero-btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Category Navigation */
.blog-category-nav {
    padding: 1rem 0;
    background: white;
}

.blog-category-breadcrumb {
    padding: 1rem 0;
}

.blog-category-breadcrumb a {
    color: var(--accent-copper);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.blog-category-breadcrumb a:hover {
    color: var(--accent-copper-dark);
}

/* Articles List Section */
.blog-articles-list {
    padding: 6rem 0;
    background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
}

.blog-category-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-category-intro-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(184, 115, 51, 0.1);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 1.5rem;
}

.blog-category-intro-badge i {
    color: var(--accent-copper);
    margin-right: 0.5rem;
}

.blog-category-intro-badge span {
    color: var(--accent-copper);
    font-weight: 500;
    font-size: 0.9rem;
}

.blog-category-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

.blog-category-intro h2 .highlight {
    color: var(--accent-copper);
}

.blog-category-intro p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Therapy Articles Grid */
.therapy-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Therapy Article Card Styles (already in index.html <style> section) */
.therapy-article-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.therapy-article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.therapy-article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-navy), var(--accent-copper));
}

.therapy-article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #666;
}

.therapy-article-tag {
    background: rgba(184, 115, 51, 0.1);
    color: var(--accent-copper);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.8rem;
}

.therapy-article-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.therapy-article-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.therapy-article-title a:hover {
    color: var(--accent-copper);
}

.therapy-article-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.therapy-article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.therapy-article-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.therapy-article-author img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.therapy-article-btn {
    background: var(--primary-navy);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.therapy-article-btn:hover {
    background: var(--primary-navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 35, 126, 0.3);
}

/* Coming Soon Cards */
.coming-soon-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #dee2e6;
}

.coming-soon-card::before {
    background: linear-gradient(90deg, #dee2e6, #adb5bd);
}

.coming-soon-card .therapy-article-tag {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

.coming-soon-card .therapy-article-meta {
    color: #6c757d;
}

.coming-soon-card .therapy-article-title {
    color: #6c757d;
}

.coming-soon-card .therapy-article-excerpt {
    color: #6c757d;
}

.coming-soon-card .therapy-article-author {
    color: #6c757d;
}

.coming-soon-card .therapy-article-author img {
    opacity: 0.6;
}

.coming-soon-btn {
    background: #6c757d;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* CTA Card in Grid */
.therapy-cta-card {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
}

.therapy-cta-badge {
    background: rgba(184, 115, 51, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.therapy-cta-badge i {
    color: var(--accent-copper);
}

.therapy-cta-badge span {
    color: var(--accent-copper);
    font-weight: 500;
    font-size: 0.9rem;
}

.therapy-cta-card h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.therapy-cta-card p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.therapy-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.therapy-cta-btn-primary {
    background: var(--accent-copper);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.therapy-cta-btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Related Categories Section */
.blog-related-categories {
    padding: 6rem 0;
    background: white;
}

.blog-related-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-related-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(184, 115, 51, 0.1);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 1.5rem;
}

.blog-related-badge i {
    color: var(--accent-copper);
    margin-right: 0.5rem;
}

.blog-related-badge span {
    color: var(--accent-copper);
    font-weight: 500;
    font-size: 0.9rem;
}

.blog-related-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

.blog-related-intro h2 .highlight {
    color: var(--accent-copper);
}

.blog-related-intro p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.blog-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.blog-related-category-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.blog-related-category-card-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.blog-related-category-card-bar.copper {
    background: linear-gradient(90deg, var(--accent-copper), var(--primary-navy));
}

.blog-related-category-card-bar.navy {
    background: linear-gradient(90deg, var(--primary-navy), var(--accent-copper));
}

.blog-related-category-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.blog-related-category-icon.copper {
    background: linear-gradient(135deg, var(--accent-copper), #d4851f);
}

.blog-related-category-icon.navy {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-dark));
}

.blog-related-category-icon i {
    font-size: 2rem;
    color: white;
}

.blog-related-category-card h3 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--primary-navy);
}

.blog-related-category-divider {
    width: 60px;
    height: 3px;
    background: var(--accent-copper);
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.blog-related-category-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

.blog-related-category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.blog-related-category-tag {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-related-category-tag.copper {
    background: rgba(184, 115, 51, 0.1);
    color: var(--accent-copper);
}

.blog-related-category-tag.navy {
    background: rgba(26, 35, 126, 0.1);
    color: var(--primary-navy);
}

.blog-related-category-link {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
}

.blog-related-category-link.copper {
    background: var(--accent-copper);
    color: white;
}

.blog-related-category-link.navy {
    background: var(--primary-navy);
    color: white;
}

/* Responsive for Therapy Pages */
@media (max-width: 768px) {
    .therapy-articles-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-related-grid {
        grid-template-columns: 1fr;
    }
    
    .therapy-hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }
    
    .therapy-hero-btn-primary,
    .therapy-hero-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ==============================================
   THEMAS CATEGORY PAGE STYLES
   ============================================== */

/* Themas Hero Section (reuses therapy-hero classes) */
.themas-hero {
    min-height: 60vh;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
    position: relative;
    overflow: hidden;
}

/* Themas Articles Grid */
.thema-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Thema Article Card */
.thema-article-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.thema-article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.thema-article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-copper), var(--primary-navy));
}

/* Thema Icon Box */
.thema-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.thema-icon-box i {
    font-size: 1.8rem;
    color: white;
}

/* Icon Box Color Variants */
.thema-icon-box.red {
    background: linear-gradient(135deg, #ff6b6b, #c92a2a);
}

.thema-icon-box.orange {
    background: linear-gradient(135deg, #fd7e14, #e8590c);
}

.thema-icon-box.green {
    background: linear-gradient(135deg, #20c997, #12b886);
}

.thema-icon-box.pink {
    background: linear-gradient(135deg, #e83e8c, #c2255c);
}

.thema-icon-box.purple {
    background: linear-gradient(135deg, #6f42c1, #5a32a3);
}

.thema-icon-box.navy {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-dark));
}

.thema-icon-box.green-dark {
    background: linear-gradient(135deg, #28a745, #1e7e34);
}

.thema-icon-box.cyan {
    background: linear-gradient(135deg, #17a2b8, #138496);
}

.thema-icon-box.red-dark {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.thema-icon-box.yellow {
    background: linear-gradient(135deg, #ffc107, #e0a800);
}

.thema-icon-box.indigo {
    background: linear-gradient(135deg, #6610f2, #520dc2);
}

.thema-icon-box.blue {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.thema-icon-box.brown {
    background: linear-gradient(135deg, #795548, #5d4037);
}

.thema-icon-box.gray {
    background: linear-gradient(135deg, #607d8b, #455a64);
}

.thema-icon-box.green-light {
    background: linear-gradient(135deg, #4caf50, #388e3c);
}

.thema-icon-box.purple-dark {
    background: linear-gradient(135deg, #9c27b0, #7b1fa2);
}

.thema-icon-box.orange-dark {
    background: linear-gradient(135deg, #ff9800, #f57c00);
}

.thema-icon-box.red-orange {
    background: linear-gradient(135deg, #ff5722, #d84315);
}

/* Thema Article Meta */
.thema-article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #666;
}

.thema-article-tag {
    background: rgba(184, 115, 51, 0.1);
    color: var(--accent-copper);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.8rem;
}

/* Thema Article Title */
.thema-article-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Thema Article Excerpt */
.thema-article-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Thema Topics */
.thema-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.thema-topic-tag {
    background: rgba(26, 35, 126, 0.05);
    color: var(--primary-navy);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Thema Article Footer */
.thema-article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.thema-article-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.thema-article-author img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

/* Thema Article Button */
.thema-article-btn {
    background: var(--accent-copper);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.thema-article-btn:hover {
    background: #d4851f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(184, 115, 51, 0.3);
}

/* Coming Soon Styles for Themas */
.thema-article-card.coming-soon-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #dee2e6;
}

.thema-article-card.coming-soon-card::before {
    background: linear-gradient(90deg, #dee2e6, #adb5bd);
}

.thema-article-card.coming-soon-card .thema-article-tag {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

.thema-article-card.coming-soon-card .thema-article-meta {
    color: #6c757d;
}

.thema-article-card.coming-soon-card .thema-article-title {
    color: #6c757d;
}

.thema-article-card.coming-soon-card .thema-article-excerpt {
    color: #6c757d;
}

.thema-article-card.coming-soon-card .thema-article-author {
    color: #6c757d;
}

.thema-article-card.coming-soon-card .thema-article-author img {
    opacity: 0.6;
}

/* Thema CTA Card */
.thema-cta-card {
    background: linear-gradient(135deg, var(--accent-copper), #d4851f);
    color: white;
    text-align: center;
}

.thema-cta-badge {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.thema-cta-badge i {
    color: white;
}

.thema-cta-badge span {
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
}

.thema-cta-card h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.thema-cta-card p {
    color: rgba(255,255,255,0.95);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.thema-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.thema-cta-btn-primary {
    background: white;
    color: var(--accent-copper);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.thema-cta-btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Responsive for Thema Pages */
@media (max-width: 768px) {
    .thema-articles-grid {
        grid-template-columns: 1fr;
    }
}
