.custom-post-widget {
    margin-bottom: 2em;
    position: relative;
}

.custom-post-widget .post-thumbnail-wrapper {
    overflow: hidden;
    margin-bottom: 1em;
    border-radius: 4px;
    position: relative; /* Añadido para posicionamiento relativo */
}
.custom-post-widget .post-category {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    background-color: #F7F4E3;
    color: #2B2018;
    padding: 5px 15px;
    font-family: 'Apfel';
    font-size: 0.8em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}


.custom-post-widget .post-thumbnail-wrapper {
    overflow: hidden;
    margin-bottom: 1em;
    border-radius: 4px;
}

.custom-post-widget .post-thumbnail-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.custom-post-widget .post-thumbnail-wrapper:hover img {
    transform: scale(1.05);
}

.custom-post-widget .post-date {
    font-size: 0.9em;
    color: #666;
    margin: 0;
    font-weight: 400;
}

.custom-post-widget .post-title {
    margin: 0;
    font-size: 1.2em;
    font-weight: 600;
}

.custom-post-widget .post-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.2s ease;
}

.custom-post-widget .post-title a:hover {
    color: #E8412B;
}

.custom-post-widget .post-excerpt {
    font-size: 0.95em;
    line-height: 1.6;
    color: #666;
    margin-top: 0.5em;
}