/* Breaking Banner */
.breaking-banner {
  background: #ff0000;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  padding: 10px;
  margin-bottom: 20px;
}
.breaking-banner .time {
  font-weight: normal;
  margin-left: 10px;
}

/* Video Section */
.video-section {
  background: #f9f9f9;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
}
.video-section h2 {
  font-size: 22px;
  margin-bottom: 10px;
}
.video-section iframe {
  width: 100%;
  height: 315px;
  border: none;
}

/* News Section */
.news-section {
  background: #fff;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
}
.news-section h2 {
  font-size: 22px;
  margin-bottom: 10px;
}
#news-feed {
  min-height: 150px;
  font-size: 16px;
}

/* News Item Card */
.news-item {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 12px;
  margin-bottom: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.news-item strong {
  font-size: 18px;
  color: #222;
  display: block;
  margin-bottom: 6px;
}
.news-item small {
  color: #666;
  font-size: 14px;
}
.news-item a {
  display: inline-block;
  margin-top: 8px;
  color: #0073aa;
  text-decoration: none;
  font-weight: bold;
}
.news-item a:hover {
  text-decoration: underline;
}
.news-item img {
  margin-top: 10px;
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Image Grid */
.image-grid {
  margin-top: 30px;
}
.image-grid h2 {
  font-size: 22px;
  margin-bottom: 15px;
}
.image-grid .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.image-grid .grid-item {
  background: #fafafa;
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}
.image-grid .grid-item:hover {
  transform: scale(1.05);
}
.image-grid img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}
.image-grid .image-title {
  margin-top: 8px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
.image-grid .image-title a {
  color: #0073aa;
  text-decoration: none;
}
.image-grid .image-title a:hover {
  text-decoration: underline;
  color: #d54e21;
}

/* Bottom Banner */
.bottom-banner {
  background: #ff0000;
  color: #fff;
  text-align: center;
  font-size: 18px;
  padding: 12px;
  margin-top: 30px;
}

/* Responsive */
@media (max-width: 768px) {
  .breaking-banner {
    font-size: 18px;
  }
  .video-section iframe {
    height: 220px;
  }
  .image-grid .grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .image-grid .grid {
    grid-template-columns: 1fr;
  }
  .video-section iframe {
    height: 200px;
  }
}
