/* --- List Page Styles --- */
.blog-grid-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

#blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.blog-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.blog-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: 0.4s;
}

.blog-content {
    padding: 25px;
}

.blog-card h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.read-more {
    text-decoration: none;
    color: #b8964b;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
}

/* --- Detail Page Styles --- */
.post-container {
    max-width: 850px;
    margin: 60px auto;
    padding: 0 20px;
    margin-top: 50px;
}

#post-header {
    text-align: center;
    margin-bottom: 30px;
}

#p-title {
    font-size: 3rem;
    margin: 10px 0;
}

.post-featured-image img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 40px;
}

.post-main-content {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #444;
}

.blog-date {
    color: #999;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.blog-hero {
    text-align: center;
    padding: 60px 20px;
    background: #fdfdfd;
    margin-top: 85px;
}