/* Wrapper link for entire card */
.post-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.post-card-link:hover {
    transform: translateY(-8px);
}

/* Make post cards fully clickable */
.post-card {
    position: relative;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

.post-card-link:hover .post-card {
    box-shadow: 0 12px 40px rgba(96, 108, 56, 0.15);
}

/* Style the link text */
.post-card .post-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 500;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.post-card-link:hover .post-link {
    gap: 0.75rem;
    color: var(--color-primary-dark, #4a5328);
}

/* Remove old pseudo-element styles */
.post-card .post-link::before {
    display: none;
}

/* Ensure other interactive elements work */
.post-card .post-title,
.post-card .post-excerpt,
.post-card .post-meta {
    position: relative;
    z-index: 0;
}
