.related-posts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    align-self: stretch;
}

.related-post {
    border: 1px solid var(--Gris-Romeu, #CCC);
    border-radius: 16px;
    overflow: hidden;
    /*box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
    width: 30%;
    box-sizing: border-box;
    transition: transform 0.2s;
    background-color: #fff;
}

.related-post-meta {
    display: flex;
    gap: 16px;
}

.related-post:hover {
    transform: translateY(-5px);
}

.related-post-thumbnail img {
    max-width: 100%;
    width: 100%;
    display: block;
    height: 176px;
    object-fit: cover;
}

.related-post-content {
    padding: 32px;
}

.related-post-categories {
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 171.429% */
}

.related-post-date {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 157.143% */
}

.related-post h3 {
    color: #1D1D1B;
    font-size: 24px;
    font-weight: 700;
    line-height: 140%; /* 33.6px */
    margin-bottom: 16px;
}

.related-post-excerpt {
    font-size: 18px;
    line-height: 24px; /* 133.333% */
    margin-top: 16px;
}

.related-post .related-post-content>a {
    color: var(--verde-medio-Romeu, #00804B);
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    text-decoration-line: underline;
}

.related-post a:hover {

}
