/* =========================================
SILICON VALLEY INDIA – ALERTS MODULE
(NO CROPPING + PREMIUM UI)
========================================= */

.dr1060alerts {
    position: relative;
    padding: 100px 20px;
    background: radial-gradient(circle at top, #050816, #020617 70%, #000);
    overflow: hidden;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

/* ================= BACKGROUND GLOW ================= */

.dr1060alerts::before {
    content: "";
    position: absolute;
    inset: -20%;
    background:
        radial-gradient(circle at 20% 30%, rgba(0,255,209,0.08), transparent 45%),
        radial-gradient(circle at 80% 40%, rgba(255,215,0,0.06), transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(120,120,255,0.05), transparent 55%);
    filter: blur(60px);
    animation: drift 14s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes drift {
    0% { transform: scale(1) translateY(0); }
    100% { transform: scale(1.1) translateY(-30px); }
}

/* ================= CONTAINER ================= */

.dr1060alerts-container {
    max-width: 1280px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* ================= HEADER ================= */

.dr1060alerts-header {
    text-align: center;
    margin-bottom: 60px;
}

/* LIVE BADGE */
.dr1060badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 12px;
    letter-spacing: 2px;
    border-radius: 30px;
    color: #00ffd1;
    border: 1px solid rgba(0,255,209,0.25);
    background: rgba(0,255,209,0.06);
    margin-bottom: 14px;
}

/* TITLE */
.dr1060alerts-header h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(90deg, #00ffd1, #ffd700, #8a7dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* SUBTITLE */
.dr1060alerts-subtitle {
    max-width: 780px;
    margin: 15px auto;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(226,232,240,0.85);
}

/* STATUS STRIP */
.dr1060status-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.dr1060status-strip span {
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: #cbd5e1;
}

/* ================= GRID ================= */

.dr1060alerts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 26px;
}

/* ================= CARD ================= */

.dr1060alert-card {
    position: relative;
    border-radius: 22px;
    padding: 18px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.55);
    transition: all 0.4s ease;
    overflow: hidden;
}

/* neon border */
.dr1060alert-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    padding: 1px;
    background: linear-gradient(120deg, #00ffd1, #ffd700, #8a7dff);
    -webkit-mask: linear-gradient(#000 0 0) content-box,
                  linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
}

/* hover lift */
.dr1060alert-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 40px 120px rgba(0,0,0,0.75);
}

/* shine sweep */
.dr1060alert-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.12), transparent);
    transform: translateX(-120%);
    transition: 0.8s;
}

.dr1060alert-card:hover::before {
    transform: translateX(120%);
}

/* ================= MEDIA (NO CROPPING CORE FIX) ================= */

.dr1060alert-media {
    position: relative;
    width: 100%;
    min-height: 240px;
    border-radius: 16px;
    background: radial-gradient(circle at center, #050b18, #020617);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    overflow: hidden;
}

/* wrapper */
.dr1060media-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* IMAGE / VIDEO — NO CROPPING */
.dr1060alert-media img,
.dr1060alert-media video {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;   /* 🔥 KEY FIX */
    border-radius: 12px;
    display: block;
}

/* soft glow behind media */
.dr1060alert-media::before {
    content: "";
    position: absolute;
    inset: 25%;
    background: radial-gradient(circle, rgba(0,255,209,0.08), transparent 60%);
    filter: blur(35px);
    z-index: 0;
}

/* ================= NAV BUTTONS ================= */

.dr1060nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(0,0,0,0.45);
    color: #00ffd1;
    cursor: pointer;
    backdrop-filter: blur(12px);
    transition: 0.3s ease;
}

.dr1060prev { left: 10px; }
.dr1060next { right: 10px; }

.dr1060nav:hover {
    background: linear-gradient(135deg, #00ffd1, #ffd700);
    color: #000;
    transform: translateY(-50%) scale(1.15);
}

/* ================= CONTENT ================= */

.dr1060alert-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 8px;
}

.dr1060alert-content h4 {
    font-size: 0.9rem;
    color: #ffd700;
    margin-top: 4px;
}

.dr1060alert-content p {
    font-size: 0.92rem;
    color: rgba(226,232,240,0.85);
    line-height: 1.6;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .dr1060alerts {
        padding: 70px 15px;
    }

    .dr1060alerts-header h2 {
        font-size: 2.2rem;
    }

    .dr1060alerts-grid {
        gap: 18px;
    }

    .dr1060alert-media {
        min-height: 200px;
    }
}