/* ============= FONTS ============= */
@font-face {
  font-family: "Greta_h_l_regular";
  src: url("./fonts/Greta_h_l_light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Greta_h_l_regular";
  src: url("./fonts/Greta_h_l_lightItalic.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Greta_h_l_regular";
  src: url("./fonts/Greta_h_l_regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Greta_h_l_regular";
  src: url("./fonts/Greta_h_l_regularItalic.otf") format("opentype");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Greta_h_l_regular";
  src: url("./fonts/Greta_h_l_medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Greta_h_l_regular";
  src: url("./fonts/Greta_h_l_mediumItalic.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Greta_h_l_regular";
  src: url("./fonts/Greta_h_l_bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Narkis";
  src: url("./fonts/NarkissBlock-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Narkis";
  src: url("./fonts/NarkissBlock-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GretaArabic";
  src: url("./fonts/Greta_Arabic_Regular.otf") format("opentype");
  font-weight: 400;
}
@font-face {
  font-family: "GretaArabic";
  src: url("./fonts/Greta_Arabic_Bold.otf") format("opentype");
  font-weight: 700;
}
.deskHide {
  display: none !important;
}
@media (max-width: 480px) {
  .deskHide {
    display: block !important;
  }
}

.he-only {
  display: none !important;
}

body {
  font-size: 16px;
  color: #1F1F23;
  font-family: "Narkis", sans-serif;
  line-height: 30px;
}
@media (max-width: 480px) {
  body {
    font-size: 20px;
    line-height: 28px;
  }
}

body.no-scroll {
  overflow: hidden;
  height: 100vh; /* Prevent vertical scrolling */
}

.width_100 {
  width: 100%;
}

h1 {
  font-size: 40px;
  font-family: "Greta_h_l_regular", sans-serif;
  font-weight: 700;
  line-height: 40px;
}
@media (max-width: 480px) {
  h1 {
    font-size: 24px;
    line-height: 27px;
  }
}
h1 a {
  color: #1F1F23;
}

h2, h3, h4, h5, h6 {
  font-family: "Greta_h_l_regular", sans-serif;
  font-weight: 700;
}

a {
  color: #8EAEA6;
}

a:hover {
  color: #AAC6BF;
}

p {
  font-family: "Narkis", sans-serif;
  font-size: 19px;
  line-height: 30px;
}
@media (max-width: 480px) {
  p {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  p {
    font-size: 16px;
  }
}

.greta {
  font-family: "Greta_h_l_regular", sans-serif;
}
.greta a {
  font-family: "Greta_h_l_regular", sans-serif;
}
.greta * {
  font-family: "Greta_h_l_regular", sans-serif;
}

.greta_arabic {
  font-family: "GretaArabic", sans-serif !important;
}
.greta_arabic a {
  font-family: "GretaArabic", sans-serif !important;
}
.greta_arabic * {
  font-family: "GretaArabic", sans-serif !important;
}

.f_17 {
  font-size: 17px;
}

.bold {
  font-weight: 700;
}

.container {
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 480px) {
  .container {
    width: 80%;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .container {
    width: 80%;
  }
}

.Desktop {
  display: block;
}
@media (max-width: 480px) {
  .Desktop {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .Desktop {
    display: none;
  }
}

.Mobile {
  display: none;
}
@media (max-width: 480px) {
  .Mobile {
    display: block;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .Mobile {
    display: block;
  }
}

.wide-container {
  width: 1375px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 5%;
  padding-left: 5%;
}
@media (max-width: 480px) {
  .wide-container {
    width: 90%;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .wide-container {
    width: 90%;
  }
}

.flex {
  display: flex;
}

.flex_center {
  justify-content: center;
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

.grid {
  display: grid;
  row-gap: 30px;
  -moz-column-gap: 30px;
       column-gap: 30px;
}

.grid-2 {
  grid-template-columns: 1fr 1fr;
}

.grid-large-post {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 480px) {
  .grid-large-post {
    grid-template-columns: 1fr;
    grid-auto-flow: dense;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .grid-large-post {
    grid-template-columns: 1fr;
    grid-auto-flow: dense;
  }
}

.black-logos-strip {
  background-color: #1F1F23;
  border-bottom: 1px solid white;
}

.green-logos-strip {
  background-color: #AAC6BF;
  border-bottom: 1px solid white;
}

.green-strip {
  font-size: 20px;
  line-height: 25px;
  background-color: #AAC6BF;
  padding: 45px 0px;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (max-width: 480px) {
  .green-strip {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .green-strip {
    display: none;
  }
}
.green-strip .strip-wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.green-strip .large-strip-text {
  font-size: 26px;
  line-height: 25px;
  font-weight: 700;
}
.green-strip .slot {
  width: 48%;
}

.author_date_line {
  font-size: 14px !important;
  color: #000; /* Change color to your desired value */
  display: flex;
  gap: 5px; /* Adds spacing between the elements */
}
@media (max-width: 480px) {
  .author_date_line {
    margin: 0px 0px 5px 0px;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .author_date_line {
    margin: 0px 0px 5px 0px;
  }
}

@media (max-width: 480px) {
  .caption {
    font-size: 9px;
    padding: 0px 5%;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .caption {
    font-size: 9px;
    padding: 0px 5%;
  }
}

.author_date_line .divider {
  margin: 0 8px; /* Adjust spacing around the divider */
}
@media (max-width: 480px) {
  .author_date_line .divider {
    margin: 0px 0px;
  }
}

.author_date_line .author,
.author_date_line .date {
  white-space: nowrap; /* Prevents wrapping */
}

/* ================================ */
/* ========================= General */
/* ================================ */
.main-page-wrap {
  padding: 0px 0px 30px 0px;
  position: relative;
}

.black-line-seperator {
  background-color: #1F1F23;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 5px 10px;
  margin-top: 30px;
  margin-bottom: 30px;
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 480px) {
  .black-line-seperator {
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .black-line-seperator {
    width: 100%;
  }
}
.black-line-seperator .main-title {
  font-size: 32px;
}
@media (min-width: 481px) and (max-width: 1024px) {
  .black-line-seperator .main-title {
    font-size: 23px;
  }
}
@media (max-width: 480px) {
  .black-line-seperator .main-title {
    font-size: 23px;
  }
}
.black-line-seperator .title-text {
  font-size: 16px;
  margin-inline-end: 10px;
  margin-top: 4px;
}

.support-btn {
  font-size: 20px;
  font-weight: 700;
  padding: 14px 10px 17px 10px;
  width: 40%;
  text-align: center;
}
@media (max-width: 480px) {
  .support-btn {
    width: 100%;
  }
}

.text_center {
  text-align: center;
}

.btn-hover {
  transition: 0.3s;
  transform: translateY(0px) scale(1);
}

.btn-hover:hover {
  transition: 0.3s;
  transform: translateY(-1px) scale(1.01);
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
}

.black-btn {
  background-color: #1F1F23;
}

.black-btn:hover {
  color: #AAC6BF;
}

.green-btn {
  background-color: #AAC6BF;
}

.green-btn:hover {
  color: #1F1F23;
}

.black-border {
  border: 1px solid #1F1F23;
}

.green-border {
  border: 1px solid #AAC6BF;
}

.green-text {
  color: #AAC6BF;
}
.green-text a {
  color: #AAC6BF;
}
.green-text a:hover {
  color: #AAC6BF;
}

.black-text {
  color: #1F1F23;
}
.black-text a {
  color: #1F1F23;
}
.black-text a:hover {
  color: #1F1F23;
}

.white-text {
  color: white;
}
.white-text a {
  color: white;
}

.dark-bg {
  background-color: #1F1F23;
}

.green-bg {
  border-bottom: 2px solid white;
  background-color: #AAC6BF;
}
.green-bg .newsletter-reg-btn {
  background-color: #1F1F23;
  color: white !important;
}

.large-post .image {
  height: 500px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 480px) {
  .large-post .image {
    height: 210px;
  }
}
.large-post .wrapper {
  display: flex;
}
@media (max-width: 480px) {
  .large-post .wrapper {
    flex-direction: column-reverse;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .large-post .wrapper {
    flex-direction: column-reverse;
  }
}
.large-post .wrapper .content {
  width: 50%;
  padding-inline-end: 15px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  .large-post .wrapper .content {
    width: 100%;
    padding: 0px;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .large-post .wrapper .content {
    width: 100%;
    padding: 0px;
  }
}
.large-post .wrapper .imageWrap {
  width: 50%;
  padding-inline-start: 15px;
}
@media (max-width: 480px) {
  .large-post .wrapper .imageWrap {
    width: 100%;
    padding: 0px;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .large-post .wrapper .imageWrap {
    width: 100%;
    padding: 0px;
  }
}

.large-media .image {
  height: 210px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 480px) {
  .large-media .image {
    height: 210px;
  }
}
.large-media .wrapper {
  display: flex;
  gap: 50px;
}
@media (max-width: 480px) {
  .large-media .wrapper {
    flex-direction: column-reverse;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .large-media .wrapper {
    flex-direction: column-reverse;
  }
}
.large-media .wrapper .content {
  width: 33%;
  padding-inline-end: 15px;
}
@media (max-width: 480px) {
  .large-media .wrapper .content {
    width: 100%;
    padding: 0px;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .large-media .wrapper .content {
    width: 100%;
    padding: 0px;
  }
}
.large-media .wrapper .imageWrap {
  width: 67%;
  padding-inline-start: 10px;
}
@media (max-width: 480px) {
  .large-media .wrapper .imageWrap {
    width: 100%;
    padding: 0px;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .large-media .wrapper .imageWrap {
    width: 100%;
    padding: 0px;
  }
}

.loop-large-post p {
  font-size: 24px;
}
@media (max-width: 480px) {
  .loop-large-post p {
    font-size: 16px;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .loop-large-post p {
    font-size: 16px;
  }
}
.loop-large-post h1 {
  font-size: 47px;
  line-height: 50px;
  margin-bottom: 30px;
  font-weight: 700;
}
@media (max-width: 480px) {
  .loop-large-post h1 {
    font-size: 24px;
    line-height: 27px;
    font-weight: 500;
  }
}
.loop-large-post h1 a {
  color: #1F1F23;
}
.loop-large-post h2 {
  font-size: 40px;
  line-height: 40px;
  margin-bottom: 30px;
}
@media (max-width: 480px) {
  .loop-large-post h2 {
    font-size: 24px;
    line-height: 27px;
  }
}
.loop-large-post h2 a {
  color: #1F1F23;
  font-weight: 700;
}
.loop-large-post .author_date_wrap p {
  font-size: 16px !important;
  font-family: "Narkis", sans-serif;
}

.large-media .podcast-icon-position {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.large-media .podcast-icon-position img {
  width: 61px;
}

.loop-regular-media .podcast-icon-position {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 10px;
}
.loop-regular-media .podcast-icon-position img {
  width: 36px;
}
.loop-regular-media h2 {
  min-height: 50px;
}

.loop-regular .image {
  height: 210px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.loop-regular .author_date_wrap p {
  font-size: 14px;
  font-family: "Narkis", sans-serif;
}
.loop-regular .content h2 {
  font-size: 20px;
  font-weight: 500;
  font-family: "Greta_h_l_regular", sans-serif;
}
@media (max-width: 480px) {
  .loop-regular .content h2 {
    font-size: 24px;
  }
}

.author-position {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  margin-top: 20px;
}
@media (max-width: 480px) {
  .author-position {
    flex-direction: column-reverse;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .author-position {
    flex-direction: column-reverse;
  }
}

.posts-container-simple {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.posts-container-simple p {
  line-height: 17px;
  font-size: 14px;
}
@media (max-width: 480px) {
  .posts-container-simple p {
    font-size: 16px;
    line-height: 22px;
  }
}

.home .posts-container {
  padding-top: 0px !important;
}
@media (max-width: 480px) {
  .home .posts-container {
    padding-top: 20px !important;
  }
}

.posts-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  row-gap: 30px;
  -moz-column-gap: 34px;
       column-gap: 34px;
  padding-top: 75px;
}
@media (max-width: 480px) {
  .posts-container {
    padding-top: 24px;
  }
}
.posts-container p {
  line-height: 17px;
  font-size: 14px;
}
@media (max-width: 480px) {
  .posts-container p {
    font-size: 16px;
    line-height: 22px;
  }
}
.posts-container .loop-large-post p {
  font-size: 24px;
  line-height: 25px;
}
@media (max-width: 480px) {
  .posts-container .loop-large-post p {
    font-size: 16px;
    line-height: 22px;
  }
}
.posts-container .loop-large-post h2 {
  margin: 0px;
  font-weight: 500;
}
@media (max-width: 480px) {
  .posts-container .loop-large-post h2 {
    margin: 15px 0px 5px 0px;
  }
}

.post-item {
  box-sizing: border-box;
}
.post-item h2 {
  margin: 15px 0 5px 0px;
}
@media (max-width: 480px) {
  .post-item h1 {
    margin: 20px 0 5px 0px;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .post-item h1 {
    margin: 20px 0 5px 0px;
  }
}

/* First post styling */
.posts-container > .post-item:first-child {
  width: 100%; /* Full width */
}

/* Other posts styling */
.posts-container > .post-item:not(:first-child) {
  flex: 1 1 30%;
  min-height: 100%;
  max-width: 31%;
}
@media (min-width: 481px) and (max-width: 1024px) {
  .posts-container > .post-item:not(:first-child) {
    flex: 1 1 50%;
    width: calc(50% - 17px); /* Adjust for the gap */
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .posts-container > .post-item:not(:first-child) {
    flex: auto;
    width: 100%; /* Adjust for the gap */
    max-width: 100%;
  }
}
.posts-container > .post-item:not(:first-child) .wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.posts-container > .post-item:not(:first-child) .content {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}
.posts-container > .post-item:not(:first-child) .author-position {
  margin-top: auto; /* Pushes this section to the bottom */
}

.posts-container-simple > .post-item {
  width: calc(33.333% - 15px); /* Adjust for the gap */
}
@media (min-width: 481px) and (max-width: 1024px) {
  .posts-container-simple > .post-item {
    width: calc(50% - 15px); /* Adjust for the gap */
  }
}
@media (max-width: 480px) {
  .posts-container-simple > .post-item {
    width: 100%; /* Adjust for the gap */
  }
}

.posts-container-archive {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .posts-container-archive {
    gap: 20px;
  }
}

.posts-container-archive > .post-item {
  width: calc(33.333% - 15px); /* Adjust for the gap */
}
@media (min-width: 481px) and (max-width: 1024px) {
  .posts-container-archive > .post-item {
    width: calc(50% - 15px); /* Adjust for the gap */
  }
}
@media (max-width: 480px) {
  .posts-container-archive > .post-item {
    width: 100%; /* Adjust for the gap */
  }
}

.logo-title-wrap {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.logo-title-wrap .logo-wrap {
  width: 15%;
}
.logo-title-wrap .title-wrap {
  width: 80%;
}

.narkis_block {
  font-family: "Narkis", sans-serif;
  font-weight: 700;
}

.narkis {
  font-family: "Narkis", sans-serif;
}

.narkis_24 {
  font-family: "Narkis", sans-serif;
  font-size: 24px;
  line-height: 25px;
}

.pagination {
  display: flex;
}
.pagination .nav-links {
  direction: ltr;
  display: flex;
}
.pagination a {
  color: #1F1F23;
  font-size: 24px;
  margin: 0px 10px;
  display: flex;
}
.pagination .current {
  color: #AAC6BF;
  text-decoration: underline;
  font-size: 24px;
  margin: 0px 10px;
}
.pagination img {
  margin: 0px 20px;
}
@media (max-width: 480px) {
  .pagination img {
    margin: 0px 5px;
  }
}

.pagination img {
  transform: rotate(180deg);
}

.secondary-title .chevron {
  display: none;
}
@media (max-width: 480px) {
  .secondary-title .chevron {
    display: flex;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .secondary-title .chevron {
    display: flex;
  }
}
.secondary-title .chevron.ltr-specific {
  transform: rotate(180deg);
}
.secondary-title .arrow.ltr-specific {
  transform: rotate(180deg);
}

.stories-loop .wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
@media (max-width: 480px) {
  .stories-loop .wrapper {
    flex-direction: row;
    gap: 10px;
    background-color: rgb(245, 245, 245);
  }
}
.stories-loop .wrapper .content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .stories-loop .wrapper .content {
    width: 50%;
    padding-top: 10px;
    padding-bottom: 50px;
    justify-content: flex-start;
  }
}
@media (max-width: 480px) {
  .stories-loop .wrapper .content h2 {
    font-size: 18px;
    margin: 0px;
  }
}
.stories-loop .wrapper .logo-title-wrap {
  gap: 20px;
  justify-content: flex-start;
}
@media (max-width: 480px) {
  .stories-loop .wrapper .logo-title-wrap {
    flex-direction: column-reverse;
    gap: 0px;
  }
}
@media (max-width: 480px) {
  .stories-loop .wrapper .image-link-wrap {
    width: 50%;
    display: block;
  }
}
@media (max-width: 480px) {
  .stories-loop .wrapper .image {
    height: 190px;
  }
}
.stories-loop .wrapper .logo-wrap {
  padding-top: 3px;
}
@media (max-width: 480px) {
  .stories-loop .wrapper .logo-wrap {
    padding-top: 0px;
    position: absolute;
    bottom: 10px;
    left: 10px;
  }
}
@media (max-width: 480px) {
  .stories-loop .wrapper .title-wrap {
    font-size: 18px;
    line-height: 20px;
  }
}

.podcast-body {
  margin-top: 70px;
}

.podcasts-container .large-media .wrapper, .videos-container .large-media .wrapper {
  height: 100%;
}
.podcasts-container .large-media .content, .videos-container .large-media .content {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.podcasts-container .author_date_line, .videos-container .author_date_line {
  margin-bottom: 0px;
  padding-bottom: 0px;
  margin-top: auto;
}
.podcasts-container .wrapper, .videos-container .wrapper {
  gap: 0px;
}

/* ================================ */
/* ========================= Header */
/* ================================ */
.mobile_lang_switcher {
  padding: 20px 0px;
}
.mobile_lang_switcher ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile_lang_switcher ul li {
  position: relative;
  display: inline-block; /* Align menu items horizontally */
  margin-inline-start: 0px;
  margin-inline-end: 20px;
}
.mobile_lang_switcher ul li a {
  display: block;
  padding: 10px 0px;
  text-decoration: none;
  color: black;
  font-family: "Greta_h_l_regular", sans-serif;
}
.mobile_lang_switcher ul li ul {
  display: none; /* Hide submenus by default */
  position: absolute;
  top: calc(100% + 2px); /* Position below the parent */
  inset-inline-start: 0; /* Align to the parent */
  background: black; /* Background color for submenu */
  padding: 0;
  z-index: 1000; /* Ensure submenu is above other elements */
}
.mobile_lang_switcher ul li ul li {
  display: block; /* Align submenu items vertically */
}
.mobile_lang_switcher ul li ul li a {
  padding: 5px 10px;
  color: white;
  background: black;
  white-space: nowrap; /* Prevent text wrapping */
}
.mobile_lang_switcher ul li ul li a:hover {
  color: #AAC6BF;
}
.mobile_lang_switcher ul li:hover > ul {
  display: block; /* Show submenu on hover */
}

.desktopNav {
  position: relative;
}

.desktopNav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktopNav ul li {
  position: relative;
  display: inline-block; /* Align menu items horizontally */
}

.desktopNav ul li a {
  display: block;
  padding: 10px 0px;
  text-decoration: none;
  color: black;
  background: white;
  font-family: "Greta_h_l_regular", sans-serif;
}

.desktopNav ul li ul {
  display: none; /* Hide submenus by default */
  position: absolute;
  top: calc(100% + 2px); /* Position below the parent */
  inset-inline-start: 0; /* Align to the parent */
  background: black; /* Background color for submenu */
  padding: 0;
  z-index: 1000; /* Ensure submenu is above other elements */
}

.desktopNav ul li ul li {
  display: block; /* Align submenu items vertically */
}

.desktopNav ul li ul li a {
  padding: 5px 10px;
  color: white;
  background: black;
  white-space: nowrap; /* Prevent text wrapping */
}

.desktopNav ul li ul li a:hover {
  color: #AAC6BF;
}

.desktopNav ul li:hover > ul {
  display: block; /* Show submenu on hover */
}

.logos {
  height: 168px;
  align-items: center;
  justify-content: center;
  display: flex;
}
@media (max-width: 480px) {
  .logos {
    height: 100px;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .logos {
    height: 100px;
  }
}

.toggle_window {
  position: absolute;
  top: 100px;
  width: 100%;
  height: calc(100% - 100px);
  background-color: #AAC6BF;
  right: 0px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  flex-direction: column;
}
.toggle_window .innerWrap {
  max-height: 340px;
  overflow: auto;
}

.toggle_menu {
  display: none;
  padding: 20px 10% 70px 10%;
  justify-content: space-between;
  z-index: 9999;
}

.toggle_mag {
  display: none;
  z-index: 9999;
  padding: 20px 10% 70px 10%;
  flex-direction: column;
}
.toggle_mag .close_search {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  justify-content: center;
}
.toggle_mag .close_search img {
  align-self: flex-end;
}
.toggle_mag .search-wrapper {
  margin-top: 100px;
  border: 1px solid #1F1F23;
}
.toggle_mag .search-wrapper .search-form {
  width: 100%;
}
.toggle_mag .search-wrapper .search-field {
  padding: 15px 10px;
}

.open {
  display: flex;
}

.hamburger {
  z-index: 999;
}

.secondary-menu-mobile {
  list-style: none;
  padding-right: 0px;
  width: 100%;
}

.menu-item {
  cursor: pointer;
}

.secondary-menu-mobile {
  list-style: none;
  padding: 0;
  margin: 0;
}
.secondary-menu-mobile li {
  font-size: 24px;
  font-weight: 700;
  border-bottom: 1px solid #1F1F23;
  padding: 15px 0px 7px 0px;
}
.secondary-menu-mobile .menu-item-has-children {
  width: 100%;
}
.secondary-menu-mobile .menu-item-has-children .menu-toggle {
  float: inline-end;
}
.secondary-menu-mobile .sub-menu {
  list-style: none;
  padding-right: 0px;
}
.secondary-menu-mobile .sub-menu li {
  font-size: 22px;
  font-weight: 400;
  border-top: none;
  border-bottom: none;
  padding: 5px 0px;
}
.secondary-menu-mobile a {
  color: #1F1F23;
}

.secondary-menu-mobile .menu-toggle {
  cursor: pointer;
  margin-left: 10px;
  font-size: 1.5em;
  font-weight: 400;
  display: inline-block;
}

.secondary-menu-mobile .sub-menu {
  display: none; /* Initially hide submenu */
  margin-left: 20px;
}

/* ================================ */
.nav-position {
  justify-content: space-between;
}

.header-logo {
  width: 500px;
  padding: 20px;
}
@media (max-width: 480px) {
  .header-logo {
    width: 75vw;
    min-width: 300px;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .header-logo {
    width: 50vw;
    min-width: 400px;
  }
}

.nav-container {
  border-top: 1px solid #D4D5D8;
  border-bottom: 1px solid #D4D5D8;
}
@media (max-width: 480px) {
  .nav-container {
    padding: 20px 0px;
  }
}

.nav-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.main-nav ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  padding-right: 0px;
}
.main-nav ul li {
  padding: 10px 0px;
  margin: 0px;
  margin-inline-end: 45px;
  border-bottom: 2px solid transparent;
}
.main-nav ul li a {
  color: black;
}
.main-nav ul li .sub-menu li {
  margin-inline-end: 0px;
  padding: 0px;
  font-weight: 700;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.main-nav ul li:hover {
  border-bottom: 2px solid black;
}
.main-nav ul .current-menu-item {
  border-bottom: 2px solid black;
}

@media (max-width: 480px) {
  .desktopNav {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .desktopNav {
    display: none;
  }
}

.mobileNav {
  display: none;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .mobileNav {
    display: flex;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .mobileNav {
    display: flex;
  }
}

.donaiton-btn {
  background-color: #1F1F23;
  padding: 1px 25px 0px 25px;
}
.donaiton-btn a {
  color: white;
  font-weight: 700;
}

/* Styling for the search container */
.desktop-search {
  margin: 0 auto;
  margin-inline-end: 10px;
}

.search-wrapper {
  position: relative;
  max-width: 400px; /* Adjust width as needed */
  border: 1px solid #D4D5D8; /* Border to match the image */
  box-sizing: border-box;
  display: flex;
  align-items: center;
  background: #fff; /* Ensure a white background */
}
.search-wrapper form {
  display: flex;
  align-items: center;
}

/* For most browsers */
input[type=search]::-webkit-search-cancel-button {
  display: none;
}

.search-page-search-wrap {
  margin-bottom: 30px;
  width: 75%;
}
@media (max-width: 480px) {
  .search-page-search-wrap {
    margin-bottom: 0px;
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .search-page-search-wrap {
    margin-bottom: 0px;
    width: 100%;
  }
}
.search-page-search-wrap .search-wrapper {
  margin-top: 60px;
  max-width: 100%; /* Adjust width as needed */
  border: 1px solid #1F1F23;
}
@media (max-width: 480px) {
  .search-page-search-wrap .search-wrapper {
    margin-bottom: 0px;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .search-page-search-wrap .search-wrapper {
    margin-bottom: 0px;
  }
}
.search-page-search-wrap .search-wrapper .search-field {
  padding: 5px 20px;
}
@media (max-width: 480px) {
  .search-page-search-wrap .search-wrapper .search-field {
    padding: 5px 10px;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .search-page-search-wrap .search-wrapper .search-field {
    padding: 5px 10px;
  }
}
.search-page-search-wrap .search-wrapper .search-field {
  left: 5px;
  font-size: 38px;
}
@media (max-width: 480px) {
  .search-page-search-wrap .search-wrapper .search-field {
    font-size: 22px;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .search-page-search-wrap .search-wrapper .search-field {
    font-size: 22px;
  }
}
.search-page-search-wrap .search-wrapper .search-submit {
  inset-inline-end: 5px;
}
.search-page-search-wrap .search-review {
  display: flex;
  justify-content: space-between;
}

/* Styling for the search input */
.search-wrapper .search-field {
  width: 100%;
  padding: 5px 10px 3px 10px;
  padding-inline-end: 40px; /* Space for the button icon */
  border: none;
  border-radius: 0px;
  outline: none; /* Ensures proper alignment for Hebrew */
  font-size: 16px;
  box-sizing: border-box;
  background-color: white;
}

/* Styling for the search button icon */
.search-wrapper .search-submit {
  background: none;
  border: none;
  position: absolute;
  inset-inline-end: -5px; /* Positioning the icon to the left */
  cursor: pointer;
  outline: none;
}

.search-wrapper .search-submit img {
  width: 20px; /* Adjust the size as needed */
  height: 20px;
  display: block;
}

.search-wrapper input:focus {
  outline: none; /* Remove focus outline */
}

.custom-language-switcher li {
  margin-inline-start: 20px;
}

/* ================================ */
/* ========================= Footer */
/* ================================ */
.newsletter-popup {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  background-color: #AAC6BF;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 999;
  display: none;
  /* Customize the label (the container) */
  /* Hide the browser's default checkbox */
  /* Create a custom checkbox */
  /* On mouse-over, add a grey background color */
  /* Create the checkmark/indicator (hidden when not checked) */
  /* Show the checkmark when checked */
  /* Style the checkmark/indicator*/
}
.newsletter-popup .close-popup {
  position: absolute;
  top: 10px;
  inset-inline-end: 20px;
  transform: rotate(45deg);
  display: inline-block;
  font-size: 50px;
  cursor: pointer;
}
.newsletter-popup .form-wrap {
  background-color: white;
  box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.25);
  padding: 10px;
  width: 1000px;
}
@media (max-width: 480px) {
  .newsletter-popup .form-wrap {
    width: 90%;
  }
}
.newsletter-popup .form-wrap .border-style {
  border: 1px solid #1F1F23;
  padding: 50px 50px 20px 50px;
}
@media (max-width: 480px) {
  .newsletter-popup .form-wrap .border-style {
    padding: 20px;
  }
}
.newsletter-popup .form-1 {
  display: flex;
  margin-bottom: 30px;
}
@media (max-width: 480px) {
  .newsletter-popup .form-1 {
    margin-bottom: 15px;
  }
}
.newsletter-popup .form-1 .first-checkbox {
  width: 10%;
  position: relative;
}
.newsletter-popup .form-1 .form-info {
  width: 90%;
}
.newsletter-popup .title {
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 700;
  margin-bottom: 40px;
}
@media (max-width: 480px) {
  .newsletter-popup .title {
    font-size: 26px;
    line-height: 32px;
  }
}
.newsletter-popup .form-title p {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  letter-spacing: 0.6px;
}
@media (max-width: 480px) {
  .newsletter-popup .form-title p {
    font-size: 22px;
    line-height: 22px;
    margin-bottom: 0.5em;
  }
}
.newsletter-popup .form-text {
  max-width: 580px;
  font-size: clamp(18px, 3vw, 19px);
  line-height: 1.4; /* improved for accessibility */
  margin-top: 10px;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .newsletter-popup .form-text {
    font-size: 14px;
    line-height: 17px;
  }
}
.newsletter-popup .checkboxes {
  font-size: clamp(22px, 4vw, 25px);
}
@media (max-width: 480px) {
  .newsletter-popup .checkboxes {
    font-size: 17px;
  }
}
.newsletter-popup .language-checkbox {
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .newsletter-popup .language-checkbox {
    line-height: 1.1;
    margin-bottom: 0px;
  }
}
.newsletter-popup .custom-checkbox-wrapper {
  display: block;
  position: relative;
  padding-left: 20px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.newsletter-popup .custom-checkbox-wrapper input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.newsletter-popup .checkmark {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  height: 35px;
  width: 35px;
  border: 1px solid #1F1F23;
  border-radius: 0px;
}
@media (max-width: 480px) {
  .newsletter-popup .checkmark {
    width: 16px;
    height: 16px;
    top: 5px;
  }
}
.newsletter-popup .custom-checkbox-wrapper:hover input ~ .checkmark {
  background-color: #ccc;
}
.newsletter-popup .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.newsletter-popup .custom-checkbox-wrapper input:checked ~ .checkmark:after {
  display: block;
}
.newsletter-popup .custom-checkbox-wrapper .checkmark:after {
  left: 10px;
  top: -1px;
  width: 13px;
  height: 28px;
  border: 1px solid #1F1F23;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
}
@media (max-width: 480px) {
  .newsletter-popup .custom-checkbox-wrapper .checkmark:after {
    left: 5px;
    top: -1px;
    width: 4px;
    height: 14px;
  }
}

.insert-email {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
@media (max-width: 480px) {
  .insert-email {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
.insert-email .email-form {
  display: flex;
  width: 400px; /* Adjust width as needed */
  border: 1px solid #333;
  background-color: #b3ccc7; /* Background color similar to your image */
  direction: rtl; /* Important for Hebrew alignment */
}
.insert-email .submit-btn {
  background-color: #1c1c1c;
  color: #ffffff;
  font-weight: bold;
  font-size: 24px;
  padding: 0px 20px 10px 20px;
  border: none;
  border-radius: 0px;
  cursor: pointer;
}
.insert-email .email-input {
  flex: 1;
  border: none;
  padding: 5px 10px 10px 10px;
  font-size: 20px;
  color: #999999;
  background: #ffffff;
  outline: none;
}
.insert-email .email-input::-moz-placeholder {
  color: #999999;
  font-weight: bold;
  letter-spacing: 1px;
}
.insert-email .email-input::placeholder {
  color: #999999;
  font-weight: bold;
  letter-spacing: 1px;
}

.support-strip {
  position: relative;
  z-index: 9;
  padding: 30px 0px;
}

.footer-support {
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .footer-support {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .footer-support {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer-support .first-part {
  align-items: center;
  width: 40%;
}
@media (max-width: 480px) {
  .footer-support .first-part {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .footer-support .first-part {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer-support .second-part {
  width: 60%;
  justify-content: flex-end;
}
@media (max-width: 480px) {
  .footer-support .second-part {
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .footer-support .second-part {
    width: 100%;
  }
}

.support-title {
  font-size: 50px;
  margin-inline-end: 20px;
  min-width: 165px;
}
@media (max-width: 480px) {
  .support-title {
    font-size: 35px;
    margin-bottom: 5px;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .support-title {
    font-size: 35px;
    margin-bottom: 5px;
  }
}

.support-text {
  font-size: 16px;
  width: 250px;
  line-height: 16px;
  margin-inline-end: 20px;
}
@media (max-width: 480px) {
  .support-text {
    width: 100%;
    margin-bottom: 18px;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .support-text {
    width: 100%;
    margin-bottom: 18px;
  }
}

.mobile-support-btn {
  display: none;
}
@media (max-width: 480px) {
  .mobile-support-btn {
    display: flex;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .mobile-support-btn {
    display: flex;
  }
}
.mobile-support-btn .text {
  background-color: white;
  width: 150px;
  height: 26px;
}
.mobile-support-btn .text span {
  display: flex;
  align-items: center;
  margin-top: -1px;
  padding: 0px 5px;
  font-size: 20px;
}
@media (max-width: 480px) {
  .mobile-support-btn .text span {
    font-size: 17px;
  }
}
.mobile-support-btn .arrow {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-support-btn .arrow img {
  width: 6px;
}

.footer-btn-lg {
  margin-inline-start: 20px;
  font-size: 16px;
  width: 50%;
}

.footer-menus {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 480px) {
  .footer-menus {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .footer-menus {
    grid-template-columns: repeat(1, 1fr);
  }
}

.footer-menu ul {
  padding-inline-start: 0px;
  list-style: none;
}

.footer-menu-title {
  font-size: 26px;
  min-height: 60px;
  margin-bottom: 30px;
  max-width: 170px;
  font-family: "Narkis", sans-serif;
  font-weight: 700;
}

.expanded-footer-styles {
  padding: 67px 0px;
  width: 100%;
}

.desktop-footer {
  display: flex;
}
@media (max-width: 480px) {
  .desktop-footer {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .desktop-footer {
    display: none;
  }
}

.mobile-footer {
  display: none;
  flex-direction: column;
}
@media (max-width: 480px) {
  .mobile-footer {
    display: flex;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .mobile-footer {
    display: flex;
  }
}

.mobile-wide-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.mobile-wide-container .newsletter-text {
  width: 60%;
}
.mobile-wide-container .social {
  width: 25%;
}

.terms-social {
  margin-top: 60px;
}

.terms {
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 480px) {
  .terms {
    font-size: 13px;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .terms {
    font-size: 13px;
  }
}

.seperator {
  margin: 0px 5px;
}

.social-icons img {
  margin: 0px 3px;
}

.newsletter-text {
  font-size: 16px;
  line-height: 19px;
}
.newsletter-text .mobile-support-btn {
  margin: 20px 0px;
}
.newsletter-text .mobile-support-btn .text span {
  margin-top: 3px;
}

html[lang=en-US] .single-newsletter-box .newsletter-open-btn {
  transform: rotate(180deg);
}

.newsletter-open-btn {
  cursor: pointer;
}

.newsletter-reg-btn {
  background-color: #AAC6BF;
  margin-top: 20px;
  cursor: pointer;
  color: #1F1F23 !important;
  display: flex;
  justify-content: space-between;
  padding: 3px 10px 7px 10px;
}
.newsletter-reg-btn .btn-arrow {
  display: inline-block;
}

html[lang=en-US] .newsletter-reg-btn .btn-arrow {
  display: inline-block;
  transform: rotate(180deg);
}

/* ======================================== */
/* ========================= Single Article */
/* ======================================== */
.more-articles-list {
  padding-inline-start: 14px !important;
}

.single-newsletter-box {
  background-color: #AAC6BF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  flex-direction: column;
  text-align: center;
  gap: 20px;
  width: 180px;
  margin-top: 100px;
}
.single-newsletter-box .newsletter-title {
  font-size: 28px;
  line-height: 30px;
  font-weight: 700;
}
.single-newsletter-box .newsletter-description {
  font-size: 16px;
  line-height: 19px;
}
.single-newsletter-box img {
  height: 75px;
  width: 75px;
}

.read_time {
  font-size: 14px;
  margin-bottom: 0px;
}
@media (max-width: 480px) {
  .read_time {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .read_time {
    display: none;
  }
}

.single-post .single-title h1 {
  font-weight: 700 !important;
}

.single-title-wrap {
  padding-top: 60px;
  justify-content: space-between;
  padding-bottom: 40px;
}
@media (max-width: 480px) {
  .single-title-wrap {
    flex-direction: column;
    padding-top: 30px;
    gap: 10px;
    padding-bottom: 20px;
  }
}
.single-title-wrap .single-title {
  width: calc(40% - 30px);
}
.single-title-wrap .single-title h1 {
  font-weight: 500;
}
@media (max-width: 480px) {
  .single-title-wrap .single-title {
    width: 100%;
    text-align: center;
  }
  .single-title-wrap .single-title h1 {
    margin: 0px;
    font-size: 38px;
    line-height: 40px;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .single-title-wrap .single-title {
    width: 100%;
    text-align: center;
  }
}
.single-title-wrap .author_date_wrap {
  display: none;
}
@media (min-width: 481px) and (max-width: 1024px) {
  .single-title-wrap .author_date_wrap {
    display: none;
  }
}
@media (max-width: 480px) {
  .single-title-wrap .author_date_wrap {
    display: flex;
    align-self: center;
  }
}
.single-title-wrap .author_date_line {
  justify-content: center;
}
.single-title-wrap .single-description {
  width: 55%;
}
@media (max-width: 480px) {
  .single-title-wrap .single-description {
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .single-title-wrap .single-description {
    width: 100%;
  }
}
.single-title-wrap .single-description p {
  font-size: 17px;
  line-height: 24px;
}
@media (max-width: 480px) {
  .single-title-wrap .single-description p {
    font-size: 20px;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .single-title-wrap .single-description p {
    font-size: 20px;
  }
}

.full-width-featured-image .featured-image {
  height: 400px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 480px) {
  .full-width-featured-image .featured-image {
    height: 188px;
  }
}

.featured-image-caption {
  margin-inline-start: auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 480px) {
  .featured-image-caption {
    font-size: 11px;
    line-height: 14px;
  }
}

.single-article-body figcaption {
  font-style: normal !important;
  font-size: 16px;
  line-height: 16px;
}
@media (max-width: 480px) {
  .single-article-body figcaption {
    font-size: 12px;
    line-height: 12px;
  }
}

.single-article-body {
  display: flex;
  margin-top: 50px;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .single-article-body {
    margin-top: 20px;
  }
}
.single-article-body .sidebar {
  width: 23%;
}
@media (max-width: 480px) {
  .single-article-body .sidebar {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .single-article-body .sidebar {
    display: none;
  }
}
.single-article-body .mobile-title {
  display: none;
}
@media (max-width: 480px) {
  .single-article-body .mobile-title {
    display: block;
    text-align: center;
  }
}
.single-article-body .body {
  width: 60%;
}
@media (max-width: 480px) {
  .single-article-body .body {
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .single-article-body .body {
    width: 100%;
  }
}
.single-article-body .body h2, .single-article-body .body h3, .single-article-body .body h4, .single-article-body .body h5, .single-article-body .body h6 {
  margin-top: 30px;
  margin-bottom: 10px;
}
.single-article-body .body a {
  text-decoration: underline;
}

.donate_banner_article {
  position: absolute;
  inset-inline-start: 0;
  bottom: 100px;
}
@media (min-width: 481px) and (max-width: 1024px) {
  .donate_banner_article {
    display: none;
  }
}
@media (max-width: 480px) {
  .donate_banner_article {
    display: none;
  }
}
.donate_banner_article .the_banner {
  width: 200px;
  height: 260px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Ensure the blockquote has a relative position to position the icon correctly */
.wp-block-quote {
  position: relative;
  padding-inline-end: 10%; /* Add padding to prevent overlap */
  padding-inline-start: 10%;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 60px;
  margin-bottom: 50px;
}
@media (max-width: 480px) {
  .wp-block-quote {
    padding-inline-end: 0%; /* Add padding to prevent overlap */
    padding-inline-start: 0%;
    margin-bottom: 30px;
    margin-inline-end: 5%;
    margin-inline-start: 10%;
  }
}
.wp-block-quote p {
  font-family: "Greta_h_l_regular", sans-serif;
  font-weight: 500;
  font-size: 25px;
  line-height: 30px;
  font-style: italic;
}

.author-wrapper {
  margin-bottom: 30px;
}

.single-article-author .author {
  font-size: 27px;
}
@media (max-width: 480px) {
  .single-article-author .author {
    font-size: 18px;
  }
}
.single-article-author .author a {
  color: #1F1F23;
}
.single-article-author .email {
  text-decoration: underline;
}
@media (max-width: 480px) {
  .single-article-author .email {
    margin-top: 0px;
    font-size: 13px;
  }
}

.author-section .writer-loop-date {
  margin-bottom: 30px;
}

.author-section .more-posts-button {
  padding: 7px 10px;
  margin-top: 35px;
  width: 180px;
  text-align: center;
  justify-content: center;
  gap: 10px;
}
.author-section .more-posts-button .arrow-left {
  display: inline-block;
}

html[lang=en-US] .author-section .more-posts-button .arrow-left {
  display: inline-block;
  transform: rotate(180deg);
  margin-inline-start: 10px;
}

.more-posts-button.desktop-button {
  display: flex;
}
@media (max-width: 480px) {
  .more-posts-button.desktop-button {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .more-posts-button.desktop-button {
    display: none;
  }
}

.more-posts-button.mobile-button {
  display: none;
}
@media (max-width: 480px) {
  .more-posts-button.mobile-button {
    display: flex;
    width: 100%;
    text-align: center;
    margin-top: 20px !important;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .more-posts-button.mobile-button {
    display: flex;
    width: 100%;
    text-align: center;
    margin-top: 20px !important;
  }
}

.more-posts-button {
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  font-family: "narkisBlock", sans-serif;
}
@media (max-width: 480px) {
  .more-posts-button a {
    display: inline-block;
    width: 100%;
  }
}
.more-posts-button .text {
  margin-left: 10px;
}
@media (max-width: 480px) {
  .more-posts-button .text {
    width: 100%;
    text-align: center;
  }
}

.writer-item .more-posts-button {
  margin-top: 10px;
  padding: 0px 15px;
}
.writer-item .more-posts-button .text {
  margin-left: 0px !important;
}

.more-articles {
  margin-top: 50px;
}
.more-articles .more-title {
  font-size: 20px;
  margin-bottom: 10px;
}

.more-article-item::marker {
  color: #9AB7B0;
}

.more-article-item {
  margin-bottom: 10px;
}
.more-article-item a {
  color: #9AB7B0;
  font-size: 20px;
  text-decoration: none !important;
}

.tag-items {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding-inline-start: 0px;
  padding: 30px 0px;
}
.tag-items li {
  border: 1px solid rgba(0, 0, 0, 0.3);
  color: rgba(0, 0, 0, 0.3);
  border-radius: 50px;
  padding: 0px 10px 5px;
  line-height: 1;
  margin-inline-end: 10px;
  margin-bottom: 10px;
  font-size: 22px;
}
.tag-items li a {
  color: rgba(0, 0, 0, 0.3);
  text-decoration: none !important;
  font-size: 16px;
}
.tag-items li:hover {
  color: white;
  background-color: rgba(0, 0, 0, 0.3);
}
.tag-items li:hover a {
  color: white;
}

.image.bg-cover {
  display: block;
  width: 100%;
  aspect-ratio: 16/9; /* or: height: 200px; */
  background-size: cover;
  background-position: center;
}

/* ======================================== */
/* ========================= Single Podcast */
/* ======================================== */
.single_podcast_authors.author-section {
  display: none;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (max-width: 480px) {
  .single_podcast_authors.author-section {
    display: block;
  }
}
.single_podcast_authors.author-section .author a {
  text-decoration: none;
  font-size: 22px;
}
.single_podcast_authors.author-section .email a {
  font-size: 14px;
}

.podcast-body-mobile {
  margin-bottom: 50px;
}

.single_podcast_embed {
  margin-top: 75px;
}
@media (max-width: 480px) {
  .single_podcast_embed {
    margin-top: 0px;
  }
}
@media (max-width: 480px) {
  .single_podcast_embed iframe {
    width: 100%;
  }
}

.single_media_head {
  padding: 50px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 480px) {
  .single_media_head {
    padding: 30px 0px;
  }
}
.single_media_head h1 {
  text-align: center;
  margin: 0px;
}
.single_media_head a {
  color: #1F1F23;
}

.media-list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding-right: 0px;
}
.media-list li {
  font-size: 28px;
  font-weight: 700;
}
@media (max-width: 480px) {
  .media-list li {
    font-size: 18px;
  }
}

.semi-full-wrapper {
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 480px) {
  .semi-full-wrapper {
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .semi-full-wrapper {
    width: 100%;
  }
}

.podcast-image {
  height: 490px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 480px) {
  .podcast-image {
    height: 300px;
  }
}

.channel-title {
  background-color: #1F1F23;
  color: white;
  font-size: 32px;
  padding: 5px 20px;
  margin-bottom: 40px;
  font-weight: 700;
}

.media-list {
  list-style: none;
  padding-right: 0px;
}

.podcast-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 20px;
}
.podcast-item .podcast-play-wrap {
  width: 70px;
}
@media (max-width: 480px) {
  .podcast-item .podcast-play-wrap {
    width: 40px;
  }
}
.podcast-item .podcast-episode-wrap {
  display: block;
  width: 100px;
}
@media (max-width: 480px) {
  .podcast-item .podcast-episode-wrap {
    width: 70px;
  }
}
.podcast-item .podcast-title-wrap {
  display: block;
  width: calc(100% - 170px);
}
@media (max-width: 480px) {
  .podcast-item .podcast-title-wrap {
    width: calc(100% - 110px);
  }
}
.podcast-item a {
  font-size: 22px;
  color: #1F1F23;
}
@media (max-width: 480px) {
  .podcast-item a {
    font-size: 18px;
  }
}
.podcast-item .podcast-title {
  font-size: 25px;
}
.podcast-item .podcast-guest {
  font-size: 21px;
}

.podcast-list {
  padding-inline-start: 0px;
}

.podcast-strip {
  background-color: #F5F5F5;
  padding: 50px 0px;
  margin: 100px 0px;
  position: relative;
}
@media (max-width: 480px) {
  .podcast-strip {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .podcast-strip {
    display: none;
  }
}
.podcast-strip .strip-wrap {
  align-items: center;
  justify-content: space-between;
}
.podcast-strip .text-wrap {
  width: 25%;
}
.podcast-strip .listen-text {
  font-size: 42px;
  line-height: 40px;
  width: 200px;
}
.podcast-strip .platform-row {
  width: 50%;
  justify-content: space-between;
}
.podcast-strip .platform-row .platform {
  font-size: 26px;
  white-space: nowrap;
}
.podcast-strip .platform-row .platform a {
  color: black;
}
.podcast-strip .floating-img {
  display: none;
  width: 40vw;
  padding-top: 40%;
  background-size: contain;
  position: absolute;
  left: 0;
  background-repeat: no-repeat;
}

/* ======================================== */
/* ================= Video Single ========= */
/* ======================================== */
.video-embed iframe {
  width: 100%;
  height: 560px;
}
@media (max-width: 480px) {
  .video-embed iframe {
    height: 300px;
  }
}
@media (max-width: 480px) {
  .video-embed .editors {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
  }
}

.video-content {
  width: 50%;
  font-size: 22px;
  line-height: 30px;
  margin-top: 40px;
  margin-bottom: 50px;
}
@media (max-width: 480px) {
  .video-content {
    width: 100%;
  }
}

.video-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 80px;
  list-style: none;
  padding-inline-start: 0px;
  margin-bottom: 70px;
}
@media (max-width: 480px) {
  .video-list {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
}
.video-list .video-thumbnail {
  height: 310px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.video_type_wrap {
  display: flex;
  flex-direction: row;
  margin-bottom: 10px;
  font-size: 22px;
}
@media (max-width: 480px) {
  .video_type_wrap {
    font-size: 18px;
  }
}
.video_type_wrap .video_play {
  margin-inline-end: 15px;
}
.video_type_wrap a {
  color: #1F1F23;
  font-size: 22px;
  font-weight: 400;
}
@media (max-width: 480px) {
  .video_type_wrap a {
    font-size: 18px;
  }
}

.video-item a {
  color: #1F1F23;
}
.video-item .video-title {
  color: #1F1F23;
  font-size: 36px;
  line-height: 40px;
  margin-top: 20px;
  display: block;
}
@media (max-width: 480px) {
  .video-item .video-title {
    font-size: 24px;
    line-height: 28px;
  }
}

.meta_div {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.youtube_embed iframe {
  width: 100%;
  height: 560px;
}

/* ======================================== */
/* ========================= Team Template  */
/* ======================================== */
.writers-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 36px;
       column-gap: 36px;
  row-gap: 36px;
}
@media (min-width: 481px) and (max-width: 1024px) {
  .writers-list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .writers-list {
    grid-template-columns: 1fr;
  }
}

.writer-loop {
  padding: 0px 0px 80px 0px;
}
.writer-loop .category-title:nth-of-type(1) {
  margin-top: 50px;
}
.writer-loop .category-title {
  margin-top: 100px;
  margin-bottom: 20px;
  text-align: center;
  font-size: 40px;
}

.writer-item {
  box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.2509803922);
  padding: 30px;
  min-height: 340px;
}

.image-and-info {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .image-and-info {
    flex-direction: column;
    text-align: center;
  }
}
.image-and-info .writer-thumbnail {
  width: 40%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 135px;
}
@media (max-width: 480px) {
  .image-and-info .writer-thumbnail {
    width: 50%;
    padding-top: 50%;
    margin-right: auto;
    margin-left: auto;
  }
}
.image-and-info .info {
  width: 60%;
  padding-inline-start: 20px;
}
@media (max-width: 480px) {
  .image-and-info .info {
    width: 100%;
    padding-inline-start: 0px;
  }
}
.image-and-info .position {
  font-size: 18px;
}
@media (max-width: 480px) {
  .image-and-info .position {
    font-size: 20px;
  }
}

/* ============================================== */
/* ========================= Search Results Page  */
/* ============================================== */
.search-filter-flex {
  display: flex;
  flex-direction: column;
}

.advanced-filters {
  display: none;
  margin-top: 10px;
  background: #ffffff;
  border-top: 1px solid #ddd;
  padding-top: 15px;
  margin-top: 10px;
}
@media (max-width: 480px) {
  .advanced-filters {
    border-top: 0px solid transparent;
  }
}

/* Overall Form Container */
html[lang=en-US] .search-filter-form {
  direction: ltr;
  text-align: left;
}

.search-filter-form {
  font-family: "Assistant", sans-serif;
  direction: rtl;
  text-align: right;
  border-radius: 10px;
  width: 100%;
  margin-bottom: 100px;
}

.search-form-input {
  width: 33%;
}
@media (max-width: 480px) {
  .search-form-input {
    width: 50%;
  }
}

.search-form-input.content-type {
  width: 33%;
}
@media (max-width: 480px) {
  .search-form-input.content-type {
    width: 100%;
  }
}

.search-filter-flex {
  width: 100%;
}

.search-form-input-wrap {
  gap: 20px;
}
@media (max-width: 480px) {
  .search-form-input-wrap {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .search-form-bg {
    background-color: #F7F7F7;
    padding: 20px;
  }
}

.search-form-date-inputs {
  display: flex;
  flex-direction: row;
  width: 67%;
  gap: 20px;
}
@media (max-width: 480px) {
  .search-form-date-inputs {
    width: 100%;
    flex-direction: row;
  }
}

/* Label and Title Style */
.search-filter-form label,
.search-filter-label,
#toggle-advanced-filters {
  font-size: 22px;
  color: #000;
  display: block;
  margin-bottom: 8px;
}

/* Form Elements */
.search-filter-form select,
.search-filter-form input[type=month],
.search-filter-form input[type=text],
.search-filter-form input[type=email],
.search-filter-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #1F1F23;
  font-size: 16px;
  border-radius: 0px;
  box-sizing: border-box;
  background: white;
  margin-bottom: 15px;
}
@media (max-width: 480px) {
  .search-filter-form select,
  .search-filter-form input[type=month],
  .search-filter-form input[type=text],
  .search-filter-form input[type=email],
  .search-filter-form textarea {
    max-width: 100%;
  }
}

/* Button Style */
.search-filter-form button,
#toggle-advanced-filters {
  color: rgba(0, 0, 0, 0.5);
  border: none;
  padding: 0px;
  border-radius: 6px;
  font-size: 22px;
  cursor: pointer;
  margin-top: 10px;
  text-decoration: underline;
}
@media (max-width: 480px) {
  .search-filter-form button,
  #toggle-advanced-filters {
    font-size: 16px;
    margin-top: 0px;
  }
}

/* On hover */
.search-filter-form button:hover,
#toggle-advanced-filters:hover {
  background-color: transparent !important;
}

.search-filter-form button:focus,
.search-filter-form button:active,
#toggle-advanced-filters:focus,
#toggle-advanced-filters:active {
  background-color: initial !important;
}

#submit-custom-search {
  width: 100%;
  background-color: #1F1F23;
  padding: 10px;
  height: -moz-fit-content;
  height: fit-content;
  text-decoration: none;
  color: #AAC6BF;
  border-radius: 0px;
  font-size: 34px;
}
@media (max-width: 480px) {
  #submit-custom-search {
    margin-top: 30px;
  }
}

#submit-custom-search:hover,
#submit-custom-search:focus,
#submit-custom-search:active {
  background-color: #1F1F23 !important;
  color: #AAC6BF !important;
}

.advanced-filters.active {
  display: block;
}

.search-filter-form label {
  display: block;
  margin: 10px 0 10px 0;
}

.search-results-count {
  margin-top: 10px;
  margin-bottom: 40px;
}
@media (max-width: 480px) {
  .search-results-count {
    font-size: 16px;
  }
}

.search-results .entry-title {
  font-size: 35px;
  line-height: 35px;
}
@media (max-width: 480px) {
  .search-results .entry-title {
    font-size: 24px;
    line-height: 27px;
  }
}
.search-results .article-info {
  display: flex;
  flex-direction: column;
}
.search-results .author_date_wrap {
  margin-top: auto;
}

.search-results-section .wide-post-display {
  flex-direction: row;
}
@media (max-width: 480px) {
  .search-results-section .wide-post-display {
    flex-direction: column;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .search-results-section .wide-post-display .wide-display-image {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .search-results-section .wide-post-display .article-info {
    width: 100%;
    padding: 10px 0px;
  }
}

.wide-post-display {
  display: flex;
  flex-direction: row;
  margin-bottom: 40px;
}
@media (max-width: 480px) {
  .wide-post-display {
    margin-bottom: 0px;
  }
}
.wide-post-display h2 {
  font-size: 55px;
  line-height: 55px;
}
@media (max-width: 480px) {
  .wide-post-display h2 {
    font-size: 23px;
    line-height: 25px;
  }
}
.wide-post-display .wide-display-image {
  width: 50%;
  height: 260px;
}
@media (max-width: 480px) {
  .wide-post-display .wide-display-image {
    height: 162px;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .wide-post-display .wide-display-image {
    height: 162px;
  }
}
.wide-post-display .wide-display-image .article-thumbnail {
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.wide-post-display .article-info {
  width: 50%;
  padding-inline-start: 20px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  .wide-post-display .article-info {
    padding-inline-end: 10px;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .wide-post-display .article-info {
    padding-inline-end: 10px;
  }
}
.wide-post-display .article-info a {
  color: #1F1F23;
}
.wide-post-display .Desktop.author-line {
  margin-top: auto;
}
.wide-post-display .Desktop.author-line .author_date_line {
  margin-bottom: 0px;
}
.wide-post-display .wide-p {
  font-size: 17px;
  line-height: 24px;
}
@media (max-width: 480px) {
  .wide-post-display .wide-p {
    font-size: 16px;
    line-height: 24px;
  }
}
.wide-post-display .wide-p p {
  font-size: 17px;
  line-height: 24px;
}
@media (max-width: 480px) {
  .wide-post-display .wide-p p {
    font-size: 16px;
    line-height: 16px;
  }
}

.card {
  background-color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-image {
  width: 100%; /* Full width of the container */
  height: 340px; /* Adjust height as needed */
  background-size: cover; /* Ensure the image covers the entire div */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Prevent image repetition */
}
@media (max-width: 480px) {
  .card-image {
    height: 290px;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .card-image {
    height: 290px;
  }
}

.card-content {
  padding: 50px 65px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - 340px); /* Adjust height based on the image */
}
@media (max-width: 480px) {
  .card-content {
    padding: 30px 16px 16px 16px;
  }
}

.minbar-issue-wrap .card-content {
  padding: 45px;
}
@media (max-width: 480px) {
  .minbar-issue-wrap .card-content {
    padding: 30px 16px 16px 16px;
  }
}
.minbar-issue-wrap .card-number {
  font-size: 28px;
}
.minbar-issue-wrap .card-button {
  font-size: 23px;
}

.card-number {
  position: absolute;
  top: -35px;
  transform: translateX(40%);
  background-color: #000;
  color: #ffffff;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  font-weight: bold;
  border: 10px solid white;
  padding: 10px;
}
@media (max-width: 480px) {
  .card-number {
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    transform: translateX(0%);
    border: 6px solid white;
  }
}
.card-number span {
  transform: translate(1px, 0.5px);
}

.card-title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 30px;
}
@media (max-width: 480px) {
  .card-title {
    font-size: 26px;
    line-height: 30px;
  }
}
.card-title a {
  color: #1F1F23;
}

.minbar-issue-wrap .card-date {
  font-size: 11px;
  color: black;
  margin-top: -10px;
}

.card-date {
  font-size: 16px;
  color: #888;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .card-date {
    font-size: 18px;
  }
}

.card-description {
  font-size: 16px;
  line-height: 21px;
  color: #333;
  margin-bottom: 30px;
  margin-top: 30px;
}
@media (max-width: 480px) {
  .card-description {
    font-size: 20px;
  }
}

.card-button {
  display: inline-block;
  padding: 10px;
  background-color: #000;
  color: #ffffff;
  text-decoration: none;
  border-radius: 0px;
  font-size: 14px;
  font-weight: bold;
  width: 100%;
  text-align: center;
  color: #AAC6BF;
  font-size: 30px;
}
@media (max-width: 480px) {
  .card-button {
    font-size: 22px;
    font-weight: 400;
  }
}

.card-button:hover {
  background-color: #AAC6BF;
  color: black;
}

.minbar-card-loop {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 480px) {
  .minbar-card-loop {
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
}

.search-filter {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-filter-label {
  font-weight: bold;
}

.search-filter-form {
  display: flex;
  gap: 20px;
}
@media (max-width: 480px) {
  .search-filter-form {
    flex-direction: column;
  }
}

.select-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  direction: rtl; /* important for Hebrew layout */
}

.search-filter-select {
  padding: 5px 10px;
  font-size: 16px;
  background-color: white;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: black; /* Override blue */
}

.select-wrapper::after {
  content: "";
  position: absolute;
  top: 32%;
  inset-inline-end: 20px; /* or right: 10px; for LTR */
  pointer-events: none;
  width: 17px;
  height: 17px;
  background-image: url("../svg/chevron-down.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ============================================== */
/* ========================= Search Page  */
/* ============================================== */
/* ============================================== */
/* ========================= Archive Page  */
/* ============================================== */
@media (max-width: 480px) {
  .archive .initial-category-info {
    margin-bottom: 0px;
  }
}

@media (max-width: 480px) {
  .archive .posts-container {
    padding-top: 0px;
  }
}

.category-page {
  padding-top: 75px;
}
@media (max-width: 480px) {
  .category-page {
    padding-top: 30px;
  }
}
@media (max-width: 480px) {
  .category-page .description {
    margin-bottom: 20px;
  }
}

.initial-category-info {
  display: flex;
  flex-direction: row;
  margin-bottom: 60px;
}
@media (max-width: 480px) {
  .initial-category-info {
    flex-direction: column;
    margin-bottom: 30px;
  }
}
.initial-category-info .title {
  width: 50%;
}
@media (max-width: 480px) {
  .initial-category-info .title {
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .initial-category-info .title {
    width: 100%;
  }
}
.initial-category-info .description {
  width: 50%;
}
.initial-category-info .description p {
  font-size: 19px;
  line-height: 30px;
}
@media (max-width: 480px) {
  .initial-category-info .description p {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (max-width: 480px) {
  .initial-category-info .description {
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .initial-category-info .description {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .tax-channel .media-archive, .tax-video_type .media-archive {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .tax-channel .youtube_embed iframe, .tax-video_type .youtube_embed iframe {
    height: 250px;
  }
}

/* ============================================== */
/* ========================= Contact Us Page ==== */
/* ============================================== */
.contact-us-h1 {
  margin-top: 50px;
  margin-bottom: 0px;
}

.contact-page-wrapper {
  position: relative;
  padding: 10px;
}
.contact-page-wrapper .position-thank-you {
  position: absolute;
  top: 0px;
  inset-inline-start: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  display: none;
}
.contact-page-wrapper .position-thank-you .thank-you-message {
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-page-wrapper .position-thank-you .circle-position {
  width: 50vw;
  max-width: 500px;
  background-color: white;
  height: 50vw;
  max-height: 500px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

html[lang=he-IL] .contact-us label, html[lang=he-IL] .contact-us input, html[lang=he-IL] .contact-us textarea {
  text-align: right;
}
html[lang=he-IL] .contact-us input[type=submit] {
  direction: rtl;
}

.contact-us {
  display: flex;
  margin-top: 0px;
  justify-content: space-between;
  margin-bottom: 100px;
}
.contact-us a {
  text-decoration: underline;
}
@media (max-width: 480px) {
  .contact-us {
    flex-direction: column-reverse;
  }
}
.contact-us .content {
  width: 55%;
  padding-inline-end: 2%;
  font-family: "Narkis";
}
@media (max-width: 480px) {
  .contact-us .content {
    width: 100%;
  }
}
.contact-us .content * {
  font-family: "Narkis" !important;
}
.contact-us .form {
  width: 40%;
  direction: rtl;
  text-align: right;
}
@media (max-width: 480px) {
  .contact-us .form {
    width: 100%;
  }
}
.contact-us .form label, .contact-us .form input, .contact-us .form textarea {
  width: 100%;
  border-radius: 0px;
  border: 0px;
}
.contact-us .form input, .contact-us .form textarea {
  background-color: rgba(170, 198, 191, 0.3);
  font-size: 22px;
}
@media (max-width: 480px) {
  .contact-us .form input, .contact-us .form textarea {
    font-size: 20px;
  }
}
.contact-us .form textarea {
  height: 200px;
}
.contact-us .form input[type=submit] {
  text-align: center;
  background-color: rgb(170, 198, 191);
  color: #1F1F23 !important;
  font-size: 16px;
}
.contact-us .social-icons {
  margin-top: 50px;
  margin-bottom: 40px;
}

html[lang=en-US] .contact-us .form {
  width: 40%;
  direction: ltr;
}

/* =================================================== */
/* ========================= Profile Page ============ */
/* =================================================== */
.writer-excerpt {
  font-size: 17px;
  line-height: 24px;
}
@media (max-width: 480px) {
  .writer-excerpt {
    font-size: 20px;
    line-height: 28px;
  }
}
.writer-excerpt p {
  font-size: 17px;
  line-height: 24px;
}
@media (max-width: 480px) {
  .writer-excerpt p {
    font-size: 20px;
    line-height: 28px;
  }
}

.writer-item {
  cursor: pointer;
}
.writer-item h3 {
  margin-top: 5px;
  font-size: 30px;
}
@media (max-width: 480px) {
  .writer-item h3 {
    margin-top: 25px;
    font-size: 28px;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .writer-item h3 {
    margin-top: 25px;
    font-size: 28px;
  }
}
.writer-item .email {
  margin-top: -5px;
  font-size: 17px;
}
@media (max-width: 480px) {
  .writer-item .email {
    font-size: 20px;
  }
}

.writer-profile {
  width: 50%;
  padding: 30px 0px;
}
@media (max-width: 480px) {
  .writer-profile {
    width: 100%;
  }
}
.writer-profile .writer-item {
  box-shadow: none;
  padding: 30px;
  padding-inline-start: 0px;
}
@media (max-width: 480px) {
  .writer-profile .writer-item {
    box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.2509803922);
    padding: 30px;
    padding-inline-start: 30px;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .writer-profile .writer-item {
    box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.2509803922);
    padding: 30px;
    padding-inline-start: 30px;
  }
}

.single-writer .entry-title {
  font-size: 35px;
  line-height: 35px;
  font-weight: 500;
}
@media (max-width: 480px) {
  .single-writer .entry-title {
    font-size: 24px;
    line-height: 27px;
    margin-bottom: 0px;
  }
}
@media (max-width: 480px) {
  .single-writer .wide-post-display {
    flex-direction: column;
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .single-writer .wide-post-display .wide-display-image {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .single-writer .wide-post-display .article-info {
    width: 100%;
    padding-inline-start: 0px;
  }
}

/* =================================================== */
/* ========================= Journalposts template ============ */
.padded_h1 {
  margin-top: 50px;
}

.journalposts-page h1 {
  font-weight: 500;
}
.journalposts-page .desktop-fold {
  display: block;
}
@media (max-width: 480px) {
  .journalposts-page .desktop-fold {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .journalposts-page .desktop-fold {
    display: none;
  }
}
.journalposts-page .mobile-fold {
  display: none;
}
@media (max-width: 480px) {
  .journalposts-page .mobile-fold {
    display: flex;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .journalposts-page .mobile-fold {
    display: flex;
  }
}
.journalposts-page .mobile-fold h1 {
  text-align: center;
  font-size: 24px;
}

/* ======================================================== */
/* ========================= Donation template ============ */
/* ======================================================== */
.give-wrap {
  padding: 20px 20px 0px 20px;
}
@media (max-width: 480px) {
  .give-wrap {
    padding: 0px;
  }
}

.give-form-background {
  background-image: url("../images/donation-bg.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 480px) {
  .give-form-background {
    padding: 50px 0px;
    background-image: url("../images/mobile-bg-min.png");
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .give-form-background {
    padding: 50px 0px;
    background-image: url("../images/mobile-bg-min.png");
  }
}

.give_forms-template-default .give_forms {
  margin: 0px !important;
  width: 100% !important;
  max-width: 100% !important;
}
.give_forms-template-default #give-form-12051-wrap {
  width: 30vw;
  max-width: 630px;
  min-width: 325px;
}
.give_forms-template-default #container {
  width: 100% !important;
}
.give_forms-template-default #give-sidebar-left {
  display: none !important;
}
.give_forms-template-default .give-form-title {
  text-align: center !important;
}
.give_forms-template-default .summary {
  margin-top: 50px;
  width: 75vw !important;
  height: 75vw !important;
  max-width: 700px; /* Optional: Set a maximum width */
  max-height: 1000px;
  border-radius: 10px 10px 0px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  float: none !important;
  margin-right: auto;
  margin-left: auto;
  background-color: white;
  padding: 50px;
}
@media (max-width: 480px) {
  .give_forms-template-default .summary {
    background-color: transparent;
    max-height: -moz-fit-content !important;
    max-height: fit-content !important;
    height: -moz-fit-content !important;
    height: fit-content !important;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .give_forms-template-default .summary {
    max-height: -moz-fit-content !important;
    max-height: fit-content !important;
    height: -moz-fit-content !important;
    height: fit-content !important;
  }
}
.give_forms-template-default #give-amount {
  border: 2px dotted #1F1F23 !important;
}
.give_forms-template-default .give-currency-position-after {
  border-top: 2px dotted #1F1F23 !important;
  border-bottom: 2px dotted #1F1F23 !important;
  border-inline-start: 2px dotted #1F1F23 !important;
}
.give_forms-template-default .give-donation-level-btn {
  border: 2px dotted #1F1F23 !important;
  background-color: white !important;
  border-radius: 0px !important;
  color: #1F1F23 !important;
  font-family: "greta_h_l_regular", sans-serif !important;
  font-size: 23px !important;
  font-weight: 700 !important;
}
@media (max-width: 480px) {
  .give_forms-template-default .give-donation-level-btn {
    font-size: 22px !important;
    padding: 10px !important;
  }
}
.give_forms-template-default .give-donation-level-btn:hover {
  background-color: #1F1F23 !important;
  color: white !important;
}
.give_forms-template-default form.give-form legend {
  border-bottom: none !important;
  margin-bottom: 0px !important;
}
.give_forms-template-default .give-input {
  background-color: rgba(170, 198, 191, 0.3019607843) !important;
  border-radius: 2px !important;
  border: 0px !important;
  color: rgba(31, 31, 35, 0.7490196078) !important;
}

.give-recurring-donors-choice {
  border: 2px dotted #000;
  padding: 13px 15px 16px 20px;
  margin: 20px 0;
  background-color: #f8f9f9;
  display: flex !important;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  border-radius: 0px;
  cursor: pointer;
  gap: 15px;
}

.give-recurring-donors-choice input[type=checkbox] {
  transform: scale(1.5) translateY(1px);
  margin-left: 10px;
  vertical-align: middle;
  cursor: pointer;
}

.give-recurring-donors-choice label {
  cursor: pointer;
}

#give-donation-level-button-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
#give-donation-level-button-wrap button {
  width: 100%;
}

#give-donation-level-button-wrap:before {
  display: none;
}

@media (max-width: 480px) {
  .single-video .channel-title {
    padding: 5px 10%;
  }
}

/* ======================================================== */
/* ========================= Arabic Version =============== */
/* ======================================================== */
.netreach-link {
  margin-top: 20px;
  display: inline-block;
}

/* ======================================================== */
/* ========================= English Version =============== */
/* ======================================================== */
html[lang=en-US] .podcasts-wrapper-homepage {
  display: none;
}
html[lang=en-US] .support-title {
  line-height: 1.1;
  min-width: 245px;
}
@media (max-width: 480px) {
  html[lang=en-US] .support-title {
    font-size: 35px;
    margin-bottom: 5px;
    min-width: 165px;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  html[lang=en-US] .support-title {
    font-size: 35px;
    margin-bottom: 5px;
    min-width: 165px;
  }
}

.succes-submit {
  display: none;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to left, rgba(107, 107, 107, 0.8745098039), rgba(123, 123, 123, 0.8901960784));
  z-index: 9999;
  display: none;
  color: white;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  gap: 20px;
}

.cookie-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
}

/* RTL support */
html[dir=rtl] .cookie-text {
  text-align: right;
}

html[dir=ltr] .cookie-text {
  text-align: left;
}

.cookie-privacy-link {
  color: inherit;
  text-decoration: underline;
}

.cookie-privacy-link:hover {
  opacity: 0.8;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
}

.cookie-banner .btn {
  padding: 10px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
}

.cookie-banner .btn-accept {
  background-color: #396F90;
  color: white;
}

.cookie-banner .btn-accept:hover {
  background-color: #2d5973;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    padding: 15px 20px;
  }
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}/*# sourceMappingURL=custom.css.map */