/* convenios-styles.css */

.convenios-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.convenio-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.convenio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    border-color: #F07424; /* El naranja de la CEAMO */
}

.card-img {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajusta la foto sin deformarla */
    transition: transform 0.5s ease;
}

.convenio-card:hover .card-img img {
    transform: scale(1.1);
}

.badge-year {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #F07424;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.card-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-info h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
    height: 45px; /* Mantiene los títulos alineados */
    overflow: hidden;
}

.card-info .fecha {
    font-size: 13px;
    color: #888;
    margin-bottom: 5px;
}

.card-info .institucion {
    font-size: 12px;
    font-weight: bold;
    color: #666;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.btn-download {
    margin-top: auto;
    background: #333;
    color: #fff !important;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-download span {
    background: #F07424;
    padding: 2px 5px;
    border-radius: 4px;
    font-size: 10px;
    margin-left: 5px;
}

.btn-download:hover {
    background: #F07424;
}

/* Responsivo para móviles */
@media (max-width: 600px) {
    .convenios-container {
        grid-template-columns: 1fr;
    }
}