body {
  margin: 0;
  background-color: #ddd;
  font-family: sans-serif;
}

.container {
  width: 750px;
  margin: 0 auto;
  background-color: white;
  padding: 10px;
}

.top-bar {
  width: 100%;
  display: block;
}

/* Navbar */
.navbar {
  background: #eee;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 8px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  font-size: 14px;
}

.navbar a {
  color: #333;
  text-decoration: none;
  margin: 0 5px;
}

/*Buttons*/

/* Primary Button (bold, color change on hover) */
.primary-button {
  width: 150px;
  border: 2px solid black;
  background-color: white;
  color: black;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  font-weight: bold;

  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.primary-button:hover {
  background-color: #FE0034;
  color: white;
  border-color: #FE0034;
  transform: scale(1.05);
}

/* Secondary Button (normal weight, no color change on hover, grows slightly) */
.secondary-button {
  width: 150px;
  border: 2px solid #919191;
  background-color: white;
  color: #919191;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  font-weight: normal;

  transition:
    transform 0.3s ease; /* Only transform transitions */
}

.secondary-button:hover {
  background-color: white !important; /* Keep background white */
  color: #919191 !important;             /* Keep text black */
  border-color: #919191 !important;     /* Keep border black */
  transform: scale(1.05);              /* Still scale */
}


/* Headlines */
.headlines {
  display: flex;
  gap: 20px;
  margin-top: 15px;
}

.headline {
  flex: 1;
}

.headline h2 {
  font-size: 16px;
}

.story-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-top: 5px;
}

/* Generic image box */
.box {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #ccc;
  margin-top: 5px;
}

/* Grid Section */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin: 20px 0;
}

.story {
  font-size: 14px;
}

/* Mini Interviews */
.interviews {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}

.mini-story {
  width: 32%;
  font-size: 13px;
}

.box.mini {
  aspect-ratio: 16 / 9;
  background-color: #ccc;
}

/* Bottom Section */
.bottom {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.live-coverage {
  flex: 2;
}

.tweets {
  flex: 1;
  font-size: 11px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


.tweet-box {
  height: 40px;
  background-color: #eee;
  margin-bottom: 10px;
}

/* Footer */
footer {
  text-align: center;
  font-size: 12px;
  color: #555;
}

footer a {
  color: #00f;
  text-decoration: none;
}

/* Highlights */
.live { color: #E00000; font-weight: bold; }
.interactive { color: #008477; font-weight: bold; }
.watch { color: darkgreen; font-weight: bold; }
.news { color: #0069D4; font-weight: bold; }
.online { color: darkorange; font-weight: bold; }
.timestamp { font-size: 11px; color: #666; margin: 4px 0; }
