.archivo-diplomatura {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.archivo-diplomatura .tarjeta {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;

    width: 300px;

    height: 350px;
    position: relative;

    transition: all 0.2s ease;
}

.archivo-diplomatura .tarjeta:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    transform: scale(1.015);
}

.archivo-diplomatura .tarjeta-main {
    width: calc(100% - 2rem);
   
    position: absolute;
    left: 1rem;
    bottom: 0rem;
}

.archivo-diplomatura .tarjeta-main p {
    display: inline-block;
    padding: 0 1rem;
    font-size: 0.8rem;
    margin-bottom: 0;
    background-color: white;
    

}

.archivo-diplomatura .tarjeta-main h3 {
    background-color:rgba(113, 83, 158, 0.9) ;
    padding: 1rem 1rem;
    color: white;
    line-height: 1;
    
    transition: all 0.2s ease;
}

.archivo-diplomatura .tarjeta-main h3:hover {
    background-color: #FBBB37;
    color: var(--ast-global-color-3);
}

.archivo-diplomatura .tarjeta:nth-child(even)  h3 {
    background-color: rgba(61, 120, 189, 0.9);
}

.archivo-diplomatura .tarjeta:nth-child(even) h3:hover {
    background-color: #FBBB37;
    color: var(--ast-global-color-3);
}