.blog-hero {
    background: var(--ink);
    padding: 140px 24px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.blog-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 80% 60% at 50% 0%,
        rgba(0, 212, 168, 0.15) 0%,
        transparent 60%
    );
}
.blog-hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: #fff;
    margin: 12px 0;
    position: relative;
}
.blog-hero h1 em {
    font-style: italic;
    color: var(--mint);
}
.blog-hero p {
    color: rgba(255, 255, 255, 0.6);
    font-family: "Jost", sans-serif;
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}
.blog-grid-section {
    background: #faf9f7;
    padding: 80px 24px;
}
.blog-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.blog-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    transition:
        transform 0.25s,
        box-shadow 0.25s;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.blog-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
.blog-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.blog-card-author-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 212, 168, 0.4);
}
.blog-card-author {
    font-family: "Jost", sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--mint-dim);
}
.blog-card-date {
    font-family: "Jost", sans-serif;
    font-size: 0.72rem;
    color: #aaa;
    margin-left: auto;
}
.blog-card h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 10px;
}
.blog-card p {
    font-family: "Jost", sans-serif;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.65;
    flex: 1;
}
.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}
.blog-read-time {
    font-family: "Jost", sans-serif;
    font-size: 0.72rem;
    color: #aaa;
}
.blog-read-more {
    font-family: "Jost", sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--purple);
    text-decoration: none;
}
.blog-read-more:hover {
    color: var(--purple-light);
}
@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}