/* Blogs Section */
.blogs {
    background: var(--bg-secondary);
    position: relative;
}

.blog-grid {
    display: grid;
    gap: 3rem;
}

.blog-post {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    background: var(--bg-primary);
    padding: 2rem;
    position: relative;
    clip-path: polygon(0 0, 97% 0, 100% 97%, 3% 100%);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.blog-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--charcoal-texture);
    opacity: 0.03;
    pointer-events: none;
}

.author-portrait {
    width: 100px;
    height: 100px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    position: relative;
    background-image: url('portrait-1.png');
}

.author-portrait.portrait-2 {
    background-image: url('portrait-2.png');
}

.author-portrait.portrait-3 {
    background-image: url('portrait-3.png');
}

.post-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.author-info {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.post-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    position: relative;
}

.read-more::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--text-primary);
    transition: width 0.3s ease;
    clip-path: polygon(0 0, 95% 0, 100% 100%, 5% 100%);
}

.read-more:hover::after {
    width: 100%;
}

