.espacepro-item {
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
}

.espacepro-item:last-child {
    border-bottom: 0;
}

.espacepro-thumb {
    width: 140px;
    height: 160px;
    display: flex;
    align-items: center;      /* vertical centering */
    justify-content: center;  /* horizontal centering */
}

.espacepro-img {
    display: block;
    max-width: 140px;
    max-height: 160px;
    width: auto;
    height: auto;
}

/* Container alignment */
.espacepro-item-body {
    display: flex;
    flex-direction: column;
    justify-content: center; /* vertical alignment with image */
    height: 100%;
}

/* Title */
.espacepro-item-title {
    margin: 0 0 6px;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 600;
}

/* Date */
.espacepro-item-title small {
    font-weight: normal;
    color: #888;
    font-size: 85%;
    margin-left: 4px;
}

/* Description */
.espacepro-item-body .small {
    margin: 0 0 10px;
    line-height: 1.4;
    color: #555;
}

/* Button spacing */
.espacepro-actions {
    margin: 0;
}

/* Optional: tighten overall row */
.espacepro-item {
    padding: 16px 0;
    border-bottom: 1px solid #e5e5e5;
}
/* Action link */
.espacepro-actions a {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    font-size: 13px;
    font-weight: 500;
    color: #2a6ebb; /* or your blue */

    text-decoration: none;
}

/* Icon */
.espacepro-actions i {
    font-size: 12px;
}

/* Hover */
.espacepro-actions a:hover {
    text-decoration: underline;
    color: #1f5aa0;
}