.main-header {
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.logo-area {
    display: flex;
    align-items: center;
}

.logo-link {
    display: inline-block;
    width: 220px;
    max-height: 60px;
    overflow: hidden;
}

.logo-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    transition: color 0.2s ease;
}

.nav-item:hover, .nav-item.active {
    color: var(--primary-gold);
}

.header-utilities {
    display: flex;
    align-items: center;
}

.phone-link {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 1.75rem;
}

.nav-item {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.nav-item.active, .nav-item:hover {
    color: var(--primary-gold);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.header-right .social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.header-right .social-icon-svg {
    width: 20px;
    height: 20px;
    fill: var(--text-dark, #1a1a1a);
}

.header-right .social-icon-link:hover .social-icon-svg {
    fill: var(--primary-gold, #b3a995); 
    transform: scale(1.05); 
}

.phone-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.1rem;
    margin-left: 0.25rem; 
}

body {
    background-color: #d1c9bc;
    margin: 0;
    padding: 0;
}

.op-post-wrapper {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background-color: transparent;
}

.op-post-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.op-post-date {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #555555;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.op-post-title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.25;
    color: #111111;
    letter-spacing: -0.5px;
}

.op-post-divider {
    width: 60px;
    height: 3px;
    background-color: #6e550f;
    margin: 1.75rem auto 0 auto;
}

.op-featured-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin-bottom: 3.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.op-fluid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.op-body-content {
    max-width: 680px;
    margin: 0 auto;
}

.op-body-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #1a1a1a;
    margin-bottom: 1.75rem;
}

.op-body-content .op-lead-paragraph {
    font-size: 1.35rem;
    line-height: 1.7;
    color: #000000;
    font-weight: 500;
}

.op-body-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111111;
    margin: 2.5rem 0 1rem 0;
}

.op-editorial-quote {
    border-left: 4px solid #6e550f;
    padding-left: 1.5rem;
    margin: 2.5rem 0;
    font-style: italic;
}

.op-editorial-quote p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #444444;
    margin-bottom: 0;
}

.op-post-footer {
    max-width: 680px;
    margin: 4rem auto 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.op-back-link {
    text-decoration: none;
    color: #6e550f;
    font-weight: 700;
    font-size: 0.95rem;
    transition: opacity 0.2s ease;
}

.op-back-link:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .op-post-wrapper {
        padding: 2rem 1.25rem;
    }
    
    .op-post-title {
        font-size: 2rem;
    }
    
    .op-body-content p {
        font-size: 1.05rem;
        line-height: 1.7;
    }
}

.op-author-bio-card {
    width: 100%;
    margin: 4rem 0 2rem 0;
    padding: 2.5rem;
    background-color: #f7f5f2;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-sizing: border-box;
}

.bio-avatar-frame {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--primary-gold, #b3a995);
}

.bio-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bio-text-column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bio-author-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.bio-author-description {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 600px) {
    .op-author-bio-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
}