body {
    font-family: 'Quicksand', sans-serif;
    background-color: #fdfcfb;
    color: #333;
}

.blog-header {
    background: linear-gradient(to right, #f0e6d6, #fefbf4);
    padding: 3rem 1rem;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.blog-header h1 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.blog-container {
    max-width: 1140px;
    margin: auto;
    padding: 2rem 1rem;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.blog-body {
    padding: 1.5rem;
}

.blog-title {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.blog-meta {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1rem;
}

.blog-desc {
    font-size: 1rem;
    color: #555;
}

.blog-readmore {
    display: inline-block;
    margin-top: 1rem;
    color: #b07d53;
    font-weight: 600;
    text-decoration: none;
}

.blog-readmore:hover {
    color: #9b5f3a;
    text-decoration: underline;
}