/* Styles for post-card.php */

.post-card {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}

.post-card {
    max-width: var(--max-post-card-width);
    border-radius: 8px;
}

.post-card:hover .post-card-img img {
    box-shadow: 0 0 5px var(--color-purple);
    transition-duration: 250ms;
}

.post-card-title {
    display: block;
    margin: 4px 0;
}

.post-card-category,
.post-card-category:visited,
.post-card-category:active,
.post-card-category:focus {
    font-size: 0.9rem;
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    color: var(--color-dark-purple);
    background-color: var(--color-very-light-purple);
    transition: color 0.2s;
}

.post-card-category:hover {
    color: var(--color-purple);
}

.post-card-img img {
    transition-duration: 250ms;
    width: 100%;
    max-width: var(--max-post-card-width);
    height: auto;
    border-radius: 9px;
}

.post-card-author-img {
    float: left;
    margin-right: 1rem;
}

.post-card-author-img>img {
    border-radius: 100%;
}

.post-card-author-name {
    font-weight: var(--weight-bold);
}

.post-card-author-name:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}
