/* CONTENEDOR GENERAL */
.noticias-wrapper {
    position: relative;
    padding: 20px 40px;
}

/* CARD */
.noticia-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.noticia-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

/* IMAGEN */
.img-container {
    position: relative;
    /*height: 300px;*/
    height: 0;
    padding-top: 65%;
}

.img-container img {
    /*width: 100%;
    height: 100%;
    object-fit: cover;*/
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* BADGE FECHA */
.fecha-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 51, 102, 0.9);
    color: #fff;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 4px;
}

/* CONTENIDO */
.contenido {
    padding: 15px;
}

.contenido h3 {
    font-size: 16px;
    font-weight: 600;
    color: #003366;
    margin-bottom: 8px;
}

.contenido p {
    font-size: 14px;
    color: #555;
}

/* BOTÓN */
.btn-leer {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 14px;
    font-size: 13px;
    color: #003366;
    border: 1px solid #003366;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-leer:hover {
    background: #003366;
    color: #fff;
}

/* FLECHAS LATERALES */
.owl-nav {
    position: absolute;
    top: 40%;
    width: 100%;
}

.owl-nav button {
    position: absolute;
    background: #003366 !important;
    color: #fff !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    border: none;
    opacity: 0.9;
}

.owl-nav button:hover {
    background: #0055aa !important;
}

.owl-nav .owl-prev {
    left: -20px;
}

.owl-nav .owl-next {
    right: -20px;
}

/* DOTS (PAGINACIÓN INFERIOR) */
.owl-dots {
    text-align: center;
    margin-top: 15px;
}

.owl-dot span {
    width: 12px;
    height: 12px;
    background: #ccc;
    display: inline-block;
    border-radius: 50%;
    margin: 5px;
}

.owl-dot.active span {
    background: #003366;
}