/* Header section*/
#news-header {
  color: var(--new-y9, #f2e6ce);

  /* Highlighted text */
  font-family: "Season Mix !important";
  font-style: normal;
  padding-top: 0px;
  padding-bottom: 100px;
}

#news-header .row {
  display: flex;
  column-gap: 80px;
}

#news-header .column-valign-middle h2 {
  color: var(--new-y9, #f2e6ce);

  /* Highlighted text */
  font-family: "Season Mix" !important;
  font-size: 36px;
  font-style: normal;
  font-weight: 470;
  line-height: 140%; /* 50.4px */
  letter-spacing: -0.36px;
}

#news-header .copy {
  padding-right: 5rem;
}

/* Category Navigation Header */
.news-category-nav-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid #f2e6ce;
}

.news-category-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 auto;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.nav-label-large {
  font-family: "Season Mix", Arial, sans-serif;
  font-size: 25px;
  font-weight: 470;
  color: #f2e6ce;
}

.nav-button {
  font-family: "Season Mix", Arial, sans-serif;
  font-size: 20px;
  font-weight: 420;
  color: #f2e6ce;
  background: transparent;
  border: 1px solid #f2e6ce;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
}

.nav-button.active {
  background: #703045;
  border-color: #f2e6ce;
}

.nav-button:hover {
  background: #703045;
  border-color: #f2e6ce;
}

/* Body section*/
.news-posts-section {
  background-color: #592436;
  color: var(--new-y9, #f2e6ce);
  font-family: "Season Mix", Arial, sans-serif;
  font-style: normal;
  padding: 0;
  min-height: 100vh;
}

.news-posts-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 160px 20px 20px 80px;
  display: flex;
  justify-content: center;
}

.news-posts-inner {
  width: 90%;
}

/* News Post Styling */
.news-post {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-bottom: 60px;
  padding: 0;
}

/* Category Label */
.news-category-label {
  border: 1px solid var(--new-o6, #faa289);
  background: var(--new-o6, #faa289);
  color: #592436;
  width: 400px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  user-select: none;
}

.news-category-label:hover {
  background: #e8937a;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.news-category-label:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.category-icon {
  display: flex;
  margin-right: 8px;
  font-size: 16px;
}

.category-text {
  font-family: "Season Mix", Arial, sans-serif;
  font-size: 20px;
  font-weight: 420;
}

/* Post Header */
.news-post-header {
  margin-bottom: 20px;
}

.news-post-title {
  font-family: "Season Mix" !important;
  font-size: 28px;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 12px;
  color: #f2e6ce;
}

.news-post-title a {
  color: #f2e6ce;
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-post-title a:hover {
  color: #ff8c42;
}

.news-post-date {
  font-size: 16px;
  color: #f2e6ce;
  opacity: 0.9;
  font-weight: 400;
}

/* Post Body */
.news-post-body {
  font-family: "Season Mix", Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  color: #f2e6ce;
  margin-bottom: 20px;
}
.news-post-body br {
  display: none;
}

.news-post-body p {
  margin-bottom: 16px;
}

.learn-more-link {
  color: #f2e6ce;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.learn-more-link:hover {
  color: #ff8c42;
}

/* Pagination Styles */
.news-pagination {
  margin-top: 40px;
  text-align: center;
}

.pagination-info {
  margin-bottom: 20px;
  font-family: "Season Mix", Arial, sans-serif;
  font-size: 16px;
  color: #faf3e6;
  text-align: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(242, 230, 206, 0.3);
}

.pagination-info span {
  display: inline-block;
}

.pagination-info strong {
  color: #faa289;
  font-weight: 600;
}

.current-page {
  font-weight: 600;
  color: #ff8c42;
}

.total-pages {
  font-weight: 400;
}

.pagination-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pagination-btn {
  display: inline-block;
  padding: 10px 16px;
  font-family: "Season Mix", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #592516;
  background: #faa289;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 4px;
  width: 45px;
}

.pagination-btn:hover {
  opacity: 0.8;
}

.pagination-btn.current {
  background: #faa289;
  border: 1px solid #592516;
  font-weight: 600;
}

.prev-btn,
.next-btn {
  display: flex;
  justify-content: center;
  background: #f2ccc2;
  border-color: #402219;
  height: 45px;
  padding: 4px;
}

.prev-btn:hover,
.next-btn:hover {
  background: #ff8c42;
  border-color: #ff8c42;
}

.prev-btn img,
.next-btn img {
  width: 29px;
}

/* Signup section */

#sign-up .row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

#sign-up h1 {
  font-family: "Season Mix" !important;
  font-size: 72px;
  color: #faeae6;
}

#sign-up .info-box-item {
  padding: 0;
}

#sign-up .info-box-item__inner p {
  color: #faeae6;
}

#sign-up .contact-us {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

#sign-up .contact-us a {
  color: #faeae6;
}
#sign-up .contact-us a:hover::after {
  background-color: #faeae6;
}

#sign-up .privacy {
  margin-top: -1rem;
  display: flex;
  column-gap: 2rem;
}

#sign-up .privacy a {
  font-family: "Season Mix";
  color: #faeae6;
  font-size: 24px;
  font-style: normal;
  font-weight: 670;
  line-height: 25.6px;
}

#sign-up .privacy a:hover::after {
  background-color: #faeae6;
}

#sign-up .col-xs-12h4 {
  font-family: "Season Mix" !important;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

/* Current Filter Information */
.current-filter-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(242, 230, 206, 0.3);
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 30px;
  font-family: "Season Mix", Arial, sans-serif;
  color: #faf3e6;
}

.current-filter-info span {
  font-size: 16px;
}

.current-filter-info strong {
  color: #faa289;
  font-weight: 600;
}

.clear-filter {
  color: #f2e6ce;
  text-decoration: underline;
  font-size: 14px;
  transition: color 0.3s ease;
  padding: 8px 16px;
  border: 1px solid rgba(242, 230, 206, 0.5);
  border-radius: 4px;
}

.clear-filter:hover {
  color: #ff8c42;
  border-color: #ff8c42;
}

/* Arabic translation layout temp for English*/
body.rtl .news-post {
  /* flex-direction: row; */
  /* direction: ltr; */
}
body.rtl .news-post-body {
  direction: ltr !important;
}

@media (max-width: 1024px) {
  .news-post {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Hero */
  #news-header {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  #news-header .row {
    flex-direction: column;
  }

  #news-header .copy {
    padding: 1rem;
    padding-right: 1rem;
  }

  /* News section tabs */
  .news-category-nav-container {
    flex-direction: column;
    align-items: initial;
    padding-bottom: 1rem;
  }
  .news-category-nav {
    flex-direction: column;
    gap: 1rem;
    margin: 0 1rem;
  }

  .nav-item {
    width: 100%;
  }

  .nav-button {
    width: 100%;
  }

  .nav-label-large {
    margin: 1rem;
    margin-top: 0;
    width: 100%;
  }

  /* News posts */

  .news-posts-section .container {
    padding: 0;
    margin-top: 32px;
  }

  .news-post {
    flex-direction: column;
    gap: 1rem;
  }

  .news-post-title {
    font-size: 24px;
  }

  .news-post-body {
  }

  .news-post-date {
    font-size: 20px;
  }

  .news-category-label {
    font-size: 12px;
    padding: 6px 12px;
    width: fit-content;
  }

  .pagination-controls {
    gap: 8px;
  }

  .pagination-btn {
    padding: 8px 12px;
    font-size: 12px;
  }

  .pagination-info {
    font-size: 14px;
    padding: 10px;
    margin: 0 10px 20px 10px;
  }

  .current-filter-info {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    margin: 0 10px 20px 10px;
  }

  .clear-filter {
    width: 100%;
    text-align: center;
  }

  /* .menu-nav {
    display: block !important;
    position: relative;
    top: 0;
    right: 0;
    z-index: 1000;
  } */
}
