.seccion-blog {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.titulo-blog {
    font-size: 2em;
    text-align: center;
    color: #fff;
}

.contenedor-noticias {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5em;
}

.tarjeta-blog {
    display: flex;
    flex-direction: column;
    background-color: #111;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(255, 145, 0, 0.3);
    transition: transform 0.3s ease;
}

.tarjeta-blog:hover {
    transform: translateY(-5px);
}

.imagen-blog {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.imagen-blog img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.imagen-blog:hover img {
    transform: scale(1.05);
}

.boton-enlace {
    position: absolute;
    bottom: 1em;
    right: 1em;
    background-color: #fff;
    padding: 0.8em;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.boton-enlace i {
    color: #e04d2a;
    font-size: 1.2em;
}

.boton-enlace:hover {
    background-color: #ffce00;
}

.contenido-blog {
    padding: 1.5em;
    color: #fff;
}

.contenido-blog h2 {
    font-size: 1.2em;
    color: #e04d2a;
    text-align: center;
    margin-bottom: 0.5em;
}

.contenido-blog span {
    display: block;
    text-align: center;
    font-size: 0.9em;
    color: #ffce00;
    font-weight: bold;
    margin-bottom: 1em;
}

.contenido-blog p {
    font-size: 0.95em;
    line-height: 1.5;
    color: #ddd;
}