/* Blogs page styles */
.blogs-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
}
.blogs-hero .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.blogs-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 25, 40, 0.55);
    z-index: 1;
}
.blogs-hero .hero-content {
    position: relative;
    z-index: 2;
    padding-top: 120px;
    text-align: left;
}
.blogs-hero .hero-content h1 {
    color: var(--white);
    font-family: 'Merriweather', serif;
    font-size: 48px;
    letter-spacing: 0.4px;
    margin-bottom: 8px;
}
.blogs-hero .hero-content p {
    color: var(--gold);
    opacity: 0.9;
}
.blogs {
    width: 100%;
    background: var(--white);
    color: var(--dark-blue);
    padding: 70px 0;
}
.blogs .blogs-grid {
    width: 80%;
    margin: 0 10%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.blogs .blog-card {
    background: var(--white);
    color: var(--dark-blue);
    border: 1px solid rgba(0,0,0,0.12);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 440px;
}
.blogs .blog-cover {
    position: relative;
    height: 180px;
    padding: 0;
    background: none;
}
.blogs .blog-cover .blog-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.blogs .blog-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blogs .blog-body h2 {
    font-family: 'Merriweather', serif;
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 10px;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}
.blogs .blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: #666;
    font-size: 14px;
    margin-bottom: 12px;
}
.blogs .blog-meta i {
    vertical-align: -2px;
    margin-right: 6px;
    color: #888;
}
.blogs .blog-body p {
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 16px;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}
.blogs .btn-read {
    display: inline-block;
    background: var(--gold);
    color: #000;
    padding: 10px 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    margin-top: auto;
}
@media (max-width: 992px) {
    .blogs .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .blogs .blogs-grid {
        grid-template-columns: 1fr;
    }
    .blogs .blog-cover {
        height: 160px;
    }
    .blogs .blog-card {
        min-height: 380px;
    }
}
