.post-tile {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    color: var(--text-color);
}

.post-tile:hover {
    color: var(--text-color);
    text-decoration: none;
}

.post-tile__image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.post-tile__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.post-tile__body {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    flex: 1;
}

.post-tile__title {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-color);
    margin: 0;
    line-height: 1.4;
}

.post-tile__title a {
    color: var(--text-color);
    text-decoration: none;
}

.post-tile__content {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    opacity: 0.75;
    flex: 1;
}

.post-tile .button {
    align-self: flex-start;
    margin-top: auto;
}
