/* Container for each post card */
.post-card {
    border-radius: 10px;
    overflow: hidden;
    background-color: #fafafa;
    height: 230px;
    width: 100%;
    display: block;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: box-shadow 0.25s ease;
}

.post-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Image wrapper */
.post-card__image {
    width: 100%;
    height: 70%;
    flex-shrink: 0;
    position: relative;
    display: block;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.3s ease;
}

.post-card:hover .post-card__image {
    transform: scale(1.07);
}

/* Text container inside post */
.post-card__content {
    padding: 10px 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.post-card__title {
    margin: 0 0 6px 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: #2a2a2a;
}

.post-card__subtitle {
    margin: 0 0 12px 0;
    font-size: 1rem;
    color: #606060;
    font-style: italic;
}

.post-card__excerpt {
    font-size: 1rem;
    color: #424242;
    line-height: 1.4;
}

.post-card__excerpt a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
}

.post-card__excerpt a:hover {
    text-decoration: underline;
}
