/* ==========================================================================
   Blog Index & Archive Styles
   ========================================================================== */

/* Blog Page Header */
.blog-page .page-header {
    margin-bottom: 40px;
    text-align: left;
}
.blog-page .page-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--color-dark);
    text-transform: uppercase;
    margin: 0;
}
.blog-page .archive-description {
    margin-top: 15px;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

/* Blog Card */
.blog-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    height: 100%;
}
.blog-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.blog-card__image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}
.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}
.blog-card:hover .blog-card__image img {
    transform: scale(1.05);
}
.blog-card__image-placeholder {
    width: 100%;
    height: 220px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-card__image-placeholder a {
    color: #aaa;
    text-decoration: none;
    font-weight: 500;
}
.blog-card__content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-card__meta {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}
.blog-card__meta a {
    color: var(--color-primary);
    text-decoration: none;
}
.blog-card__meta a:hover {
    text-decoration: underline;
}
.blog-card__title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 15px;
    line-height: 1.3;
}
.blog-card__title a {
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}
.blog-card__title a:hover {
    color: var(--color-primary);
}
.blog-card__excerpt {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
}
.blog-card__footer {
    margin-top: auto;
}
.blog-card__read-more {
    display: inline-block;
    padding: 8px 20px;
    background: var(--color-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}
.blog-card__read-more:hover {
    background: var(--color-dark);
    color: #fff;
}
