.swiper-slide { display: flex; justify-content: center; }

.carrusel-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    height: 100%;
    border-bottom-left-radius: 15px;
    border-top-right-radius: 15px;
    
}

.carrusel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    cursor: pointer !important;
}

.card-image {
    width: 100%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f0f0f0;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.card-image:hover img {
    transform: scale(1.05);
}

.card-date {
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 4px 8px;
    font-size: 0.85em;
}

.card-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-title { 
    font-size: 1em; 
    margin: 0 0 10px 0; 
    text-align: center;
}

.card-excerpt {
    flex: 1;
    font-size: 0.95em;
    margin-bottom: 10px;
    text-align: justify;
}

.card-button {
    align-self: flex-end;
    padding: 8px 12px;
    background: #0b2718bd;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9em;
}
