.fichas-banner {
    background: linear-gradient(180deg, #ffffff, #f7f9fb);
    border-radius: 14px;
    border-left: 4px solid #00A788 !important;
    padding: 18px 22px;
    margin: 1rem 0 1.8rem 0;

    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: 0.2s ease;
}

.fichas-banner:hover {
    transform: translateY(-1px);
}

.fichas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.fichas-text p {
    font-size: 14px;
    color: #444;
    margin: 0 0 6px 0;
}

.fichas-text strong {
    color:#004ABA !important;
    font-weight: 600;
}

.fichas-meta {
    display: flex;
    gap: 12px;
    font-size: 13px;
    color: #666;
    align-items: center;
}

.fichas-meta span {
    display: flex;
    align-items: center;
}

.fichas-meta span:not(:last-child)::after {
    content: "•";
    margin-left: 12px;
    color: #bbb;
}

.fichas-meta strong {
    color: #333;
    font-weight: 600;
    margin-right: 4px;
}

.fichas-btn {
    background: #fff;
    color: #004ABA;

    padding: 7px 16px;
    border-radius: 20px;

    text-decoration: none;
    font-size: 13px;
    font-weight: 600;

    border: 1.5px solid #004ABA;

    transition: all 0.25s ease;
}

.fichas-btn:hover {
    background: #004ABA;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 74, 186, 0.25);
}