:root {
    --background-primary: #F8F8F6;
    --background-secondary: #FFFFFF;
    --text-primary-light: #222222;
    --text-secondary-light: #666666;
    --text-primary-dark: #FFFFFF;
    --text-secondary-dark: #E4E4E4;
    --accent-primary: #2F5D7C;
    --accent-secondary: #21465E;
    --border-color: #E4E4E4;
    --highlight-gold: #C68A2D;
    --ambient-glow-color: rgba(47, 93, 124, 0.08);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-primary);
    color: var(--text-primary-light);
}

.text-muted {
    color: #666666 !important;
}

.adj-section {
    padding: 120px 0;
    position: relative;
}

@media (max-width: 991px) {
    .adj-section {
        padding: 60px 0;
    }
}

.adj-border {
    border: 1px solid var(--border-color);
}

.adj-border-gold {
    border: 1px solid var(--highlight-gold);
}

.adj-glow-bg {
    background: radial-gradient(circle at 50% 50%, var(--ambient-glow-color) 0%, transparent 70%);
}

.adj-card {
    background-color: var(--background-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02), 0 10px 40px rgba(47, 93, 124, 0.04);
}

.adj-card-large {
    border-radius: 16px;
}

.adj-btn-primary {
    background-color: var(--accent-primary);
    color: var(--text-primary-dark);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(47, 93, 124, 0.25);
    display: inline-block;
    text-decoration: none;
}

.adj-btn-primary:hover {
    background-color: var(--accent-secondary);
    color: var(--text-primary-dark);
    box-shadow: 0 4px 20px rgba(47, 93, 124, 0.4);
}

.adj-btn-secondary {
    background-color: var(--background-secondary);
    color: var(--accent-primary);
    border: 1px solid var(--accent-primary);
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
}

.adj-btn-secondary:hover {
    background-color: var(--background-primary);
    color: var(--accent-primary);
}

/* ===== header ===== */
.adjacency-header {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E4E4E4;
    z-index: 1030;
    position: relative;
}

.adjacency-header .container-lg {
    position: relative;
}

.adjacency-header .navbar-brand-custom {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #222222;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
}

.adjacency-header .header-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.adjacency-header .brand-text {
    color: #222222;
}

.adjacency-header .nav-link-custom {
    color: #666666;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 0;
}

.adjacency-header .nav-link-custom:hover,
.adjacency-header .nav-link-custom.active {
    color: #C68A2D;
}

.adjacency-header .nav-cta-btn {
    background-color: #2F5D7C;
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 14px rgba(47, 93, 124, 0.25);
}

.adjacency-header .nav-cta-btn:hover,
.adjacency-header .nav-cta-btn.active {
    background-color: #21465E;
    color: #FFFFFF;
}

.adjacency-header .navbar-toggler-icon-custom {
    width: 24px;
    height: 24px;
    color: #222222;
}

.adjacency-header .navbar-toggler {
    border: 1px solid #E4E4E4;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    background-color: #F8F8F6;
}

@media (min-width: 992px) {
    .adjacency-header .navbar-brand-custom {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .adjacency-header .navbar-collapse {
        width: 100%;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .adjacency-header .nav-link-custom {
        font-size: 0.85rem;
    }

    .adjacency-header .nav-cta-btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 991.98px) {
    .adjacency-header .navbar-collapse {
        background-color: #FFFFFF;
        border-top: 1px solid #E4E4E4;
        margin-top: 1rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .adjacency-header .nav-link-custom {
        font-size: 0.8rem;
        width: 100%;
        display: block;
    }

    .adjacency-header .nav-cta-btn {
        font-size: 0.8rem;
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }
}

/* ===== hero ===== */
.adjacency-hero-section {
    background-color: #F8F8F6;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.adjacency-hero-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
    background: radial-gradient(circle, rgba(47, 93, 124, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.adjacency-hero-section .hero-content-wrapper {
    text-align: center;
    margin-bottom: 2rem;
}

.adjacency-hero-section .hero-badge {
    display: inline-block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #C68A2D;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.adjacency-hero-section .hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    color: #222222;
    margin-bottom: 1.25rem;
}

.adjacency-hero-section .hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4A4A4A;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.adjacency-hero-section .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.adjacency-hero-section .btn-hero-primary {
    background-color: #2F5D7C;
    color: #FFFFFF;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 14px rgba(47, 93, 124, 0.25);
    text-decoration: none;
}

.adjacency-hero-section .btn-hero-primary:hover {
    background-color: #21465E;
    color: #FFFFFF;
}

.adjacency-hero-section .btn-hero-secondary {
    background-color: #FFFFFF;
    color: #2F5D7C;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    border: 1px solid #2F5D7C;
    text-decoration: none;
}

.adjacency-hero-section .btn-hero-secondary:hover {
    background-color: #F8F8F6;
    color: #2F5D7C;
}

.adjacency-hero-section .hero-quick-checklist {
    border-top: 1px solid #E4E4E4;
    padding-top: 1.5rem;
}

.adjacency-hero-section .checklist-item {
    color: #4A4A4A;
}

.adjacency-hero-section .checklist-icon {
    color: #C68A2D;
    flex-shrink: 0;
}

.adjacency-hero-section .checklist-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.adjacency-hero-section .hero-visual-wrapper {
    background: #FFFFFF;
    border: 1px solid #E4E4E4;
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02), 0 10px 40px rgba(47, 93, 124, 0.04);
}

.adjacency-hero-section .blueprint-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 220px;
    margin-bottom: 1.25rem;
    border: 1px solid #E4E4E4;
}

.adjacency-hero-section .blueprint-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.adjacency-hero-section .blueprint-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
}

.adjacency-hero-section .matrix-widget {
    background: #FFFFFF;
}

.adjacency-hero-section .matrix-header {
    margin-bottom: 1rem;
}

.adjacency-hero-section .matrix-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #222222;
    margin-bottom: 0.25rem;
}

.adjacency-hero-section .matrix-desc {
    font-size: 0.85rem;
    color: #666666;
    margin-bottom: 0;
}

.adjacency-hero-section .matrix-tabs {
    margin-bottom: 1.25rem;
}

.adjacency-hero-section .matrix-tab-btn {
    background-color: #F8F8F6;
    border: 1px solid #E4E4E4;
    color: #4A4A4A;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
}

.adjacency-hero-section .matrix-tab-btn.active {
    background-color: #2F5D7C;
    border-color: #2F5D7C;
    color: #FFFFFF;
}

.adjacency-hero-section .display-card {
    background-color: #F8F8F6;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    height: 100%;
}

.adjacency-hero-section .display-card-near {
    border-left: 4px solid #2F5D7C;
}

.adjacency-hero-section .display-card-conflict {
    border-left: 4px solid #C68A2D;
}

.adjacency-hero-section .display-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #666666;
    margin-bottom: 0.25rem;
}

.adjacency-hero-section .display-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #222222;
}

@media (min-width: 576px) {
    .adjacency-hero-section .hero-actions {
        flex-direction: row;
    }
}

@media (min-width: 992px) {
    .adjacency-hero-section {
        padding: 100px 0;
    }

    .adjacency-hero-section .hero-content-wrapper {
        text-align: center;
        margin-bottom: 0;
        padding-right: 0;
    }

    .adjacency-hero-section .hero-title {
        font-size: 3.25rem;
    }

    .adjacency-hero-section .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
        font-size: 1.15rem;
    }

    .adjacency-hero-section .hero-actions {
        justify-content: center;
    }

    .adjacency-hero-section .blueprint-image-container {
        height: 260px;
    }
}

@media (max-width: 767.98px) {
    .adjacency-hero-section h1 {
        font-size: 18px !important;
        hyphens: auto;
    }

    .adjacency-hero-section h2 {
        font-size: 16px !important;
        hyphens: auto;
    }

    .adjacency-hero-section h3 {
        font-size: 14px !important;
        hyphens: auto;
    }
}

/* ===== core-resources ===== */
.core-resources-block {
    background-color: #F8F8F6;
    padding-top: 120px;
    padding-bottom: 120px;
}

.core-resources-block .section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #222222;
    letter-spacing: -0.02em;
}

.core-resources-block .section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.6;
}

.core-resources-block .btn-filter {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    border: 1px solid #2F5D7C;
    background-color: #FFFFFF;
    color: #2F5D7C;
    cursor: pointer;
}

.core-resources-block .btn-filter:hover,
.core-resources-block .btn-filter.active {
    background-color: #2F5D7C;
    color: #FFFFFF;
    border-color: #2F5D7C;
}

.core-resources-block .resource-card {
    background-color: #FFFFFF;
    border: 1px solid #E4E4E4;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02), 0 10px 40px rgba(47, 93, 124, 0.04);
}

.core-resources-block .resource-card:hover {
    border-color: #C68A2D;
}

.core-resources-block .card-img-link {
    display: block;
    height: 200px;
    overflow: hidden;
}

.core-resources-block .card-img-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.core-resources-block .badge-category {
    display: inline-block;
    align-self: start;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #C68A2D;
}

.core-resources-block .card-title-link {
    text-decoration: none;
}

.core-resources-block .card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: #222222;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.core-resources-block .card-title:hover {
    color: #2F5D7C;
}

.core-resources-block .card-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.5;
}

.core-resources-block .btn-card-action {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    background-color: #2F5D7C;
    color: #FFFFFF;
    border: none;
    box-shadow: 0 4px 14px rgba(47, 93, 124, 0.25);
    text-align: center;
    display: block;
    text-decoration: none;
}

.core-resources-block .btn-card-action:hover {
    background-color: #21465E;
    color: #FFFFFF;
}

@media (max-width: 767.98px) {
    .core-resources-block {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .core-resources-block .section-title {
        font-size: 1.75rem;
    }
}

/* ===== common-mistakes ===== */
.common-mistakes-section {
    position: relative;
    background-color: #F8F8F6;
    padding: 120px 0;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

@media (max-width: 767.98px) {
    .common-mistakes-section {
        padding: 60px 0;
    }
}

.common-mistakes-section .ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(47, 93, 124, 0.08) 0%, rgba(248, 248, 246, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.common-mistakes-section .container {
    position: relative;
    z-index: 2;
}

.common-mistakes-section .section-badge {
    display: inline-block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #C68A2D;
    margin-bottom: 12px;
}

.common-mistakes-section .section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #222222;
    margin-bottom: 16px;
    line-height: 1.25;
}

@media (max-width: 767.98px) {
    .common-mistakes-section .section-title {
        font-size: 1.75rem;
    }
}

.common-mistakes-section .section-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666666;
}

.common-mistakes-section .mistake-card {
    background-color: #FFFFFF;
    border: 1px solid #E4E4E4;
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02), 0 10px 40px rgba(47, 93, 124, 0.04);
}

.common-mistakes-section .mistake-card:hover {
    border-color: #C68A2D;
}

.common-mistakes-section .icon-wrapper {
    width: 40px;
    height: 40px;
    background-color: rgba(47, 93, 124, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2F5D7C;
    margin-right: 12px;
}

.common-mistakes-section .mistake-svg {
    width: 20px;
    height: 20px;
}

.common-mistakes-section .mistake-severity {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #C68A2D;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.common-mistakes-section .mistake-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.common-mistakes-section .mistake-title-link {
    color: #222222;
    text-decoration: none;
}

.common-mistakes-section .mistake-title-link:hover {
    color: #2F5D7C;
}

.common-mistakes-section .mistake-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 20px;
}

.common-mistakes-section .cost-box {
    background-color: #F8F8F6;
    border-left: 3px solid #2F5D7C;
    padding: 16px;
    border-radius: 0 4px 4px 0;
    margin-bottom: 24px;
}

.common-mistakes-section .cost-label {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #2F5D7C;
    margin-bottom: 4px;
    letter-spacing: 0.05em;
}

.common-mistakes-section .cost-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #222222;
    margin: 0;
}

.common-mistakes-section .action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #2F5D7C;
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 14px rgba(47, 93, 124, 0.25);
}

.common-mistakes-section .action-btn:hover {
    background-color: #21465E;
    color: #FFFFFF;
}

.common-mistakes-section .filter-btn {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 30px;
    border: 1px solid #2F5D7C;
    background-color: #FFFFFF;
    color: #2F5D7C;
    cursor: pointer;
}

.common-mistakes-section .filter-btn:hover {
    background-color: #F8F8F6;
}

.common-mistakes-section .filter-btn.active {
    background-color: #2F5D7C;
    color: #FFFFFF;
}

/* ===== who-will-work ===== */
.adjacency-team-section {
    background-color: #F8F8F6;
    padding: 120px 0;
}

.adjacency-team-section .adjacency-team-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #C68A2D;
    text-transform: uppercase;
}

.adjacency-team-section .adjacency-team-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #222222;
}

.adjacency-team-section .adjacency-team-lead {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #666666;
}

.adjacency-team-section .adjacency-team-card {
    background-color: #FFFFFF;
    border: 1px solid #E4E4E4;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02), 0 10px 40px rgba(47, 93, 124, 0.04);
    height: 100%;
    box-sizing: border-box;
}

.adjacency-team-section .adjacency-team-card:hover {
    border-color: #C68A2D;
}

.adjacency-team-section .adjacency-team-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #222222;
}

.adjacency-team-section .adjacency-team-role {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #C68A2D;
}

.adjacency-team-section .adjacency-team-bio {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666666;
}

.adjacency-team-section .adjacency-team-badge {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #2F5D7C;
    background-color: rgba(47, 93, 124, 0.08);
    padding: 6px 12px;
    border-radius: 20px;
}

@media (max-width: 767.98px) {
    .adjacency-team-section {
        padding: 60px 0;
    }

    .adjacency-team-section .adjacency-team-title {
        font-size: 16px !important;
        hyphens: auto;
    }

    .adjacency-team-section .adjacency-team-name {
        font-size: 14px !important;
        hyphens: auto;
    }

    .adjacency-team-section .adjacency-team-lead,
    .adjacency-team-section .adjacency-team-bio {
        font-size: 0.875rem;
    }
}

/* ===== work-formats ===== */
.work-formats-section {
    background-color: #F8F8F6;
    padding: 120px 0;
    font-family: 'Inter', sans-serif;
    color: #222222;
    position: relative;
    overflow: hidden;
}

@media (max-width: 767px) {
    .work-formats-section {
        padding: 60px 0;
    }
}

.work-formats-section::before {
    content: "";
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(47, 93, 124, 0.06) 0%, rgba(248, 248, 246, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.work-formats-section .container {
    position: relative;
    z-index: 2;
}

.work-formats-section__badge {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #C68A2D;
    text-transform: uppercase;
    display: inline-block;
}

.work-formats-section__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #222222;
}

@media (max-width: 767px) {
    .work-formats-section__title {
        font-size: 1.5rem;
    }
}

.work-formats-section__subtitle {
    font-size: 1.1rem;
    color: #666666;
    max-width: 600px;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .work-formats-section__subtitle {
        font-size: 0.95rem;
    }
}

.work-formats-section__card {
    background-color: #FFFFFF;
    border: 1px solid #E4E4E4;
    border-radius: 8px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02), 0 10px 40px rgba(47, 93, 124, 0.04);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: none !important;
}

.work-formats-section__card:hover {
    border-color: #C68A2D;
    box-shadow: 0 4px 24px rgba(198, 138, 45, 0.1);
}

.work-formats-section__card.is-active {
    border-color: #2F5D7C;
    border-width: 2px;
    padding: calc(2.5rem - 1px) calc(2rem - 1px);
    box-shadow: 0 4px 24px rgba(47, 93, 124, 0.15);
}

.work-formats-section__card-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-color: rgba(47, 93, 124, 0.08);
    color: #2F5D7C;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.work-formats-section__card-icon svg {
    width: 24px;
    height: 24px;
}

.work-formats-section__card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #222222;
    margin-bottom: 1rem;
}

@media (max-width: 767px) {
    .work-formats-section__card-title {
        font-size: 1.2rem;
    }
}

.work-formats-section__card-desc {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.work-formats-section__card-footer {
    margin-top: auto;
}

.work-formats-section__select-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #FFFFFF;
    color: #2F5D7C;
    border: 1px solid #2F5D7C;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: none !important;
}

.work-formats-section__select-btn:hover {
    background-color: #F8F8F6;
    color: #2F5D7C;
}

.work-formats-section__card.is-active .work-formats-section__select-btn {
    background-color: #2F5D7C;
    color: #FFFFFF;
    border-color: #2F5D7C;
}

.work-formats-section__form-container {
    background-color: #FFFFFF;
    border: 1px solid #E4E4E4;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02), 0 10px 40px rgba(47, 93, 124, 0.04);
    margin-top: 4rem;
}

@media (max-width: 767px) {
    .work-formats-section__form-container {
        padding: 1.5rem;
        margin-top: 2rem;
    }
}

.work-formats-section__form-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #222222;
    margin-bottom: 1rem;
}

@media (max-width: 767px) {
    .work-formats-section__form-title {
        font-size: 1.4rem;
    }
}

.work-formats-section__form-desc {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
}

.work-formats-section__features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.work-formats-section__feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.work-formats-section__feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 50%;
    background-color: rgba(198, 138, 45, 0.12);
}

.work-formats-section__feature-icon svg {
    width: 18px;
    height: 18px;
    display: block;
}

.work-formats-section__feature-text {
    font-size: 0.95rem;
    color: #222222;
    font-weight: 500;
}

.work-formats-section__form-box {
    background-color: #F8F8F6;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #E4E4E4;
}

@media (max-width: 767px) {
    .work-formats-section__form-box {
        padding: 1.25rem;
    }
}

.work-formats-section__label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #222222;
    margin-bottom: 0.5rem;
    display: block;
}

.work-formats-section__input {
    background-color: #FFFFFF !important;
    border: 1px solid #E4E4E4 !important;
    color: #222222 !important;
    font-size: 0.95rem !important;
    padding: 0.75rem 1rem !important;
    border-radius: 6px !important;
    box-shadow: none !important;
}

.work-formats-section__input:focus {
    border-color: #2F5D7C !important;
    outline: none !important;
}

.work-formats-section__input::placeholder {
    color: #888888 !important;
    opacity: 1 !important;
}

.work-formats-section__submit-btn {
    background-color: #2F5D7C !important;
    color: #FFFFFF !important;
    border: none !important;
    padding: 0.85rem 1.5rem !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    border-radius: 6px !important;
    box-shadow: 0 4px 14px rgba(47, 93, 124, 0.25) !important;
    cursor: pointer !important;
    transition: none !important;
}

.work-formats-section__submit-btn:hover {
    background-color: #21465E !important;
}

/* ===== after-start ===== */
.adjacency-timeline {
    background-color: #F8F8F6;
    padding: 120px 0;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 767.98px) {
    .adjacency-timeline {
        padding: 60px 0;
    }
}

.adjacency-timeline .js-timeline-btn {
    background-color: #FFFFFF;
    border: 1px solid #E4E4E4;
    border-radius: 8px;
    cursor: pointer;
    outline: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: none;
}

.adjacency-timeline .js-timeline-btn:hover {
    background-color: #F8F8F6;
    border-color: #C68A2D;
}

.adjacency-timeline .js-timeline-btn.active-tab {
    background-color: #2F5D7C;
    border-color: #2F5D7C;
    box-shadow: 0 4px 14px rgba(47, 93, 124, 0.25);
}

.adjacency-timeline .step-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #C68A2D;
}

.adjacency-timeline .active-tab .step-num {
    color: #FFFFFF;
}

.adjacency-timeline .step-time {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #666666;
    letter-spacing: 0.05em;
}

.adjacency-timeline .active-tab .step-time {
    color: rgba(255, 255, 255, 0.8);
}

.adjacency-timeline .step-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #222222;
}

.adjacency-timeline .active-tab .step-title {
    color: #FFFFFF;
}

.adjacency-timeline .js-timeline-panel {
    background-color: #FFFFFF;
    border: 1px solid #E4E4E4;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02), 0 10px 40px rgba(47, 93, 124, 0.04);
}

.adjacency-timeline .icon-wrapper {
    background-color: rgba(47, 93, 124, 0.08);
    color: #2F5D7C;
    padding: 10px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.adjacency-timeline .icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.adjacency-timeline .text-gold {
    color: #C68A2D;
}

/* ===== tariff ===== */
.adjacency-pricing {
    background-color: #F8F8F6;
    font-family: 'Inter', sans-serif;
    color: #222222;
}

.adjacency-pricing .pricing-badge {
    color: #C68A2D;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}

.adjacency-pricing .pricing-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #222222;
    font-size: 2.25rem;
    font-weight: 700;
}

.adjacency-pricing .pricing-subtitle {
    color: #666666;
    font-size: 1.1rem;
}

.adjacency-pricing .pricing-card {
    background-color: #FFFFFF;
    border: 1px solid #E4E4E4;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    cursor: pointer;
}

.adjacency-pricing .pricing-card:hover {
    border-color: #C68A2D;
}

.adjacency-pricing .pricing-card.active {
    border-color: #2F5D7C;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02), 0 10px 40px rgba(47, 93, 124, 0.06);
    background-color: #FFFFFF;
}

.adjacency-pricing .pricing-card.recommended {
    border-color: #C68A2D;
}

.adjacency-pricing .pricing-card.recommended.active {
    border-color: #C68A2D;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02), 0 10px 40px rgba(198, 138, 45, 0.08);
}

.adjacency-pricing .recommended-badge {
    background-color: #C68A2D;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    text-transform: uppercase;
    top: -15px !important;
    right: 20px !important;
}

.adjacency-pricing .pricing-plan-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #222222;
    font-size: 1.35rem;
    font-weight: 600;
}

.adjacency-pricing .pricing-price-wrap {
    color: #2F5D7C;
}

.adjacency-pricing .pricing-currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
}

.adjacency-pricing .pricing-amount {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.adjacency-pricing .pricing-plan-desc {
    color: #666666;
    font-size: 0.95rem;
}

.adjacency-pricing .pricing-features {
    color: #222222;
    font-size: 0.95rem;
}

.adjacency-pricing .feature-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #2F5D7C;
    flex-shrink: 0;
}

.adjacency-pricing .pricing-card.recommended .feature-icon {
    color: #C68A2D;
}

.adjacency-pricing .pricing-select-btn {
    background-color: #FFFFFF;
    border: 1px solid #2F5D7C;
    color: #2F5D7C;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
}

.adjacency-pricing .pricing-select-btn:hover,
.adjacency-pricing .pricing-card.active .pricing-select-btn {
    background-color: #2F5D7C;
    color: #FFFFFF;
    border-color: #2F5D7C;
}

.adjacency-pricing .pricing-card.recommended .pricing-select-btn {
    border-color: #C68A2D;
    color: #C68A2D;
}

.adjacency-pricing .pricing-card.recommended.active .pricing-select-btn,
.adjacency-pricing .pricing-card.recommended:hover .pricing-select-btn {
    background-color: #C68A2D;
    color: #FFFFFF;
    border-color: #C68A2D;
}

.adjacency-pricing .checkout-box {
    background-color: #FFFFFF;
    border: 1px solid #E4E4E4;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02), 0 10px 40px rgba(47, 93, 124, 0.04);
}

.adjacency-pricing .checkout-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #222222;
    font-size: 1.5rem;
    font-weight: 600;
}

.adjacency-pricing .checkout-subtitle {
    color: #666666;
    font-size: 1rem;
}

.adjacency-pricing #js-selected-plan-display {
    color: #2F5D7C;
    font-weight: 700;
}

.adjacency-pricing .form-control {
    background-color: #FFFFFF;
    border: 1px solid #E4E4E4;
    color: #222222;
    padding: 0.75rem 1rem;
    border-radius: 8px 0 0 8px;
}

.adjacency-pricing .form-control:focus {
    border-color: #2F5D7C;
    box-shadow: none;
    color: #222222;
}

.adjacency-pricing .form-control::placeholder {
    color: #999999;
    opacity: 1;
}

.adjacency-pricing .btn-primary {
    background-color: #2F5D7C;
    border: none;
    color: #FFFFFF;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 4px 14px rgba(47, 93, 124, 0.25);
}

.adjacency-pricing .btn-primary:hover {
    background-color: #21465E;
}

/* ===== cases-grid ===== */
.adjacency-cases {
    background-color: #F8F8F6;
    padding: 120px 0;
}

@media (max-width: 767.98px) {
    .adjacency-cases {
        padding: 60px 0;
    }
}

.adjacency-cases .cases-badge {
    color: #C68A2D;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}

.adjacency-cases .cases-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #222222;
    letter-spacing: -0.02em;
}

@media (max-width: 767.98px) {
    .adjacency-cases .cases-title {
        font-size: 16px !important;
    }
}

.adjacency-cases .cases-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #666666;
}

.adjacency-cases .search-wrapper .form-control {
    background-color: #FFFFFF;
    border: 1px solid #E4E4E4;
    border-radius: 8px;
    color: #222222;
    padding: 0.6rem 1rem;
    font-family: 'Inter', sans-serif;
}

.adjacency-cases .search-wrapper .form-control:focus {
    border-color: #2F5D7C;
    box-shadow: none;
    outline: none;
}

.adjacency-cases .search-wrapper .form-control::placeholder {
    color: #999999;
}

.adjacency-cases .filter-btn {
    background-color: #FFFFFF;
    border: 1px solid #E4E4E4;
    color: #222222;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
}

.adjacency-cases .filter-btn.active {
    background-color: #2F5D7C;
    border-color: #2F5D7C;
    color: #FFFFFF;
}

.adjacency-cases .filter-btn:hover {
    border-color: #C68A2D;
    color: #222222;
}

.adjacency-cases .filter-btn.active:hover {
    color: #FFFFFF;
    border-color: #2F5D7C;
}

.adjacency-cases .case-card {
    background-color: #FFFFFF;
    border: 1px solid #E4E4E4;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02), 0 10px 40px rgba(47, 93, 124, 0.04);
    overflow: hidden;
}

.adjacency-cases .case-card:hover {
    border-color: #C68A2D;
}

.adjacency-cases .case-image-link {
    height: 200px;
    overflow: hidden;
    background-color: #E4E4E4;
}

.adjacency-cases .case-img {
    height: 100%;
    object-fit: cover;
}

.adjacency-cases .case-tag {
    color: #C68A2D;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.adjacency-cases .case-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
}

@media (max-width: 767.98px) {
    .adjacency-cases .case-card-title {
        font-size: 14px !important;
    }
}

.adjacency-cases .case-title-link {
    color: #222222;
    text-decoration: none;
}

.adjacency-cases .case-title-link:hover {
    color: #C68A2D;
}

.adjacency-cases .case-excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666666;
}

.adjacency-cases .case-btn {
    background-color: #2F5D7C;
    color: #FFFFFF;
    border: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    box-shadow: 0 4px 14px rgba(47, 93, 124, 0.25);
    text-align: center;
    text-decoration: none;
}

.adjacency-cases .case-btn:hover {
    background-color: #21465E;
    color: #FFFFFF;
}

/* ===== matrix-preview ===== */
.adjacency-matrix-section {
    background-color: #F8F8F6;
    font-family: 'Inter', sans-serif;
    color: #222222;
}

.adjacency-matrix-section .matrix-tag {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #C68A2D;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.adjacency-matrix-section .matrix-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #222222;
    font-size: 2.25rem;
}

.adjacency-matrix-section .matrix-subtitle {
    color: #666666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.adjacency-matrix-section .matrix-filter-btn {
    background-color: #FFFFFF;
    border: 1px solid #E4E4E4;
    color: #666666;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
}

.adjacency-matrix-section .matrix-filter-btn.active {
    background-color: #2F5D7C;
    border-color: #2F5D7C;
    color: #FFFFFF;
}

.adjacency-matrix-section .matrix-filter-btn:hover {
    border-color: #C68A2D;
}

.adjacency-matrix-section .matrix-table-container {
    background-color: #FFFFFF;
    border: 1px solid #E4E4E4;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02), 0 10px 40px rgba(47, 93, 124, 0.04);
}

.adjacency-matrix-section .matrix-table {
    margin: 0;
}

.adjacency-matrix-section .matrix-table th {
    border-bottom: 2px solid #E4E4E4;
    color: #222222;
    font-weight: 600;
    padding: 1rem;
    font-size: 0.95rem;
}

.adjacency-matrix-section .matrix-table td {
    border-bottom: 1px solid #E4E4E4;
    padding: 1.2rem 1rem;
    color: #222222;
}

.adjacency-matrix-section .matrix-table tbody tr {
    cursor: pointer;
}

.adjacency-matrix-section .matrix-table tbody tr:hover {
    background-color: #F8F8F6;
}

.adjacency-matrix-section .matrix-table tbody tr.selected-row {
    background-color: rgba(47, 93, 124, 0.05);
}

.adjacency-matrix-section .space-name {
    color: #2F5D7C;
    font-size: 1.05rem;
}

.adjacency-matrix-section .badge-near {
    background-color: rgba(47, 93, 124, 0.1);
    color: #2F5D7C;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.adjacency-matrix-section .text-danger-custom {
    color: #C68A2D;
    font-weight: 500;
    font-size: 0.9rem;
}

.adjacency-matrix-section .matrix-select-btn {
    background-color: #FFFFFF;
    color: #2F5D7C;
    border: 1px solid #2F5D7C;
    padding: 0.35rem 0.85rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
}

.adjacency-matrix-section .matrix-select-btn:hover {
    background-color: #F8F8F6;
}

.adjacency-matrix-section .matrix-detail-card {
    position: relative;
    background-color: #FFFFFF;
    border: 1px solid #E4E4E4;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02), 0 10px 40px rgba(47, 93, 124, 0.04);
    height: 100%;
}

.adjacency-matrix-section .card-glow-element {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #C68A2D;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.adjacency-matrix-section .details-icon-svg {
    width: 24px;
    height: 24px;
}

.adjacency-matrix-section .detail-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #222222;
    font-size: 1.5rem;
}

.adjacency-matrix-section .detail-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #666666;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.adjacency-matrix-section .detail-val {
    font-size: 0.95rem;
    color: #222222;
    margin: 0;
    line-height: 1.5;
}

.adjacency-matrix-section .text-danger-label {
    color: #C68A2D;
}

.adjacency-matrix-section .text-danger-val {
    color: #222222;
}

.adjacency-matrix-section .text-gold-label {
    color: #2F5D7C;
}

@media (max-width: 768px) {
    .adjacency-matrix-section .matrix-title {
        font-size: 1.75rem;
    }

    .adjacency-matrix-section .matrix-subtitle {
        font-size: 1rem;
    }
}

/* ===== footer ===== */
.adjacency-footer {
    background-color: #FFFFFF;
    border-top: 1px solid #E4E4E4;
    font-family: 'Inter', sans-serif;
}

.adjacency-footer__disclaimer {
    background-color: #F8F8F6;
    border: 1px solid #E4E4E4;
    border-left: 4px solid #C68A2D;
    border-radius: 8px;
}

.adjacency-footer__disclaimer-icon {
    color: #C68A2D;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.adjacency-footer__svg {
    width: 24px;
    height: 24px;
}

.adjacency-footer__disclaimer-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #222222;
    margin: 0;
}

.adjacency-footer__disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666666;
}

.adjacency-footer__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #222222;
}

.adjacency-footer__text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666666;
}

.adjacency-footer__text strong {
    color: #222222;
}

.adjacency-footer__link {
    color: #2F5D7C;
    text-decoration: none;
    font-size: 0.95rem;
}

.adjacency-footer__link:hover {
    color: #C68A2D;
    text-decoration: none;
}

.adjacency-footer__list {
    padding-left: 0;
}

.adjacency-footer__bottom {
    border-top: 1px solid #E4E4E4;
}

.adjacency-footer__copyright {
    font-size: 0.85rem;
    color: #666666;
}

/* ===== PAGE: about ===== */
.about-content-section {
  background-color: #F8F8F6;
  font-family: 'Inter', sans-serif;
}
.about-content-section h2,
.about-content-section h3,
.about-content-section h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #222222;
}
.about-content-section .bg-accent-dark {
  background-color: #2F5D7C !important;
}
.about-content-section .text-accent-dark {
  color: #2F5D7C !important;
}
.about-content-section .bg-gold {
  background-color: #C68A2D !important;
}
.about-content-section .border-blueprint {
  border: 1px solid #E4E4E4;
  background-color: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02), 0 10px 40px rgba(47, 93, 124, 0.04);
}
.about-content-section .border-blueprint-card {
  border: 1px solid #E4E4E4;
  border-radius: 8px;
}
.about-content-section .bg-light-blueprint {
  background-color: rgba(47, 93, 124, 0.03);
}
.about-content-section .badge-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.about-content-section .btn-custom {
  background-color: #2F5D7C;
  border-color: #2F5D7C;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(47, 93, 124, 0.25);
  border-radius: 8px;
}
.about-content-section .btn-custom:hover {
  background-color: #21465E;
  border-color: #21465E;
  color: #FFFFFF;
}
.about-content-section .form-select {
  border: 1px solid #E4E4E4;
  background-color: #FFFFFF;
  color: #222222;
  border-radius: 8px;
}
.about-content-section .form-select:focus {
  border-color: #2F5D7C;
  box-shadow: 0 0 0 3px rgba(47, 93, 124, 0.15);
}
.about-content-section .about-img-container img {
  object-fit: cover;
  border-radius: 8px;
  max-height: 400px;
}

/* ===== PAGE: guides ===== */
.guides-grid-section {
  background-color: #F8F8F6;
  font-family: 'Inter', sans-serif;
}

.guides-grid-section .text-gold {
  color: #C68A2D;
  letter-spacing: 0.1em;
}

.guides-grid-section h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #222222;
}

.guides-grid-section .controls-panel {
  background-color: #FFFFFF;
  border: 1px solid #E4E4E4;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02), 0 10px 40px rgba(47, 93, 124, 0.04);
}

.guides-grid-section .form-control,
.guides-grid-section .form-select {
  border: 1px solid #E4E4E4;
  background-color: #FFFFFF;
  color: #222222;
  border-radius: 6px;
  font-size: 0.95rem;
  padding: 0.6rem 1rem;
}

.guides-grid-section .form-control:focus,
.guides-grid-section .form-select:focus {
  outline: none;
  border-color: #2F5D7C;
  box-shadow: none;
}

.guides-grid-section .btn-custom {
  background-color: #FFFFFF;
  color: #2F5D7C;
  border: 1px solid #2F5D7C;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

.guides-grid-section .btn-custom:hover {
  background-color: #F8F8F6;
  border-color: #2F5D7C;
  color: #2F5D7C;
}

.guides-grid-section .btn-custom-active {
  background-color: #2F5D7C !important;
  color: #FFFFFF !important;
  border-color: #2F5D7C !important;
}

.guides-grid-section .guide-card {
  background-color: #FFFFFF;
  border: 1px solid #E4E4E4;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02), 0 10px 40px rgba(47, 93, 124, 0.04);
}

.guides-grid-section .card-img-link {
  display: block;
  position: relative;
  overflow: hidden;
  height: 200px;
}

.guides-grid-section .card-img-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guides-grid-section .badge-custom {
  background-color: rgba(47, 93, 124, 0.1);
  color: #2F5D7C;
  padding: 0.25rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
}

.guides-grid-section .card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

.guides-grid-section .card-title a {
  color: #222222;
}

.guides-grid-section .card-title a:hover {
  color: #C68A2D;
}

.guides-grid-section .btn-card-action {
  background-color: #2F5D7C;
  color: #FFFFFF;
  border: none;
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(47, 93, 124, 0.15);
}

.guides-grid-section .btn-card-action:hover {
  background-color: #21465E;
  color: #FFFFFF;
}

.guides-grid-section .pagination-btn {
  border: 1px solid #E4E4E4;
  background-color: #FFFFFF;
  color: #2F5D7C;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-size: 0.9rem;
}

.guides-grid-section .pagination-btn.active {
  background-color: #2F5D7C;
  color: #FFFFFF;
  border-color: #2F5D7C;
}

.guides-grid-section .pagination-btn:hover:not(.active) {
  background-color: #F8F8F6;
}

/* ===== PAGE: cases ===== */
.cases-category-block {
  background-color: #F8F8F6;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}
.cases-category-block .glow-bg {
  position: absolute;
  top: -10%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: rgba(47, 93, 124, 0.04);
  filter: blur(80px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.cases-category-block .section-header {
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
}
.cases-category-block .section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #222222;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.cases-category-block .section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: #666666;
  max-width: 600px;
  margin: 0 auto;
}
.cases-category-block .filter-bar {
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}
.cases-category-block .search-wrapper {
  position: relative;
  width: 100%;
}
.cases-category-block .search-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  background-color: #FFFFFF;
  border: 1px solid #E4E4E4;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  color: #222222;
  font-size: 0.95rem;
}
.cases-category-block .search-input:focus {
  outline: none;
  border-color: #2F5D7C;
  box-shadow: 0 0 0 3px rgba(47, 93, 124, 0.15);
}
.cases-category-block .search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #666666;
  display: flex;
  align-items: center;
}
.cases-category-block .filter-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cases-category-block .filter-btn {
  background-color: #FFFFFF;
  border: 1px solid #E4E4E4;
  color: #222222;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
}
.cases-category-block .filter-btn:hover {
  background-color: #F8F8F6;
  border-color: #C68A2D;
}
.cases-category-block .filter-btn.active {
  background-color: #2F5D7C;
  color: #FFFFFF;
  border-color: #2F5D7C;
}
.cases-category-block .case-card {
  background-color: #FFFFFF;
  border: 1px solid #E4E4E4;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02), 0 10px 40px rgba(47, 93, 124, 0.04);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cases-category-block .case-card:hover {
  border-color: #C68A2D;
}
.cases-category-block .case-img-link {
  display: block;
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.cases-category-block .case-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cases-category-block .case-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: rgba(255, 255, 255, 0.95);
  color: #2F5D7C;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  border: 1px solid #E4E4E4;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cases-category-block .case-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.cases-category-block .case-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: #666666;
  margin-bottom: 0.75rem;
}
.cases-category-block .case-meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.cases-category-block .case-title-link {
  text-decoration: none;
}
.cases-category-block .case-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #222222;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.cases-category-block .case-title-link:hover .case-title {
  color: #C68A2D;
}
.cases-category-block .case-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.cases-category-block .case-footer {
  margin-top: auto;
  border-top: 1px solid #E4E4E4;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cases-category-block .case-author {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: #222222;
  font-weight: 500;
}
.cases-category-block .case-readmore {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #2F5D7C;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.cases-category-block .case-readmore:hover {
  color: #C68A2D;
}
.cases-category-block .no-results {
  display: none;
  text-align: center;
  padding: 4rem 2rem;
  background-color: #FFFFFF;
  border: 1px solid #E4E4E4;
  border-radius: 12px;
  position: relative;
  z-index: 1;
}
.cases-category-block .no-results-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #222222;
  margin-bottom: 0.5rem;
}
.cases-category-block .no-results-text {
  font-family: 'Inter', sans-serif;
  color: #666666;
}

/* ===== PAGE: chief-architect ===== */
.chief-architect-review-container {
  font-family: 'Inter', sans-serif;
  background-color: #F8F8F6;
}

.chief-architect-review-container h1, 
.chief-architect-review-container h2, 
.chief-architect-review-container h3, 
.chief-architect-review-container h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.chief-architect-review-container .js-room-tab-btn {
  background-color: #FFFFFF;
  border: 1px solid #E4E4E4;
  color: #2F5D7C;
  font-size: 0.9rem;
  font-weight: 500;
  transition: none !important;
}

.chief-architect-review-container .js-room-tab-btn:hover,
.chief-architect-review-container .js-room-tab-btn:focus,
.chief-architect-review-container .js-room-tab-btn.active {
  background-color: #2F5D7C !important;
  color: #FFFFFF !important;
  border-color: #2F5D7C !important;
}

.chief-architect-review-container .js-layout-toggle {
  background-color: transparent;
  border: none;
  color: #666666;
  font-weight: 500;
  transition: none !important;
}

.chief-architect-review-container .js-layout-toggle.active {
  background-color: #2F5D7C !important;
  color: #FFFFFF !important;
}

.chief-architect-review-container .js-layout-toggle:hover {
  background-color: #F8F8F6;
  color: #222222;
}

.chief-architect-review-container .btn-outline-secondary {
  transition: none !important;
}

.chief-architect-review-container .js-generate-questions-btn:hover {
  background-color: #21465E !important;
}

.chief-architect-review-container .form-check-input:checked {
  background-color: #2F5D7C;
  border-color: #2F5D7C;
}

.chief-architect-review-container .form-select:focus {
  border-color: #2F5D7C;
  box-shadow: 0 0 0 0.25rem rgba(47, 93, 124, 0.15);
}

/* ===== PAGE: contact ===== */
.adjacency-contact-section {
  background-color: #F8F8F6;
  padding: 120px 0;
  font-family: 'Inter', sans-serif;
  color: #222222;
}
.adjacency-contact-section .contact-info-card {
  background-color: #FFFFFF;
  border: 1px solid #E4E4E4;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02), 0 10px 40px rgba(47, 93, 124, 0.04);
}
.adjacency-contact-section .badge-tag {
  background-color: rgba(47, 93, 124, 0.08);
  color: #2F5D7C;
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.adjacency-contact-section h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #222222 !important;
}
.adjacency-contact-section h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #222222 !important;
}
.adjacency-contact-section .contact-method {
  border-bottom: 1px solid #E4E4E4;
}
.adjacency-contact-section .contact-method:last-child {
  border-bottom: none;
}
.adjacency-contact-section .contact-link {
  color: #2F5D7C;
  text-decoration: none;
  font-weight: 500;
}
.adjacency-contact-section .contact-link:hover {
  color: #21465E;
  text-decoration: underline;
}
.adjacency-contact-section .form-label {
  color: #222222;
  font-size: 0.9rem;
}
.adjacency-contact-section .form-control {
  background-color: #FFFFFF;
  border: 1px solid #E4E4E4;
  border-radius: 8px;
  color: #222222;
  font-size: 0.95rem;
}
.adjacency-contact-section .form-control::placeholder {
  color: #888888;
  opacity: 1;
}
.adjacency-contact-section .form-control:focus {
  border-color: #2F5D7C;
  box-shadow: 0 0 0 4px rgba(47, 93, 124, 0.1);
}
.adjacency-contact-section .btn-primary {
  background-color: #2F5D7C;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(47, 93, 124, 0.25);
  cursor: pointer;
}
.adjacency-contact-section .btn-primary:hover {
  background-color: #21465E;
}
.adjacency-contact-section .btn-secondary {
  background-color: #FFFFFF;
  color: #2F5D7C;
  border: 1px solid #2F5D7C;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
}
.adjacency-contact-section .btn-secondary:hover {
  background-color: #F8F8F6;
}
@media (max-width: 768px) {
  .adjacency-contact-section {
    padding: 60px 0;
  }
}

/* ===== PAGE: privacy ===== */
.privacy-content-block { background-color: #F8F8F6; font-family: 'Inter', sans-serif; color: #222222; line-height: 1.6; } .privacy-content-block .privacy-sidebar { border-right: 1px solid #E4E4E4; padding-right: 20px; } .privacy-content-block .privacy-sidebar-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.05em; color: #666666; } .privacy-content-block .privacy-nav .nav-link { font-size: 0.95rem; color: #666666; padding: 8px 12px; border-radius: 6px; text-decoration: none; font-weight: 500; display: block; } .privacy-content-block .privacy-nav .nav-link:hover { background-color: rgba(47, 93, 124, 0.05); color: #2F5D7C; } .privacy-content-block .privacy-nav .nav-link.active { background-color: #2F5D7C; color: #FFFFFF; } .privacy-content-block .privacy-text-wrapper { background-color: #FFFFFF; border: 1px solid #E4E4E4; border-radius: 16px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02), 0 10px 40px rgba(47, 93, 124, 0.04); } .privacy-content-block .privacy-meta-label { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.85rem; letter-spacing: 0.05em; color: #C68A2D; } .privacy-content-block .privacy-heading { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; color: #222222; font-size: 2.5rem; line-height: 1.2; } .privacy-content-block .privacy-updated { font-size: 0.95rem; color: #666666; } .privacy-content-block .privacy-divider { height: 1px; background-color: #E4E4E4; } .privacy-content-block .privacy-section-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: #222222; font-size: 1.5rem; border-bottom: 2px solid rgba(47, 93, 124, 0.1); padding-bottom: 8px; } .privacy-content-block p { color: #222222; margin-bottom: 1.25rem; } .privacy-content-block .privacy-list { list-style-type: disc; } .privacy-content-block .privacy-list li { color: #222222; } .privacy-content-block .privacy-contact-card { background-color: #F8F8F6; border-color: #E4E4E4 !important; } .privacy-content-block .privacy-link { color: #2F5D7C; text-decoration: underline; font-weight: 500; } .privacy-content-block .privacy-link:hover { color: #21465E; } @media (max-width: 767.98px) { .privacy-content-block .privacy-heading { font-size: 18px !important; hyphens: auto; } .privacy-content-block .privacy-section-title { font-size: 16px !important; hyphens: auto; } .privacy-content-block .privacy-sidebar-title { font-size: 14px !important; } .privacy-content-block p, .privacy-content-block li { font-size: 0.95rem; } }

/* ===== PAGE: terms ===== */
.terms-section {
  background-color: #F8F8F6;
  font-family: 'Inter', sans-serif;
  color: #222222;
}

.terms-section .terms-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #222222;
  letter-spacing: -0.02em;
}

.terms-section .terms-subtitle {
  font-size: 1.1rem;
  color: #666666;
  line-height: 1.6;
}

.terms-section .terms-link {
  color: #2F5D7C;
  text-decoration: none;
}

.terms-section .terms-link:hover {
  color: #21465E;
}

.terms-section .terms-divider {
  color: #E4E4E4;
}

.terms-section .terms-sidebar-card {
  background-color: #FFFFFF;
  border: 1px solid #E4E4E4;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02), 0 10px 40px rgba(47, 93, 124, 0.04);
  position: sticky;
  top: 90px;
}

.terms-section .terms-sidebar-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #222222;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.terms-section .terms-sidebar-nav .nav-link {
  color: #666666;
  font-size: 0.95rem;
  padding: 6px 12px;
  border-radius: 6px;
  background-color: transparent;
}

.terms-section .terms-sidebar-nav .nav-link.active {
  background-color: #2F5D7C;
  color: #FFFFFF;
  font-weight: 600;
}

.terms-section .terms-sidebar-nav .nav-link:hover:not(.active) {
  background-color: #F8F8F6;
  color: #222222;
}

.terms-section .terms-search-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: #222222;
  margin-bottom: 6px;
}

.terms-section .terms-search-control {
  background-color: #F8F8F6;
  border: 1px solid #E4E4E4;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #222222;
}

.terms-section .terms-search-control:focus {
  background-color: #FFFFFF;
  border-color: #2F5D7C;
  box-shadow: none;
  outline: none;
}

.terms-section .terms-content-card {
  background-color: #FFFFFF;
  border: 1px solid #E4E4E4;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02), 0 10px 40px rgba(47, 93, 124, 0.04);
}

.terms-section .terms-alert {
  background-color: rgba(47, 93, 124, 0.05);
  border-left: 4px solid #2F5D7C;
  border-radius: 8px;
}

.terms-section .terms-alert-title {
  color: #2F5D7C;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
}

.terms-section .terms-alert-text {
  font-size: 0.9rem;
  color: #222222;
}

.terms-section .terms-section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #222222;
  border-bottom: 1px solid #E4E4E4;
  padding-bottom: 12px;
}

.terms-section .terms-num {
  color: #C68A2D;
  font-size: 1.1rem;
  font-weight: 800;
  border: 1px solid #E4E4E4;
  padding: 2px 8px;
  border-radius: 4px;
  background-color: #F8F8F6;
}

.terms-section .terms-section-body {
  font-size: 1rem;
  line-height: 1.7;
  color: #222222;
}

.terms-section .terms-section-body ul {
  padding-left: 20px;
}

.terms-section .terms-section-body li {
  margin-bottom: 8px;
}

.terms-section .terms-feedback-box {
  background-color: #F8F8F6;
  border: 1px solid #E4E4E4;
}

.terms-section .terms-feedback-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #222222;
}

.terms-section .terms-feedback-subtitle {
  font-size: 0.9rem;
  color: #666666;
}

.terms-section .terms-feedback-box .btn-outline-secondary {
  border-color: #E4E4E4;
  color: #222222;
  background-color: #FFFFFF;
}

.terms-section .terms-feedback-box .btn-outline-secondary:hover {
  background-color: #2F5D7C;
  color: #FFFFFF;
  border-color: #2F5D7C;
}

.terms-section .terms-icon {
  display: inline-block;
  vertical-align: middle;
}

/* ===== PAGE: disclaimer ===== */
.adj-disclaimer-section {
  background-color: #F8F8F6;
  font-family: 'Inter', sans-serif;
  color: #222222;
}
.adj-disclaimer-section .adj-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #222222;
  letter-spacing: -0.02em;
}
.adj-disclaimer-section .adj-subtitle {
  color: #666666;
  font-size: 1.1rem;
  max-width: 700px;
}
.adj-disclaimer-section .adj-sidebar-card {
  background-color: #FFFFFF;
  border: 1px solid #E4E4E4;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02), 0 10px 40px rgba(47, 93, 124, 0.04);
}
.adj-disclaimer-section .adj-sidebar-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #222222;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.adj-disclaimer-section .adj-toc-list {
  padding-left: 0;
  list-style: none;
}
.adj-disclaimer-section .adj-toc-link {
  font-size: 0.95rem;
  color: #666666;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  border-left: 2px solid transparent;
  text-decoration: none;
}
.adj-disclaimer-section .adj-toc-link:hover,
.adj-disclaimer-section .adj-toc-link.active {
  color: #2F5D7C;
  background-color: #F8F8F6;
  border-left-color: #C68A2D;
  font-weight: 600;
}
.adj-disclaimer-section .adj-content-card {
  background-color: #FFFFFF;
  border: 1px solid #E4E4E4;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02), 0 10px 40px rgba(47, 93, 124, 0.04);
}
.adj-disclaimer-section .adj-section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #222222;
  border-bottom: 2px solid #E4E4E4;
  padding-bottom: 0.5rem;
}
.adj-disclaimer-section .adj-text {
  color: #666666;
  font-size: 1rem;
  line-height: 1.7;
}

.arch-comment-card {
    background-color: #FFFFFF;
    border: 1px solid #E4E4E4;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02), 0 10px 40px rgba(47, 93, 124, 0.04);
    position: relative;
    font-family: 'Inter', sans-serif;
    color: #222222;
}

.arch-comment-card.main-comment {
    border-left: 4px solid #C68A2D;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.comment-author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-fallback {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #2F5D7C;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    flex-shrink: 0;
    border: 2px solid #FFFFFF;
    box-shadow: 0 0 0 1px #E4E4E4;
}

.author-details {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.author-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    color: #222222;
    font-size: 0.95rem;
}

.author-badge {
    font-size: 0.75rem;
    color: #C68A2D;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

.comment-date {
    font-size: 0.75rem;
    color: #666666;
    margin-top: 2px;
}

.comment-actions {
    display: flex;
    gap: 8px;
}

.btn-comment-action {
    background: none;
    border: 1px solid #E4E4E4;
    border-radius: 6px;
    padding: 6px 12px;
    color: #666666;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
}

.btn-comment-action:hover {
    border-color: #2F5D7C;
    color: #2F5D7C;
    background-color: #F8F8F6;
}

.icon-svg {
    width: 16px;
    height: 16px;
}

.comment-body {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #222222;
    margin-bottom: 16px;
}

.comment-footer {
    display: flex;
    gap: 16px;
    border-top: 1px solid #E4E4E4;
    padding-top: 12px;
}

.btn-comment-reply {
    background: none;
    border: none;
    color: #2F5D7C;
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 0;
}

.btn-comment-reply:hover {
    color: #21465E;
}

.arch-reply-wrapper {
    position: relative;
    padding-left: 48px;
    margin-top: 16px;
}

.reply-connector-line {
    position: absolute;
    left: 20px;
    top: -16px;
    bottom: 24px;
    width: 2px;
    background-color: #E4E4E4;
    border-left: 1px dashed #2F5D7C;
}

.reply-connector-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: #E4E4E4;
    border-top: 1px dashed #2F5D7C;
}

.arch-comment-card.reply-comment {
    background-color: #FFFFFF;
    border: 1px solid #E4E4E4;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.01), 0 4px 20px rgba(47, 93, 124, 0.02);
    font-family: 'Inter', sans-serif;
    color: #222222;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.comment-author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-fallback {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #F8F8F6;
    color: #2F5D7C;
    border: 1px solid #E4E4E4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.author-details {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.author-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.author-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    color: #222222;
    font-size: 0.9rem;
}

.reply-target {
    font-size: 0.8rem;
    color: #666666;
}

.target-name {
    color: #2F5D7C;
    font-weight: 500;
}

.comment-date {
    font-size: 0.75rem;
    color: #666666;
    margin-top: 2px;
}

.comment-actions {
    display: flex;
    gap: 8px;
}

.btn-comment-action {
    background: none;
    border: 1px solid #E4E4E4;
    border-radius: 6px;
    padding: 4px 10px;
    color: #666666;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
}

.btn-comment-action:hover {
    border-color: #2F5D7C;
    color: #2F5D7C;
    background-color: #F8F8F6;
}

.icon-svg {
    width: 14px;
    height: 14px;
}

.comment-body {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #222222;
    margin-bottom: 12px;
}

.comment-footer {
    display: flex;
    gap: 12px;
    border-top: 1px solid #E4E4E4;
    padding-top: 10px;
}

.btn-comment-reply {
    background: none;
    border: none;
    color: #2F5D7C;
    font-weight: 600;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    padding: 0;
}

.btn-comment-reply:hover {
    color: #21465E;
}


/* ===== PAGE TEMPLATE: guides ===== */
.adjacency-header {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E4E4E4;
    z-index: 1030;
    position: relative;
}

.adjacency-header .container-lg {
    position: relative;
}

.adjacency-header .navbar-brand-custom {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #222222;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
}

.adjacency-header .header-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.adjacency-header .brand-text {
    color: #222222;
}

.adjacency-header .nav-link-custom {
    color: #666666;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 0;
}

.adjacency-header .nav-link-custom:hover,
.adjacency-header .nav-link-custom.active {
    color: #C68A2D;
}

.adjacency-header .nav-cta-btn {
    background-color: #2F5D7C;
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 14px rgba(47, 93, 124, 0.25);
}

.adjacency-header .nav-cta-btn:hover,
.adjacency-header .nav-cta-btn.active {
    background-color: #21465E;
    color: #FFFFFF;
}

.adjacency-header .navbar-toggler-icon-custom {
    width: 24px;
    height: 24px;
    color: #222222;
}

.adjacency-header .navbar-toggler {
    border: 1px solid #E4E4E4;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    background-color: #F8F8F6;
}

.adjacency-detail-hero {
    background-color: #F8F8F6;
    padding: 30px 0;
    font-family: 'Inter', sans-serif;
}

.adjacency-detail-hero .breadcrumb {
    background: transparent;
    padding: 0;
    font-size: 0.85rem;
    justify-content: center;
}

.adjacency-detail-hero .breadcrumb-item a {
    color: #666666;
}

.adjacency-detail-hero .breadcrumb-item.active {
    color: #222222 !important;
    font-weight: 600;
}

.adjacency-detail-hero .hero-inner-wrapper {
    background: linear-gradient(135deg, #2F5D7C 0%, #21465E 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.adjacency-detail-hero .hero-badge {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: #C68A2D;
    letter-spacing: 0.05em;
}

.adjacency-detail-hero .hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.adjacency-detail-hero .hero-subtitle {
    font-size: 1.05rem;
    opacity: 0.9;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.adjacency-detail-section {
    background-color: #F8F8F6;
    font-family: 'Inter', sans-serif;
}

.adjacency-detail-section .meta-icon {
    width: 18px;
    height: 18px;
    color: #C68A2D;
}

.adjacency-detail-section .detail-meta-info {
    font-size: 0.9rem;
    color: #666666;
}

.adjacency-detail-section .detail-main-img {
    height: 380px;
    object-fit: cover;
    border: 1px solid #E4E4E4;
}

.adjacency-detail-section .body-section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #222222;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
}

.adjacency-detail-section .body-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #4A4A4A;
    margin-bottom: 1.5rem;
}

.adjacency-detail-section .adjacency-checklist-block {
    background-color: #F8F8F6;
    border-left: 4px solid #C68A2D;
}

.adjacency-detail-section .checklist-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #222222;
}

.adjacency-detail-section .checklist-check-icon {
    width: 20px;
    height: 20px;
    color: #2F5D7C;
    flex-shrink: 0;
}

.adjacency-detail-section .accordion-item {
    border: 1px solid #E4E4E4;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.adjacency-detail-section .accordion-button {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    color: #222222;
    background-color: #FFFFFF;
    box-shadow: none;
}

.adjacency-detail-section .accordion-button:not(.collapsed) {
    background-color: #F8F8F6;
    color: #2F5D7C;
}

.adjacency-detail-section .comments-section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #222222;
}

.adjacency-detail-section .btn-state-toggle {
    background-color: #F8F8F6;
    border: 1px solid #E4E4E4;
    color: #666666;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
}

.adjacency-detail-section .btn-state-toggle.active {
    background-color: #2F5D7C;
    border-color: #2F5D7C;
    color: #FFFFFF;
}

.adjacency-detail-section .arch-comment-card {
    border: 1px solid #E4E4E4;
    border-radius: 12px;
    padding: 1.25rem;
    background-color: #FFFFFF;
    margin-bottom: 1rem;
}

.adjacency-detail-section .main-comment {
    border-left: 4px solid #2F5D7C;
}

.adjacency-detail-section .reply-comment {
    border-left: 4px solid #C68A2D;
}

.adjacency-detail-section .comment-header {
    display: flex;
    justify-content: justify;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.adjacency-detail-section .comment-author-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.adjacency-detail-section .avatar-fallback {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.adjacency-detail-section .bg-accent {
    background-color: #2F5D7C;
}

.adjacency-detail-section .bg-light-accent {
    background-color: #F8F8F6;
}

.adjacency-detail-section .text-accent {
    color: #2F5D7C;
}

.adjacency-detail-section .author-details {
    display: flex;
    flex-direction: column;
}

.adjacency-detail-section .author-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: #222222;
}

.adjacency-detail-section .author-badge {
    font-size: 0.75rem;
    color: #C68A2D;
    font-weight: 500;
}

.adjacency-detail-section .comment-date {
    font-size: 0.75rem;
    color: #888888;
}

.adjacency-detail-section .btn-comment-action {
    background: #F8F8F6;
    border: 1px solid #E4E4E4;
    border-radius: 6px;
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
    color: #4A4A4A;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.adjacency-detail-section .icon-svg {
    width: 14px;
    height: 14px;
}

.adjacency-detail-section .comment-body {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #4A4A4A;
    margin-bottom: 0.75rem;
}

.adjacency-detail-section .comment-footer {
    display: flex;
    justify-content: flex-end;
}

.adjacency-detail-section .btn-comment-reply {
    background: none;
    border: none;
    color: #2F5D7C;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.adjacency-detail-section .btn-comment-reply:hover {
    color: #C68A2D;
}

.adjacency-detail-section .arch-reply-wrapper {
    display: flex;
    margin-left: 2rem;
    position: relative;
}

.adjacency-detail-section .reply-connector-line {
    width: 2px;
    background-color: #E4E4E4;
    margin-right: 1rem;
    margin-left: -1rem;
    align-self: stretch;
}

.adjacency-detail-section .form-block-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #222222;
}

.adjacency-detail-section .btn-submit-comment {
    background-color: #2F5D7C;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
}

.adjacency-detail-section .btn-submit-comment:hover {
    background-color: #21465E;
    color: #FFFFFF;
}

.adjacency-detail-section .form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #222222;
}

.adjacency-detail-section .form-control {
    background-color: #FFFFFF;
    border: 1px solid #E4E4E4;
    color: #222222;
}

.adjacency-detail-section .form-control::placeholder {
    color: #999999;
}

.adjacency-detail-section .form-control:focus {
    border-color: #2F5D7C;
    box-shadow: none;
}

.adjacency-detail-section .sidebar-wrapper {
    position: sticky;
    top: 100px;
}

.adjacency-detail-section .sidebar-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #222222;
}

.adjacency-detail-section .sidebar-link-card {
    border: 1px solid #E4E4E4;
    background-color: #F8F8F6;
}

.adjacency-detail-section .sidebar-link {
    font-weight: 600;
    color: #2F5D7C;
    text-decoration: none;
    font-size: 0.9rem;
}

.adjacency-detail-section .sidebar-link:hover {
    color: #C68A2D;
}

.adjacency-detail-section .sidebar-link-meta {
    font-size: 0.75rem;
    color: #888888;
}

.adjacency-detail-section .btn-sidebar-submit {
    background-color: #2F5D7C;
    color: #FFFFFF;
    font-weight: 600;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    border: none;
}

.adjacency-detail-section .btn-sidebar-submit:hover {
    background-color: #21465E;
    color: #FFFFFF;
}

.adjacency-detail-section .sidebar-text {
    font-size: 0.9rem;
    color: #666666;
}

.adjacency-footer {
    background-color: #FFFFFF;
    border-top: 1px solid #E4E4E4;
    font-family: 'Inter', sans-serif;
}

.adjacency-footer__disclaimer {
    background-color: #F8F8F6;
    border: 1px solid #E4E4E4;
    border-left: 4px solid #C68A2D;
    border-radius: 8px;
}

.adjacency-footer__disclaimer-icon {
    color: #C68A2D;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.adjacency-footer__svg {
    width: 24px;
    height: 24px;
}

.adjacency-footer__disclaimer-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #222222;
    margin: 0;
}

.adjacency-footer__disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666666;
}

.adjacency-footer__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #222222;
}

.adjacency-footer__text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666666;
}

.adjacency-footer__text strong {
    color: #222222;
}

.adjacency-footer__link {
    color: #2F5D7C;
    text-decoration: none;
    font-size: 0.95rem;
}

.adjacency-footer__link:hover {
    color: #C68A2D;
    text-decoration: none;
}

.adjacency-footer__list {
    padding-left: 0;
}

.adjacency-footer__bottom {
    border-top: 1px solid #E4E4E4;
}

.adjacency-footer__copyright {
    font-size: 0.85rem;
    color: #666666;
}

@media (min-width: 992px) {
    .adjacency-header .navbar-brand-custom {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .adjacency-header .navbar-collapse {
        width: 100%;
    }
}

@media (max-width: 991.98px) {
    .adjacency-header .navbar-collapse {
        background-color: #FFFFFF;
        border-top: 1px solid #E4E4E4;
        margin-top: 1rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .adjacency-header .nav-link-custom {
        font-size: 0.8rem;
        width: 100%;
        display: block;
    }

    .adjacency-header .nav-cta-btn {
        font-size: 0.8rem;
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }
}

@media (max-width: 767.98px) {
    .adjacency-detail-hero h1 {
        font-size: 18px !important;
        hyphens: auto;
    }

    .adjacency-detail-hero p.hero-subtitle {
        font-size: 14px !important;
    }

    .adjacency-detail-section h2.body-section-title {
        font-size: 16px !important;
        hyphens: auto;
    }

    .adjacency-detail-section h3.checklist-title,
    .adjacency-detail-section h3.comments-section-title,
    .adjacency-detail-section h3.sidebar-title {
        font-size: 14px !important;
        hyphens: auto;
    }

    .adjacency-detail-section .detail-main-img {
        height: 220px;
    }

    .adjacency-detail-section .arch-reply-wrapper {
        margin-left: 1rem;
    }
}

/* ===== PAGE TEMPLATE: cases ===== */
.adjacency-case-detail {
    background-color: #F8F8F6;
    color: #222222;
    font-family: 'Inter', sans-serif;
}

.adjacency-case-detail .detail-hero {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E4E4E4;
}

.adjacency-case-detail .detail-hero .row {
    justify-content: center;
}

.adjacency-case-detail .detail-hero .col-lg-8 {
    text-align: center;
}

.adjacency-case-detail .detail-hero .detail-meta {
    justify-content: center;
}

.adjacency-case-detail .breadcrumbs {
    font-size: 0.85rem;
    color: #666666;
}

.adjacency-case-detail .breadcrumb-link {
    color: #2F5D7C;
    text-decoration: none;
}

.adjacency-case-detail .breadcrumb-link:hover {
    color: #C68A2D;
}

.adjacency-case-detail .breadcrumb-current {
    color: #222222;
    font-weight: 500;
}

.adjacency-case-detail .detail-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: #222222;
    line-height: 1.2;
}

.adjacency-case-detail .detail-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666666;
}

.adjacency-case-detail .detail-meta {
    font-size: 0.9rem;
}

.adjacency-case-detail .meta-badge {
    background-color: #F8F8F6;
    border: 1px solid #E4E4E4;
    color: #C68A2D;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-weight: 600;
}

.adjacency-case-detail .meta-author {
    color: #222222;
}

.adjacency-case-detail .meta-date {
    color: #666666;
}

.adjacency-case-detail .meta-divider {
    color: #E4E4E4;
}

.adjacency-case-detail .content-card {
    background-color: #FFFFFF;
    border: 1px solid #E4E4E4;
    border-radius: 12px;
}

.adjacency-case-detail .main-image-wrapper {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #E4E4E4;
}

.adjacency-case-detail .case-main-img {
    max-height: 480px;
    object-fit: cover;
}

.adjacency-case-detail .section-subheading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #222222;
    border-bottom: 2px solid #F8F8F6;
    padding-bottom: 0.5rem;
}

.adjacency-case-detail .formatted-text p {
    line-height: 1.7;
    color: #4A4A4A;
    margin-bottom: 1.25rem;
}

.adjacency-case-detail .correction-list {
    list-style: none;
    padding-left: 0;
}

.adjacency-case-detail .correction-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
    color: #4A4A4A;
}

.adjacency-case-detail .correction-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #C68A2D;
    font-weight: bold;
}


.adjacency-case-detail .sidebar-widget {
    background-color: #FFFFFF;
    border: 1px solid #E4E4E4;
    border-radius: 12px;
}

.adjacency-case-detail .widget-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #222222;
}

.adjacency-case-detail .scoring-metric {
    font-size: 0.95rem;
}

.adjacency-case-detail .metric-label {
    color: #666666;
}

.adjacency-case-detail .metric-value {
    font-weight: 700;
}

.adjacency-case-detail .widget-description {
    font-size: 0.85rem;
    color: #666666;
    line-height: 1.5;
}

.adjacency-case-detail .btn-share-social {
    background-color: #F8F8F6;
    border: 1px solid #E4E4E4;
    color: #2F5D7C;
    text-decoration: none;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

.adjacency-case-detail .btn-share-social:hover {
    background-color: #2F5D7C;
    color: #FFFFFF;
    border-color: #2F5D7C;
}

.adjacency-case-detail .case-related-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.adjacency-case-detail .case-related-link {
    color: #2F5D7C;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    display: block;
    line-height: 1.4;
}

.adjacency-case-detail .case-related-link:hover {
    color: #C68A2D;
}


.adjacency-case-detail .comments-section-container {
    background-color: #FFFFFF;
    border: 1px solid #E4E4E4;
    border-radius: 12px;
}

.adjacency-case-detail .arch-comment-card {
    border: 1px solid #E4E4E4;
    border-radius: 8px;
    padding: 1rem;
    background-color: #FFFFFF;
    position: relative;
}

.adjacency-case-detail .main-comment {
    border-left: 4px solid #2F5D7C;
}

.adjacency-case-detail .reply-comment {
    border-left: 4px solid #C68A2D;
    background-color: #F8F8F6;
}

.adjacency-case-detail .comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.adjacency-case-detail .comment-author-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.adjacency-case-detail .avatar-fallback {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.adjacency-case-detail .bg-accent {
    background-color: #2F5D7C;
}

.adjacency-case-detail .bg-light-accent {
    background-color: rgba(47, 93, 124, 0.1);
}

.adjacency-case-detail .text-accent {
    color: #2F5D7C;
}

.adjacency-case-detail .author-details {
    display: flex;
    flex-direction: column;
}

.adjacency-case-detail .author-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #222222;
}

.adjacency-case-detail .author-badge {
    font-size: 0.75rem;
    color: #C68A2D;
    font-weight: 500;
}

.adjacency-case-detail .comment-date {
    font-size: 0.75rem;
    color: #666666;
}

.adjacency-case-detail .comment-actions {
    display: flex;
    align-items: center;
}

.adjacency-case-detail .btn-comment-action {
    background: none;
    border: 1px solid #E4E4E4;
    border-radius: 6px;
    color: #666666;
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
}

.adjacency-case-detail .btn-comment-action:hover,
.adjacency-case-detail .btn-comment-action.active {
    color: #2F5D7C;
    border-color: #2F5D7C;
    background-color: rgba(47, 93, 124, 0.05);
}

.adjacency-case-detail .icon-svg {
    width: 14px;
    height: 14px;
}

.adjacency-case-detail .comment-body {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #4A4A4A;
}

.adjacency-case-detail .comment-footer {
    margin-top: 0.75rem;
    display: flex;
    justify-content: flex-end;
}

.adjacency-case-detail .btn-comment-reply {
    background: none;
    border: none;
    color: #2F5D7C;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.adjacency-case-detail .btn-comment-reply:hover {
    color: #C68A2D;
}

.adjacency-case-detail .arch-reply-wrapper {
    position: relative;
    padding-left: 2.5rem;
}

.adjacency-case-detail .reply-connector-line {
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 1.5rem;
    width: 2px;
    background-color: #E4E4E4;
}

.adjacency-case-detail .comment-form-wrapper {
    border-top: 1px solid #E4E4E4;
}

.adjacency-case-detail .form-subheading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #222222;
}

.adjacency-case-detail .form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #4A4A4A;
}

.adjacency-case-detail .form-control {
    background-color: #F8F8F6;
    border: 1px solid #E4E4E4;
    color: #222222;
    font-size: 0.9rem;
    border-radius: 6px;
}

.adjacency-case-detail .form-control::placeholder {
    color: #888888;
}

.adjacency-case-detail .form-control:focus {
    background-color: #FFFFFF;
    border-color: #2F5D7C;
    box-shadow: none;
    color: #222222;
}

.adjacency-case-detail .btn-comment-submit {
    background-color: #2F5D7C;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
}

.adjacency-case-detail .btn-comment-submit:hover {
    background-color: #21465E;
}

@media (max-width: 767.98px) {
    .adjacency-case-detail .detail-title {
        font-size: 18px !important;
        hyphens: auto;
    }

    .adjacency-case-detail .section-subheading {
        font-size: 16px !important;
        hyphens: auto;
    }

    .adjacency-case-detail .form-subheading {
        font-size: 14px !important;
        hyphens: auto;
    }
}
