body{
    background: #ededed;
}
.header nav ul li a{
    color: #000 !important;
    text-shadow: 1px 1px 1px #fff ;
}
.logo img.logoWhite,
.sticky .logo img.logoWhite {
    display: none;
}
.search-icon{
    display: none;
}
.logo img.grayLogo,
.sticky .logo img.grayLogo{
    display: block;
}
.menu-toggle {
    display: inline-block;
    color: #7f7f7f;
    font-size: 21px;
    line-height: 9px;
    cursor: pointer;
}
.search-icon{
    display: none;
}
.header nav {
    display: none;
}
.header nav ul {
    justify-content: flex-end;
}
/*News*/
.newexMed {
    color: #111;
    padding-bottom: 50px;
    padding-top: 20px;
}
.newexMed h1 {
  text-align: center;
  margin: 50px 0 20px;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 2px;
}

.navTabs {
  text-align: center;
  margin-bottom: 50px;
}

.navTabs a {
  margin: 0 15px;
  text-decoration: none;
  color: #111;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
}

.navTabs a.active {
  font-weight: bold;
  border-bottom: 2px solid #111;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 60px;
}

.news-card {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.news-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid #eee;
  transition: transform 0.3s ease, opacity 0.3s ease;
  margin-bottom: 15px;
}

.news-card img:hover {
  transform: scale(1.03);
  opacity: 0.9;
}

.news-meta {
  font-size: 12px;
  text-transform: uppercase;
  color: #666;
  display: flex;
  justify-content: space-between;
}

.news-title {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

.news-title a {
    font-size: 11px;
    line-height: 16px;
    color: #666;
    text-decoration: none;
    display: block;
    margin-top: 5px;
}

.news-title a:hover {
  text-decoration: underline;
}

/* Hide elements */
.hidden {
  display: none !important;
}