/* BLOG RECENT STYLES */

.blog-recent-wrapper {
    margin-bottom: 4rem;
}

.blog-recent-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.blog-recent-item {
    position: relative;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.blog-recent-item:last-child {
    border-bottom: none;
}

/* Clickable Area */
.blog-link-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    border-radius: 0.5rem;
}

/* Hover Background Effect */
.blog-recent-item:hover {
    /* Optional: Add slight background or translate */
}

/* Meta Info */
.blog-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem; /* text-xs */
    color: #94a3b8; /* slate-400 */
    margin-bottom: 0.5rem;
}

.blog-date {
    font-family: monospace;
    font-weight: 500;
}

.blog-divider {
    width: 2rem;
    height: 1px;
    background-color: #e2e8f0;
}

.blog-read-text {
    font-weight: 600;
    transition: color 0.2s;
}

/* Typography */
.blog-title {
    font-size: 1.125rem; /* text-lg */
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.blog-excerpt {
    font-size: 0.875rem; /* text-sm */
    color: #64748b;
    line-height: 1.625;
}