/* =====================================================
   PAGADIAN CITY PORTAL — Advanced Animation & Motion System
   Premium CSS-first animation layer for all portal pages
   ===================================================== */

/* ===== SCROLL REVEAL SYSTEM ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Direction variants */
.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays for children */
.stagger-children > *:nth-child(1) { transition-delay: 0ms; }
.stagger-children > *:nth-child(2) { transition-delay: 80ms; }
.stagger-children > *:nth-child(3) { transition-delay: 160ms; }
.stagger-children > *:nth-child(4) { transition-delay: 240ms; }
.stagger-children > *:nth-child(5) { transition-delay: 320ms; }
.stagger-children > *:nth-child(6) { transition-delay: 400ms; }
.stagger-children > *:nth-child(7) { transition-delay: 480ms; }
.stagger-children > *:nth-child(8) { transition-delay: 560ms; }
.stagger-children > *:nth-child(9) { transition-delay: 640ms; }
.stagger-children > *:nth-child(10) { transition-delay: 720ms; }
.stagger-children > *:nth-child(11) { transition-delay: 800ms; }
.stagger-children > *:nth-child(12) { transition-delay: 880ms; }

/* ===== AURORA / AMBIENT BACKGROUND ===== */
.aurora-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.aurora-bg::before,
.aurora-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    animation: auroraFloat 25s ease-in-out infinite;
}

.aurora-bg::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.6), transparent 70%);
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.aurora-bg::after {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.5), transparent 70%);
    bottom: -10%;
    right: -5%;
    animation-delay: -12s;
}

@keyframes auroraFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(60px, -40px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 50px) scale(0.95);
    }
    75% {
        transform: translate(40px, 20px) scale(1.05);
    }
}

/* Third aurora orb via extra element */
.aurora-orb {
    position: fixed;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.4), transparent 70%);
    filter: blur(120px);
    opacity: 0.08;
    top: 40%;
    left: 30%;
    pointer-events: none;
    z-index: 0;
    animation: auroraFloat 30s ease-in-out infinite;
    animation-delay: -8s;
}

/* ===== FLOATING PARTICLES ===== */
.particle-field {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(212, 160, 23, 0.4);
    border-radius: 50%;
    animation: particleDrift linear infinite;
}

@keyframes particleDrift {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) translateX(10px) scale(1);
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-10vh) translateX(-20px) scale(0.5);
        opacity: 0;
    }
}

/* ===== ENHANCED CARD INTERACTIONS ===== */
.service-card,
.quick-link,
.timeline-content,
[class*="card"] {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.3s ease;
}

/* Magnetic tilt effect class (applied via JS) */
.magnetic-tilt {
    transform-style: preserve-3d;
    perspective: 800px;
}

/* ===== GLOWING BORDER EFFECT ===== */
.glow-border {
    position: relative;
    overflow: hidden;
}

.glow-border::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        rgba(212, 160, 23, 0.4) 10%,
        transparent 20%,
        rgba(14, 165, 233, 0.3) 40%,
        transparent 50%,
        rgba(212, 160, 23, 0.3) 60%,
        transparent 70%,
        rgba(14, 165, 233, 0.4) 90%,
        transparent 100%
    );
    border-radius: inherit;
    z-index: -1;
    animation: glowRotate 6s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glow-border:hover::after {
    opacity: 1;
}

@keyframes glowRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== TEXT SHIMMER EFFECT ===== */
.text-shimmer {
    background: linear-gradient(
        90deg,
        rgba(212, 160, 23, 1) 0%,
        rgba(255, 215, 0, 1) 40%,
        rgba(255, 255, 255, 1) 50%,
        rgba(255, 215, 0, 1) 60%,
        rgba(212, 160, 23, 1) 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 4s ease-in-out infinite;
}

@keyframes textShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ===== COUNTER / NUMBER ANIMATION ===== */
.count-up {
    display: inline-block;
    transition: all 0.3s ease;
}

/* ===== RIPPLE CLICK EFFECT ===== */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple-wave {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: rippleExpand 0.6s ease-out forwards;
    pointer-events: none;
}

@keyframes rippleExpand {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

/* ===== ENHANCED BUTTON MICRO-INTERACTIONS ===== */
.nav-btn,
.btn,
button[type="submit"],
.service-card__arrow {
    position: relative;
    overflow: hidden;
}

/* Shine sweep on hover */
.nav-btn::after,
.btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent
    );
    transform: skewX(-25deg);
    transition: left 0.6s ease;
    pointer-events: none;
}

.nav-btn:hover::after,
.btn:hover::after {
    left: 125%;
}

/* ===== SMOOTH SECTION TRANSITIONS ===== */
section,
.services-section,
.timeline-section,
.quick-links-section,
.stats-section,
.about-section {
    position: relative;
}

/* Gradient divider between sections */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.3), rgba(14, 165, 233, 0.3), transparent);
    margin: 0;
    border: none;
}

/* ===== LOADING / SKELETON STATES ===== */
.skeleton {
    background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.05) 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s ease-in-out infinite;
    border-radius: 8px;
}

@keyframes skeletonShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ===== TOOLTIP ANIMATION ===== */
[data-tooltip] {
    position: relative;
}

[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: rgba(15, 23, 42, 0.95);
    color: #e2e8f0;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(212, 160, 23, 0.2);
    z-index: 1000;
}

[data-tooltip]:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(-4px);
}

/* ===== PROGRESS BAR ANIMATION ===== */
.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--sp-gold), var(--sp-gold-light));
    border-radius: 3px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.progress-bar__fill.animate {
    transform: scaleX(1);
}

/* ===== ENHANCED SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.8);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--sp-gold), var(--sp-blue));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--sp-gold-light), var(--sp-blue-light));
}

/* ===== SMOOTH PAGE LOAD ===== */
.page-enter {
    animation: pageEnter 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pageEnter {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== FLOATING ACTION ELEMENTS ===== */
.float-gentle {
    animation: floatGentle 6s ease-in-out infinite;
}

@keyframes floatGentle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.float-slow {
    animation: floatSlow 8s ease-in-out infinite;
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(2deg); }
}

/* ===== SCROLL PROGRESS INDICATOR ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sp-gold), var(--sp-gold-light), var(--primary));
    z-index: 9999;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.1s linear;
    will-change: transform;
}

/* ===== PARALLAX DEPTH LAYERS ===== */
.parallax-slow {
    will-change: transform;
    transition: transform 0.1s linear;
}

.parallax-medium {
    will-change: transform;
    transition: transform 0.1s linear;
}

/* ===== GLASSMORPHISM ENHANCED ===== */
.glass-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(212, 160, 23, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 40px rgba(212, 160, 23, 0.05);
    transform: translateY(-4px);
}

/* ===== TYPING CURSOR EFFECT ===== */
.typing-cursor::after {
    content: '|';
    animation: blink 1s step-end infinite;
    color: var(--sp-gold);
    font-weight: 100;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ===== PULSE DOT (live indicators) ===== */
.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    position: relative;
}

.pulse-dot::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.3);
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { transform: scale(0.8); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0; }
}

/* ===== SMOOTH IMAGE LOAD ===== */
img {
    opacity: 1;
    transition: opacity 0.4s ease;
}

img[data-src] {
    opacity: 0;
}

img[data-src].loaded {
    opacity: 1;
}

/* ===== HOVER UNDERLINE ANIMATION ===== */
.hover-line {
    position: relative;
    display: inline-block;
}

.hover-line::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--sp-gold), var(--primary));
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hover-line:hover::after {
    width: 100%;
}

/* ===== RESPONSIVE MOTION PREFERENCES ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        opacity: 1;
        transform: none;
    }

    .aurora-bg,
    .aurora-orb,
    .particle-field {
        display: none;
    }
}

/* ===== MOBILE OPTIMIZATIONS ===== */
@media (max-width: 768px) {
    .aurora-bg::before,
    .aurora-bg::after {
        filter: blur(80px);
        opacity: 0.08;
    }

    .aurora-orb {
        display: none;
    }

    .particle-field .particle {
        width: 2px;
        height: 2px;
    }

    .reveal { transform: translateY(25px); }
    .reveal-left { transform: translateX(-30px); }
    .reveal-right { transform: translateX(30px); }
}
/* CDRRMO dashboard layout override: give the situational map more width
   while keeping the recent alerts panel usable on desktop and stacked on mobile. */
.ops-main .cols-2-wide {
    grid-template-columns: minmax(0, 2.55fr) minmax(280px, 0.75fr) !important;
}

@media (max-width: 1100px) {
    .ops-main .cols-2-wide {
        grid-template-columns: minmax(0, 2fr) minmax(260px, 0.85fr) !important;
    }
}

@media (max-width: 900px) {
  .ops-main .cols-2-wide {
    grid-template-columns: 1fr !important;
  }
}

/* Compact the Hazard Maps hero so the map gets more usable space */
.hm-hero {
  width: min(70%, 760px) !important;
  margin: 0 auto 0.45rem !important;
  padding: 4.55rem 1rem 0.75rem !important;
  min-height: 0;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 12px 28px rgba(8, 22, 38, 0.18);
}

.hm-hero h1 {
  font-size: clamp(1.55rem, 2.8vw, 2.15rem) !important;
  margin-bottom: 0.2rem !important;
  line-height: 1;
}

.hm-hero p {
  max-width: 32rem;
  font-size: clamp(0.82rem, 0.98vw, 0.94rem) !important;
  line-height: 1.38 !important;
  margin: 0 auto !important;
}

@media (max-width: 1100px) {
  .hm-hero {
    width: min(78%, 720px) !important;
  }
}

@media (max-width: 768px) {
  .hm-hero {
    width: calc(100% - 1rem);
    margin: 0 0.5rem 0.75rem;
    padding: 4.8rem 1rem 0.8rem !important;
    border-radius: 0 0 18px 18px;
  }

  .hm-hero h1 {
    font-size: 1.55rem !important;
  }

  .hm-hero p {
    font-size: 0.86rem !important;
    line-height: 1.34 !important;
  }
}

.ec-hero {
  width: min(80%, 860px) !important;
  margin: 0 auto 0.55rem !important;
  padding: 4.9rem 1rem 0.9rem !important;
  min-height: 0;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 12px 28px rgba(8, 22, 38, 0.18);
}

.ec-hero h1 {
  font-size: clamp(1.7rem, 3vw, 2.3rem) !important;
  margin-bottom: 0.3rem !important;
  line-height: 1.02;
}

.ec-hero p {
  max-width: 34rem;
  font-size: clamp(0.84rem, 1.02vw, 0.96rem) !important;
  line-height: 1.42 !important;
  margin: 0 auto !important;
}

.pagasa-alert-drawer {
  top: 5.35rem !important;
  right: 0;
  margin-right: 1rem;
  width: min(360px, calc(100vw - 1rem)) !important;
  height: auto !important;
  max-height: min(72vh, 720px) !important;
  border-radius: 20px !important;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(2, 8, 23, 0.36) !important;
}

@media (max-width: 1100px) {
  .ec-hero {
    width: min(86%, 760px) !important;
  }
}

@media (max-width: 768px) {
  .ec-hero {
    width: calc(100% - 1rem) !important;
    margin: 0 0.5rem 0.7rem !important;
    padding: 4.7rem 1rem 0.85rem !important;
  }

  .ec-hero h1 {
    font-size: 1.58rem !important;
  }

  .ec-hero p {
    font-size: 0.87rem !important;
    line-height: 1.36 !important;
  }

  .pagasa-alert-drawer {
    top: 4.85rem !important;
    width: min(94vw, 340px) !important;
    margin-right: 0.5rem;
    max-height: min(68vh, 640px) !important;
  }
}

/* Force live page overrides against inline page CSS */
html body .hm-hero {
  width: min(70%, 760px) !important;
  margin: 0 auto 0.45rem !important;
  padding: 4.55rem 1rem 0.75rem !important;
  min-height: 0 !important;
  border-radius: 0 0 18px 18px !important;
  box-shadow: 0 12px 28px rgba(8, 22, 38, 0.18) !important;
}

html body .hm-hero h1 {
  font-size: clamp(1.55rem, 2.8vw, 2.15rem) !important;
  margin-bottom: 0.2rem !important;
  line-height: 1 !important;
}

html body .hm-hero p {
  max-width: 32rem !important;
  font-size: clamp(0.82rem, 0.98vw, 0.94rem) !important;
  line-height: 1.38 !important;
  margin: 0 auto !important;
}

html body .ec-hero {
  width: min(80%, 860px) !important;
  margin: 0 auto 0.55rem !important;
  padding: 4.9rem 1rem 0.9rem !important;
  min-height: 0 !important;
  border-radius: 0 0 18px 18px !important;
  box-shadow: 0 12px 28px rgba(8, 22, 38, 0.18) !important;
}

html body .ec-hero h1 {
  font-size: clamp(1.7rem, 3vw, 2.3rem) !important;
  margin-bottom: 0.3rem !important;
  line-height: 1.02 !important;
}

html body .ec-hero p {
  max-width: 34rem !important;
  font-size: clamp(0.84rem, 1.02vw, 0.96rem) !important;
  line-height: 1.42 !important;
  margin: 0 auto !important;
}

html body .pagasa-alert-drawer {
  top: 5.35rem !important;
  right: 1rem !important;
  left: auto !important;
  width: min(360px, calc(100vw - 2rem)) !important;
  height: auto !important;
  max-height: min(72vh, 720px) !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 18px 48px rgba(2, 8, 23, 0.36) !important;
}

html body .ops-main #tab-dashboard .cols-2-wide {
  grid-template-columns: minmax(0, 2.55fr) minmax(260px, 0.75fr) !important;
  align-items: stretch !important;
}

html body .ops-main #tab-dashboard .cols-2-wide > .panel:first-child {
  min-width: 0 !important;
}

html body .ops-main #tab-dashboard .cols-2-wide > .panel:last-child {
  min-width: 260px !important;
  max-width: 320px !important;
}

html body .ops-main #tab-dashboard .cols-2-wide > .panel:last-child .panel-body {
  min-height: 180px !important;
}

html body .ops-main #tab-dashboard .cols-2-wide > .panel:last-child .panel-body:has(> .empty-state),
html body .ops-main #tab-dashboard .cols-2-wide > .panel:last-child .panel-body:has(> .empty) {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

html body .ops-main #tab-dashboard .cols-2-wide > .panel:last-child .panel-body > *:only-child {
  margin: 0 auto !important;
}

@media (max-width: 1100px) {
  html body .hm-hero {
    width: min(78%, 720px) !important;
  }

  html body .ec-hero {
    width: min(86%, 760px) !important;
  }

  html body .ops-main #tab-dashboard .cols-2-wide {
    grid-template-columns: minmax(0, 2fr) minmax(240px, 0.85fr) !important;
  }

  html body .ops-main #tab-dashboard .cols-2-wide > .panel:last-child {
    min-width: 240px !important;
    max-width: 300px !important;
  }
}

@media (max-width: 768px) {
  html body .hm-hero {
    width: calc(100% - 1rem) !important;
    margin: 0 0.5rem 0.75rem !important;
    padding: 4.8rem 1rem 0.8rem !important;
  }

  html body .hm-hero h1 {
    font-size: 1.55rem !important;
  }

  html body .hm-hero p {
    font-size: 0.86rem !important;
    line-height: 1.34 !important;
  }

  html body .ec-hero {
    width: calc(100% - 1rem) !important;
    margin: 0 0.5rem 0.7rem !important;
    padding: 4.7rem 1rem 0.85rem !important;
  }

  html body .ec-hero h1 {
    font-size: 1.58rem !important;
  }

  html body .ec-hero p {
    font-size: 0.87rem !important;
    line-height: 1.36 !important;
  }

  html body .pagasa-alert-drawer {
    top: 4.85rem !important;
    right: 0.5rem !important;
    width: min(94vw, 340px) !important;
    max-height: min(68vh, 640px) !important;
  }

  html body .ops-main #tab-dashboard .cols-2-wide {
    grid-template-columns: 1fr !important;
  }

  html body .ops-main #tab-dashboard .cols-2-wide > .panel:last-child {
    min-width: 0 !important;
    max-width: none !important;
  }
}

/* Temporary stabilization:
   hide the weak/no-data Situational Map block on the CDRRMO dashboard
   until it is replaced by the real barangay-aware map implementation. */
html body .ops-main #tab-dashboard .cols-2-wide > .panel:first-child {
  display: none !important;
}

html body .ops-main #tab-dashboard .cols-2-wide {
  grid-template-columns: 1fr !important;
}

html body .ops-main #tab-dashboard .cols-2-wide > .panel:last-child {
  min-width: 0 !important;
  max-width: none !important;
}
