﻿/* Contenedor principal */
.carVerde2col {
    display: grid; /* Usar Grid Layout */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Configura hasta 3 columnas dinámicamente */
    gap: 20px; /* Espaciado entre tarjetas */
    padding: 20px;
    background-color: #f4f4f4;
}

/* Estilo de cada tarjeta */
.carVerde2col__item {
    display: flex;
    flex-direction: column; /* Configura el contenido en columna */
    justify-content: space-between;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    color: #000000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Título */
.carVerde2col__title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.2;
    color: #000000;
}

/* Subtítulo */
.carVerde2col__subtitle {
    font-size: 14px;
    margin-bottom: 10px;
    color: #000000;
}

/* Descripción */
.carVerde2col__description {
    font-size: 14px;
    margin-bottom: 20px;
    color: #fff;
}

/* Botón */
.cens-btn--secondary {
    display: inline-block;
    background: #006633;
    color:#fff ;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
}

.cens-btn--secondary:hover {
    background: #004d26;
    color: #fff;
}

/* Acciones administrativas */
.admin_actions {
    margin-bottom: 10px;
}

.admin_actions a {
    font-size: 12px;
    color: #000000;
    text-decoration: underline;
}
