.anhistoria-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.anhistoria-card {
    width: 29%;
    max-width: 90%;
    background: transparent;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    padding: 15px;
    text-align: center;
    border: 1px solid #f3f3f3;
    color: white;
    padding: 15px;
    border-radius: 8px;
    transition: background-color 0.3s ease-in-out;
}

.anhistoria-header {
    background-color: transparent;
 }

.anhistoria-header h5,h6 {
    margin: 0px;
    color: white;
}
.anhistoria-body {
    display: flex;
    align-items: center;
    gap: 20px;
 }

.anhistoria-body p{
    color: #f3f3f3;
}

.anhistoria-image {
    height: auto;
    width: 40%;
 }

.anhistoria-image img {
    width: 100%; /* Tamaño de la miniatura */
    max-height: auto;
    border-radius: 5px;
    transition: transform 0.2s;
    border: 1px solid #f3f3f3;
}

.anhistoria-image a:hover img {
    transform: scale(1.02);
}

.anhistoria-details {
    text-align: center;
    flex: 1;
    font-size: 1 rem;
    color: #f3f3f3;
    padding: 0 10px;
}

.anhistoria-transmission-btn {
    display: inline-block;
    padding: 15px 15px;
    background: darkred;
    color: white;
    border: none;
    border-radius: 10px;
    text-decoration: solid;
    cursor: pointer;
    font-weight: none;
    font-size: 1.1rem;
    font-family: 'noto serif;';
}

.anhistoria-transmission-btn:hover {
    background: red;
}
.anhistoria-pagination {
    text-align: center;
    margin-top: 20px;
}

.anhistoria-pagination a {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 5px;
    background: #250000;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.anhistoria-pagination a.active {
    background: darkred;
    font-weight: bold;
}

.anhistoria-pagination a:hover {
    background: #C03D41;
}

.anhistoria-futuro {
    background-color: #550000 !important;
    color: white; !important; /* Texto en color #250000 */
}

.anhistoria-futuro h3,
.anhistoria-futuro h4,
.anhistoria-futuro p,
.anhistoria-futuro a {
    color: #ffffff !important;
}

.anhistoria-pasado {
    background-color: #00193f;
    color: black; /* Mantiene el color de los textos según el diseño original */
}

@media (max-width: 1910px) {
    .anhistoria-card {
        width: auto;
    }
        
}

@media (max-width: 1500px) {
    .anhistoria-card {
        width: auto;
    }
        
}

@media (max-width: 1080px) {
    .anhistoria-card {
        width: auto;
    }
}

@media (max-width: 900px) {
    .anhistoria-card {
        width: auto;
    }
}

@media (max-width: 650px) {
    .anhistoria-card {
        width: auto;
    }
}

@media (max-width: 432px) {
    .anhistoria-card {
        width: 100%;
    }

    .anhistoria-body {
        flex-direction: column; /* apila los elementos verticalmente */
    }

    .anhistoria-image,
    .anhistoria-details {
        width: 100%; /* ocupa todo el ancho disponible */
    }

    .anhistoria-image img {
        width: 100%; /* asegura que la imagen no se desborde */
        height: auto;
    }
}