body {
  font-family: "Montserrat", Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #222;
  background: #fff;

}

.news-hero {
  background: url("top.jpg") center/cover no-repeat;
  min-height: 70vh;
  position: relative;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.news-logo {
  position: absolute;
  top: 40px;
  left: 60px;
  background: none;
  color: #fff;
  font-size: 2rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2200;
  padding: 0;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 2px;
}
.news-hero-center {
  flex: 1;
  text-align: center;
  margin-top: 150px;
}
.news-hero-center h1 {
  font-size: 3.5rem;
  letter-spacing: 2px;
  margin-bottom: 0px;
  color: #fff;
  text-align: center;
}
.news-hero-center p {
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
  text-align: center;
}
.news-menu-toggle {
  position: absolute;
  top: 40px;
  right: 60px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2200;
  padding: 0;
}

.news-nav-links {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 210;
  list-style: none;
  margin: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.news-nav-links.open {
  display: flex;
  opacity: 1;
  visibility: visible;
}
.news-nav-links li {
  margin: 24px 0;
}
.news-nav-links a {
  color: #222;
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 2px;
  transition: color 0.2s;
}
.news-nav-links a:hover {
  color: #2092a7;
}
.news-close-nav {
  position: absolute;
  top: 24px;
  right: 32px;
  background: #fff;
  color: #222;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 220;
  transition: background 0.2s, color 0.2s;
}
.news-close-nav:hover {
  background: #2092a7;
  color: #fff;
}
.news-nav-bg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 200;
}
.news-nav-bg.show {
  display: block;
}
body.menu-open {
  overflow: hidden;
}

.news-main {
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 20px 0 20px;
  display: flex;
  flex-direction: column;
}
.news-content-wrapper {
  display: flex;
  /* gap: 40px; */
}
.news-blog-grid {
  flex: 2;
}
.news-blog-row {
  display: flex;
  gap: px;
  margin-bottom: 40px;
}
.news-blog-card {
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  /* align-items: flex-start; */
  transition: box-shadow 0.2s;
}

.news-blog-card img {
  width: 350px;
  height: 220px;
  object-fit: cover;
  display: block;
}
.news-blog-date {
  font-size: 0.95rem;
  color: #888;
  margin: 18px 0 6px 20px;
}
.news-blog-title-link {
  font-size: 1.2rem;
  font-weight: 700;
  color: #222;
  margin-left: 20px;
  margin-bottom: 18px;
  text-decoration: none;
  transition: color 0.2s;
}
.news-blog-title-link:hover {
  color: #2092a7;
}

.news-pagination {
  display: flex;
  gap: 18px;
  justify-content: flex-start;
  margin: 30px 0 0 10px;
}
.news-page-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #ddd;
  background: #fff;
  color: #222;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: border 0.2s, color 0.2s, background 0.2s;
  outline: none;
}
.news-page-btn.active,
.news-page-btn:hover {
  border: 2px solid #2092a7;
  color: #2092a7;
  background: #fdf6f3;
}

.news-sidebar {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.news-search-container {
  background: white;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 18px 18px 10px 18px;
}
.news-search-input {
  width: 93%;
  padding: 10px 14px;
  border-radius: 0px;
  border: 1px solid #eee;
  font-size: 1rem;
  outline: none;
}
.news-popular-posts {
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 18px 18px 10px 18px;
}
.news-popular-posts h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.news-popular-post {
  display: flex;
  align-items: center;
  gap: px;
  margin-bottom: 16px;
}
.news-popular-post img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: 0px;
}
.news-popular-date {
  font-size: 0.85rem;
  color: #888;
}
.news-popular-title {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  margin-top: 2px;
}
.news-popular-post a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.news-popular-post a:hover .news-popular-title {
  color: #2092a7;
}
.news-categories {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 18px 18px 10px 18px;
}
.news-categories h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.news-categories ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-decoration: none;
}
.news-categories li {
  margin-bottom: 12px;
}
.news-categories a {
  color: #222;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
}
.news-categories a span {
  color: #888;
  font-size: 0.95rem;
  margin-left: 6px;
}
.news-categories a:hover {
  color: #2092a7;
}

.news-categories-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.news-category-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}
.news-category-row:last-child {
  border-bottom: none;
}
.news-category-row a {
  color: #2092a7;
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 500;
  flex: 1;
  transition: color 0.2s;
}
.news-category-row a:hover {
  color: #14677a;
}
.news-category-row span {
  color: #888;
  font-size: 1.05rem;
  font-weight: 400;
  margin-left: 32px;
}

.footer {
  background: #181818;
  color: #fff;
  padding: 60px 0 0 0;
  margin-top: 60px;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  justify-content: space-between;
}
.footer-section {
  flex: 1 1 200px;
  min-width: 200px;
}
.footer-section h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-section ul li {
  margin-bottom: 12px;
}
.footer-section ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-section ul li a:hover {
  color: #2092a7;
}
.subscribe-form {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.subscribe-form input[type="email"] {
  padding: 8px 12px;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
  outline: none;
}
.subscribe-form button {
  background: #2092a7;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.subscribe-form button:hover {
  background: #222;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin: 30px 0 0 0;
}
.footer-social a {
  color: #fff;
  font-size: 1.3rem;
  transition: color 0.2s;
}
.footer-social a:hover {
  color: #2092a7;
}
.footer-bottom {
  text-align: center;
  font-size: 1rem;
  color: #bbb;
  margin: 30px 0 0 0;
  padding-bottom: 30px;
}
.footer hr {
  border: none;
  border-top: 1px solid #333;
  margin: 40px 0 0 0;
}

@media (max-width: 1150px) {
  .footer-container,
  .news-content-wrapper {
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
  }
  .news-hero-inner {
    padding: 20px 16px 0 16px;
  }
}
@media (max-width: 900px) {
  .news-blog-row {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .footer-container {
    flex-direction: column;
    gap: 24px;
  }
  .news-hero-center h1 {
    font-size: 2.2rem;
  }
  .news-hero-center p {
    font-size: 1rem;
  }
  .news-blog-card img {
    width: 100%;
    height: auto;
    max-width: 100%;
  }
  
}
@media (max-width: 700px) {
  .news-hero,
  .news-hero-inner,
  .news-hero-center {
    min-height: 60vh;
    padding: 0 6px;
  }
  .news-hero-center h1 {
    font-size: 1.5rem;
  }
  .news-hero-center p {
    font-size: 0.95rem;
  }
  .news-hero-inner {
    flex-direction: column;
    align-items: center;
    padding: 10px 4px 0 4px;
  }
  .footer-container {
    flex-direction: column;
    gap: 12px;
    padding: 0 8px;
  }
  .footer-section {
    min-width: 0;
    width: 100%;
  }
  .news-blog-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: auto;
    padding: 0 0 16px 0;
  }
  .news-blog-card img {
    width: 100%;
    height: auto;
  }
  .news-blog-row {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .news-sidebar {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 0 4px;
  }
  .news-search-input {
    width: 100%;
  }
  
}
.news-categories li {
  display: flex;
  justify-content: space-between;
}
.news-categories a {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

/* ✅ Mobile Ultra Small Screens Fix (150px–320px) */
@media (max-width: 320px) {
  body {
    font-size: 14px;
    overflow-x: hidden;
  }
}
