:root {
    --blog-text: #4a4a4a;
    --blog-heading: #2c3e50;
    --blog-accent: #d4af37;
    --blog-bg: #fffcf7;
}

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

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

.blog-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--blog-heading);
    margin-bottom: 1rem;
}

.blog-meta {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.blog-content {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--blog-text);
}

.blog-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--blog-heading);
    margin: 3rem 0 1.5rem;
    border-bottom: 2px solid var(--blog-accent);
    display: inline-block;
}

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

.blog-content img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-cta {
    background: var(--blog-heading);
    color: white;
    padding: 3rem;
    border-radius: 30px;
    text-align: center;
    margin: 4rem 0;
}

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

.blog-cta .btn-premium {
    display: inline-block;
    margin-top: 1rem;
    background: var(--blog-accent);
    color: white;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.blog-cta .btn-premium:hover {
    transform: scale(1.05);
}

/* Post Card for Index */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.post-card-content a {
    color: var(--blog-accent);
    text-decoration: none;
    font-weight: bold;
}

.post-card-content a::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.post-card {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

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

.post-card-content {
    padding: 1.5rem;
}

.post-card-content h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.post-card-content a {
    color: var(--blog-accent);
    text-decoration: none;
    font-weight: bold;
}

@media (max-width: 768px) {
    .blog-header h1 { font-size: 2.5rem; }
    .blog-container { padding: 80px 20px; }
}
