/* Blog Styles */
.blog-hero {
    height: 35vh;
    min-height: 260px;
    background: linear-gradient(135deg, #e76f51 0%, #f4a261 50%, #e9c46a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.blog-hero h1 {
    font-size: 2.6rem;
    font-weight: bold;
    margin-bottom: 12px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.blog-hero p {
    font-size: 1.15rem;
    opacity: 0.95;
    max-width: 640px;
    margin: 0 auto;
}

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

.blog-content {
    padding: 60px 0;
}

/* Listing grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

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

.blog-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-date {
    color: #e76f51;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 8px;
}

.blog-card h2 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.blog-card p {
    color: #555;
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 18px;
    flex: 1;
}

.blog-card .btn-small {
    align-self: flex-start;
    background: #e76f51;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s ease;
}

.blog-card .btn-small:hover {
    background: #d45f3e;
}

/* Single article */
.blog-article {
    max-width: 780px;
    margin: 0 auto;
    padding: 60px 20px;
}

.blog-article .breadcrumb {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 18px;
}

.blog-article .breadcrumb a {
    color: #e76f51;
    text-decoration: none;
}

.blog-article .breadcrumb a:hover {
    text-decoration: underline;
}

.blog-article h1 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.25;
}

.blog-article .meta {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.blog-article img.cover {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 30px;
}

.blog-article h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin: 36px 0 14px;
}

.blog-article p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 18px;
}

.blog-article ul {
    margin: 0 0 20px 22px;
}

.blog-article li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 8px;
}

.blog-article a.inline-link {
    color: #e76f51;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(231,111,81,0.4);
}

.blog-article a.inline-link:hover {
    border-bottom-color: #e76f51;
}

.blog-cta {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 28px;
    margin-top: 40px;
    text-align: center;
}

.blog-cta h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.blog-cta p {
    color: #555;
    margin-bottom: 18px;
}

.blog-cta .btn-primary {
    background: #e76f51;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

@media (max-width: 600px) {
    .blog-hero h1 { font-size: 2rem; }
    .blog-article h1 { font-size: 1.7rem; }
}
