/* BLOG POST ELITE DESIGN v9 */
:root {
    --sand: #F5F5F0; 
    --slate: #121212;
    --black: #000000;
    --crimson: #7A1521;
    --white: #FFFFFF;
    --border-soft: rgba(0,0,0,0.1);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--slate);
    background: var(--white); /* White background for better readability in articles */
    line-height: 1.8;
}

h1, h2, h3 {
    font-family: 'Outfit', sans-serif;
    color: var(--black);
    font-weight: 900;
}

.post-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 40px;
}

.post-header {
    text-align: center;
    margin-bottom: 80px;
}

.post-date {
    color: var(--crimson);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 24px;
}

.post-title {
    font-size: 4rem;
    line-height: 1.1;
    letter-spacing: -2px;
}

.post-main-img {
    width: 100%;
    border-radius: 40px;
    margin-bottom: 80px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.05);
}

.post-content {
    font-size: 1.25rem;
    color: #444;
}

.post-content h2 {
    margin: 60px 0 30px;
    font-size: 2.2rem;
}

.post-content p {
    margin-bottom: 30px;
}

.post-content ul {
    margin-bottom: 40px;
    padding-left: 20px;
}

.post-content li {
    margin-bottom: 15px;
}

.post-cta {
    background: var(--black);
    color: var(--white);
    padding: 80px;
    border-radius: 40px;
    text-align: center;
    margin-top: 100px;
}

.post-cta h3 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.post-cta p {
    font-size: 1.25rem;
    opacity: 0.8;
    margin-bottom: 40px;
}

.btn-crimson {
    background: var(--crimson);
    color: var(--white);
    padding: 20px 48px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 800;
    display: inline-block;
}

/* NAVBAR RESTYLED FOR POST */
.studio-navbar {
    padding: 32px 0;
    border-bottom: 1px solid var(--border-soft);
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.studio-nav a {
    text-decoration: none;
    color: var(--black);
    font-weight: 700;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .post-title { font-size: 2.5rem; }
    .post-container { padding: 80px 20px; }
    .post-cta { padding: 40px 20px; }
}
