@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

/* -----------------------------------
   Matchday – Next Match Layout Styles
----------------------------------- */

.matchday-next-simple {
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  text-align: left;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Invisible table structure for layout */
.matchday-next-table {
  width: 100%;
  border-collapse: collapse;
  border-width: 0px;
  border-spacing: 0;
}

.matchday-next-simple td {
  border: none !important;
  background: transparent !important;
  vertical-align: middle;
}

/* --------------------
   Text Column Styling
-------------------- */
.matchday-next-title {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0;
}

.matchday-next-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: #ddd;
}

/* --------------------
   Watch Now Button
-------------------- */
.matchday-next-button {
  text-align: right;
  width: 1%;
  white-space: nowrap;
}

.matchday-next-button .watch-now {
  display: inline-block;
  background-color: #F0BA60;
  color: #631832;
  padding: 8px 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: background 0.3s ease, color 0.3s ease;
}

.matchday-next-button .watch-now:hover {
  color: #FFFFFF;
  background-color: #e0a94f;
}

/* --------------------
   Responsive Behaviour
-------------------- */
@media (max-width: 600px) {
  .matchday-next-table,
  .matchday-next-table tr,
  .matchday-next-table td {
    display: block;
    width: 100%;
    text-align: left;
  }

  .matchday-next-button {
    margin-top: 12px;
    text-align: left;
  }

  .matchday-next-button .watch-now {
    padding: 10px 40px;
  }
}
