.push_app_top_section {
  max-width: var(--max-width);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--pushapp-gap);
  margin-bottom: 12px;
  margin-inline: auto;
  justify-content: start;
  align-items: start;
  /* padding-inline: var(--padding); */
  width: 100%;
}
.push_app_container {
  display: flex;
  flex-direction: column;
  padding-block: calc(var(--padding) * 2);
  padding-inline: var(--padding);
}
.push_app_bottom_section {
  max-width: var(--max-width);
  display: none;
  margin-inline: auto;
}
.push_app_container:nth-child(even) {
  background-color: #efefef;
}
.push_app_news_date h2 {
  font-size: var(--pushapp--news--date--h2);
  font-family: Berthold_Akzidenz_Grotesk_Condensed_Bold;
  line-height: 1.1;
  margin-block-start: 0;
}

.push_app_news_date h2:first-child {
  color: #9fc1e9;
}

.push_app_news_date h2:last-child {
  color: #3a4052;
}
.push_app_news_heading h3 {
  font-size: var(--pushapp--news--heading-h3);
  line-height: 1.1;
  font-family: Berthold_Akzidenz_Grotesk_Condensed_Bold;
  color: #3a4052;
  cursor: pointer;
  text-transform: uppercase;
}
.push_app_heading_purple_list p,
.push_app_heading_purple_list div {
  color: #9fc1e9;
  font-size: 1.2rem;
  font-family: calibri_bold;
  line-height: 1;
  text-transform: uppercase;
}
.push_app_bottom_msg_more_section {
  column-count: 3;
}
.push_app_bottom_msg_more_section p {
  margin-bottom: 0;
  font-size: 1rem;
}
.push_app_bottom_imgs_section{
  display: flex;
  margin-top: 20px;
  flex-direction: column;
  gap: calc(var(--pushapp-gap) / 2);
}
.load-more-btn-holder {
  display: flex;
  justify-content: center;
}
.load-more-btn {
  width: 200px;
  height: 50px;
  margin: 20px;
  border: none;
  outline: none;
  border-radius: 5px;
  background-color: var(--secondary-foreground);
  color: var(--primary-foreground);
  font-size: 1.2rem;
  font-family: Berthold_Akzidenz_Grotesk_Condensed_Bold;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.load-more-btn:hover {
  opacity: 0.8;;
}
#lightbox {
  background: rgba(0, 0, 0, 0.985);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  color: #fff;
  z-index: 99999999999;
}
#lightbox img {
  height: 90vh;
  width: auto;
}
.close,
.prev,
.next {
  position: absolute;
  cursor: pointer;
}

.close {
  right: 40px;
  top: 40px;
  font-weight: 900;
  font-size: xx-large;
  color: white;
}

.prev {
  left: 40px;
}

.next {
  right: 40px;
}

/* responsive */
@media (max-width: 575px) {
  .push_app_top_section {
    grid-template-columns: 1fr;
  }
  .push_app_news_date {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: var(--pushapp-gap);
  }
  .push_app_heading_purple_list p,
  .push_app_heading_purple_list div {
    font-size: 1rem;
  }
  .push_app_bottom_msg_more_section {
    column-count: 1;
  }
  #lightbox img{
    height: auto;
  }
  .load-more-btn{
    width: 100%;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .push_app_top_section {
    grid-template-columns: 1fr;
  }
  .push_app_news_date {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: var(--pushapp-gap);
  }
  .push_app_heading_purple_list p,
  .push_app_heading_purple_list div {
    font-size: 1rem;
  }
  #lightbox img{
    height: auto;
  }
}
@media (min-width: 576px) and (max-width: 768px){
  .push_app_bottom_msg_more_section {
    column-count: 1;
  }
}
@media (min-width: 768px) and (max-width: 991px){
  .push_app_bottom_msg_more_section {
    column-count: 2;
  }
}
