/* Custom CSS to fix menu display issues */
.nav-container {
  display: block !important;
  width: 100%;
  background-color: white;
  padding: 0;
  text-align: right;
}

.nav-menu {
  display: flex !important;
  justify-content: flex-end;
}

.nav-menu ul {
  display: flex !important;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  list-style: none;
  margin: 0;
}

.nav-menu a {
  display: inline-block;
  background-color: transparent;
  color: #333333;
  padding: 0.25rem 0.5rem;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: bold;
  margin-left: 1px;
}

.nav-menu a:hover {
  opacity: 0.9;
  text-decoration: none;
}

.nav-menu a.active {
  background-color: #8B7355;
  color: white;
}

/* Mobile menu styles */
.mobile-nav ul {
  display: flex !important;
  flex-direction: column;
  align-items: flex-end;
  margin: 0;
  padding: 0;
}

/* Read more link styles */
.read-more-link {
  color: #dc2626 !important; /* text-red-600 equivalent */
  text-decoration: none;
}

/* Override any other styles that might affect the read-more links */
a.read-more-link {
  color: #dc2626 !important;
}

.mobile-nav li {
  list-style: none;
  margin: 2px 0;
  max-width: 150px;
  width: 100%;
}

.mobile-nav a {
  display: block;
  background-color: transparent;
  color: #333333;
  padding: 0.25rem 0.5rem;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: bold;
  text-align: center;
}

.mobile-nav a:hover {
  opacity: 0.9;
  text-decoration: none;
}

.mobile-nav a.active {
  background-color: #8B7355;
  color: white;
}
