@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,700;1,400&family=Inter:wght@300;400;600&display=swap');

body { font-family: 'Inter', sans-serif; background-color: #fff; color: #1a1a1a; }
.serif-font { font-family: 'Playfair Display', serif; }
.text-gold { color: #B5945B; }
.tracking-widest { letter-spacing: 0.25em; }
.ultra-small { font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase; }

/* Menu Styling */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

.blog-menu .nav-link {
    color: #888;
    font-size: 0.75rem;
    text-transform: uppercase;
    padding: 5px 20px;
    letter-spacing: 1px;
}
.blog-menu .nav-link.active { color: #1a1a1a; font-weight: 600; }

/* Text-Only Post Styling */
.text-post {
    padding: 20px 0 20px 30px;
    border-left: 1px solid #f0f0f0;
    transition: all 0.4s ease;
}
.border-left-gold {
    border-left: 2px solid #f0f0f0;
}
.text-post:hover {
    border-left-color: #B5945B;
    padding-left: 35px;
}

.hover-gold:hover { color: #B5945B !important; transition: 0.3s; }

.read-more {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    color: #1a1a1a;
    letter-spacing: 1px;
    display: inline-block;
    padding-bottom: 3px;
    border-bottom: 1px solid #B5945B;
}
.read-more:hover { color: #B5945B; }

/* Responsive Spacing */
@media (max-width: 768px) {
    .display-4 { font-size: 2.2rem; }
    .text-post { padding-left: 20px; border-left-width: 3px; }
}

/* Specific styles for the Post Page content only */
.text-serif-content {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}
.text-serif-content p { margin-bottom: 1.5rem; }

.editorial-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: #B5945B;
    padding-left: 2rem;
    border-left: 3px solid #B5945B;
    margin-left: 0;
}

.author-avatar-text {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .display-4 { font-size: 2.2rem; }
    .text-serif-content { font-size: 1rem; }
}
