html, body {
  height: 100%;
  margin: 0;
  background: #000;
  overflow: hidden; /* 🔒 stop page scroll on desktop */
}

.container-fluid {
  height: 100vh; /* full viewport */
}

.row {
  display: flex;
  height: 100vh; /* full viewport height */
  width: 100%;
}

/* Left side */
.featured {
  flex: 1;
  height: 100%; /* fill column */
  display: flex;
}

.featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* 🔥 fill and crop */
  border-radius: 0;   /* remove to make edge-to-edge */
  display: block;
}

/* Right side */
.notices-wrap {
  flex: 1;
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr !important; /* ✅ always 1 column */
  gap: 10px;
  overflow-y: auto;
}

.notice img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

/* On mobile, stack layout */
@media (max-width: 575px) {
  html, body { overflow: auto; }
  .container-fluid { height: initial; }
  .row { display: block; height: initial; }
  .featured { display: block; height: auto; }
  .featured img { height: auto; object-fit: contain; }
  .notices-wrap {
    grid-template-columns: 1fr !important;
    overflow-y: visible;
    min-height: 80vh;
  }
}
