@font-face {
  font-family: 'Oswald';
  src: url('../fonts/Oswald-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
body {
   font-family: 'Oswald', sans-serif;
}
.main-content {
  max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}
/* Top VIP banner */
.most_top_bar {
  background-color: #1f8f86;
  text-align: center;
  padding: 12px 10px;
}

/* Region wrapper */
.most_top_bar .region-most-top-bar {
  max-width: 1200px;
  margin: 0 auto;
}

/* Remove default paragraph spacing */
.most_top_bar p {
  margin: 0;
}

/* Link styling */
.most_top_bar a.wp-block-button__link {
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  background: transparent;
}

/* Hover effect */
.most_top_bar a.wp-block-button__link:hover {
  text-decoration: underline;
}

/* Left Content & Right Side Bar Area START */

.node__content {
  display: flex;
  gap: 20px; /* optional spacing */
  max-width: 100%;
  margin-top: 20px;
}

/* Left side (max 750px) */
.node__content .left_content_area_cont {
  flex: 0 1 920px;
  max-width: 920px;
  width: 100%;
  
}

/* Right side (remaining space) */
.node__content .right_side_bar_cont {
  flex: 1;
}

.node__content .left_content_area_cont table.table td,
.node__content .left_content_area_cont table.table th {
  padding-left: 10px;
  padding-right: 10px;
}
.node__content .left_content_area_cont a {
  color:#16746d;
}
.node__content .left_content_area_cont a:hover {
  color:#0a0a0a;
}

.node__content .right_side_bar_cont a {
  color:#0a0a0a;
}

.node__content .right_side_bar_cont a:hover {
  color:#16746d;
}




/* ✅ Mobile: stack */
@media (max-width: 768px) {
  .node__content {
    flex-direction: column;
  }

  .node__content .left_content_area_cont,
  .node__content .right_side_bar_cont {
    max-width: 100%;
    width: 100%;
  }
}


/* Left Content & Right Side Bar Area END */
