/** North Ryde Golf Club
 additional/modified css **/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Aileron-Bold";
}

.fountain-blue {
  color: #63b1bc;
}
.mosque {
  color: #045970;
}
.abbay-gray {
  color: #4c4f56;
}

/** header  **/
header
  .__header_inner
  .dp-desktop-menu
  .header-menu-wrap
  .complete-menu
  ul.menu {
  justify-content: space-evenly !important;
  gap: 5px;
}
header .header-meta-wrap .header-meta {
  justify-content: space-between !important;
}
.left-top-header-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}
.left-top-header-wrapper a {
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none !important;
}
.left-top-header-wrapper .top-header-news {
  margin-right: 2rem;
}
.btn-contact-book-golf {
  margin-right: 10px;
}

a.btn-contact-book-golf {
  padding: 0.5rem 1.75rem 0.5rem 1.75rem !important;
  background-color: #045970;
  cursor: pointer;
  position: relative;
  padding: 0.25rem 1.875rem 0.25rem 0.75rem;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  font-family: "Aileron-Bold";
  line-height: 1.2;
  letter-spacing: 0.04em;
  transition: border 0.5s;
  user-select: none;
  color: #fff;
  text-decoration: none;
}
a.btn-contact-members {
  padding: 0.5rem 1.75rem 0.5rem 1.75rem !important;
  background-color: #4c4f56;
  cursor: pointer;
  position: relative;
  padding: 0.25rem 1.875rem 0.25rem 0.75rem;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  font-family: "Aileron-Bold";
  line-height: 1.2;
  letter-spacing: 0.04em;
  transition: border 0.5s;
  user-select: none;
  color: #fff;
  text-decoration: none;
}

.header-social-fb,
.header-social-ig,
.header-social-fb:hover,
.header-social-ig:hover {
  color: #fff;
  align-items: center;
  justify-content: center;
  display: flex;
  text-decoration: none;
}

.header-social-fb {
  padding: 0 10px;
}
.header-social-ig {
  padding: 0 10px 0 0;
}

@media only screen and (max-width: 600px) {
  header .header-meta-wrap {
    padding: 0.5rem 0;
  }
  header .header-meta-wrap .header-meta {
    display: inline !important;
  }
  header .header-meta-wrap .header-meta .header-meta-details {
    display: flex !important;
  }
  .left-top-header-wrapper {
    text-align: center;
  }
}

/*  Make each parent <li> a positioning context for both headers */
header
  .__header_inner
  .dp-desktop-menu
  .complete-menu
  ul.menu
  li.menu-item-has-children,
header
  .__header_inner.header-scrolling
  .dp-desktop-menu
  .complete-menu
  ul.menu
  li.menu-item-has-children {
  position: relative !important;
}

/*  Hide every .sub-menu in the first header by default */
header
  .__header_inner
  .dp-desktop-menu
  .complete-menu
  ul.menu
  li.menu-item-has-children
  .sub-menu {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  position: absolute !important;
  top: 100% !important; /* directly under the parent <li> */
  left: 0 !important; /* keep left-aligned for the first header */
  margin-top: 0 !important;
  z-index: 999 !important;
  transform: none !important;
}

/* Show that submenu on hover (no centering here) */
header
  .__header_inner
  .dp-desktop-menu
  .complete-menu
  ul.menu
  li.menu-item-has-children:hover
  > .sub-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  /* left remains 0, transform remains none */
}

/* Hide every .sub-menu in the second header by default */
header
  .__header_inner.header-scrolling
  .dp-desktop-menu
  .complete-menu
  ul.menu
  li.menu-item-has-children
  .sub-menu {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  position: absolute !important;
  top: 100% !important; /* directly under the parent <li> */
  left: 0 !important; /* default left:0—but we’ll override on hover */
  margin-top: 0 !important;
  z-index: 999 !important;
  transform: none !important;
}

/* On hover, show & center this submenu under its parent */
header
  .__header_inner.header-scrolling
  .dp-desktop-menu
  .complete-menu
  ul.menu
  li.menu-item-has-children:hover
  > .sub-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  left: 50% !important; /* center under parent */
  transform: translateX(-50%) !important; /* shift back by half its width */
}

/*  Hide all third-level menus by default ─── */
header
  .__header_inner
  .dp-desktop-menu
  .complete-menu
  ul.menu
  li.menu-item-has-children
  .sub-menu
  li.menu-item-has-children
  > .sub-menu,
header
  .__header_inner.header-scrolling
  .dp-desktop-menu
  .complete-menu
  ul.menu
  li.menu-item-has-children
  .sub-menu
  li.menu-item-has-children
  > .sub-menu {
  display: none;
  position: absolute;
  top: 0; /* align top of sub-submenu with top of its parent <li> */
  left: 100%; /* “100%” pushes it fully to the right of its parent item */
  margin-left: 70%; /* optional small gap—adjust as needed */
  z-index: 1000; /* ensure it floats above everything else */
}

/*  On hover of the second-level <li>, show the third-level submenu ─── */
header
  .__header_inner
  .dp-desktop-menu
  .complete-menu
  ul.menu
  li.menu-item-has-children
  .sub-menu
  li.menu-item-has-children:hover
  > .sub-menu,
header
  .__header_inner.header-scrolling
  .dp-desktop-menu
  .complete-menu
  ul.menu
  li.menu-item-has-children
  .sub-menu
  li.menu-item-has-children:hover
  > .sub-menu {
  display: block;
}
/** header  **/

/** footer  **/
.footer-btn-container {
  gap: 10px;
  display: flex;
  flex-direction: column;
  width: 220px;
}
.footer-btn-wrapper {
  text-decoration: none;
  padding: 5px 8px;
  border: 1px solid #63b1bc;
  text-align: center;
}
.footer-btn-container .footer-btn-wrapper:first-child {
  background-color: #63b1bc;
}

.footer-btn-wrapper:hover {
  background-color: #63b1bc;
}
.footer-btn-wrapper a {
  text-decoration: none !important;
  font-family: "Aileron-Bold";
}
.footer-meta {
  justify-content: center;
  display: flex;
}
.footer-social-media,
.footer-navigation {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-sitemap .row {
  max-width: 73rem;
}
.footer-copyright p {
  font-family: "Aileron-Regular";
  letter-spacing: 0;
  line-height: 1.3;
  margin-top: 0.5rem;
}
.footer-opening-hours-wrapper .address-oh {
  letter-spacing: 0;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.footer-sitemap .footer-navigation .menu li a,
.footer-opening-hours-wrapper,
.footer-copyright p,
.footer-btn-wrapper a {
  font-size: 14px !important;
}

@media only screen and (max-width: 1023px) {
  .footer-opening-hours-container {
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-social-media,
  .footer-navigation {
    text-align: center;
  }
}

/** footer  **/

/** homepage **/
/** homepage **/

/** subpages **/

.events-css-adj .row {
  max-width: 70rem !important;
}
.related-events .row {
  max-width: 70rem !important;
}

/* Event Calendar */
/* .event-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 2; 
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
} */

.evt-main-section .row div .event-item {
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.3);
  padding: 1rem;
  text-align: center;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  /* height: 455px; */
}
.evt-main-section .events-main-title {
  text-align: center;
}
.no-events-found .no-events {
  font-size: 16px;
  text-align: center;
}
.event-content .event-title {
  font-family: "Aileron-SemiBold";
  padding: 1rem 0 0.3rem;
  margin-bottom: 0;
}
.event-content .event-date-format,
.event-date-format {
  font-family: "Aileron-SemiBold";
}
.event-item .event_bg {
  position: relative;
  width: 100%;
  /* aspect-ratio: 9 / 6; */
  aspect-ratio: 12 / 12;
  background-size: cover;
  object-fit: cover;
  overflow: hidden;
}
.event-item .event_bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0); /* transparent by default */
  transition: background 0.3s ease;
  pointer-events: none;
}
.event-item .event_bg:hover::after {
  background: rgba(0, 0, 0, 0.3); /* dark overlay on hover */
}
/* .tribe-events-single-event-description ul li {
  font-size: 16px !important;
} */
/* Event Calendar */

/* Event Grid With Opacity BG */
.event-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.event-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(18, 99, 121, 0.86); */
  /* background-color: rgba(4, 89, 112, 0.7); */
}
.event-grid-content {
  position: relative;
  z-index: 2;
  text-align: center;
  justify-content: center;
  max-width: 85rem;
  margin: auto;
  padding: 1rem 2rem;
}
.event-grid-content h1 {
  color: #fff;
}
.event-grid-with-opacity-bg-section {
  position: relative;
  overflow: hidden;
  padding: 1rem 0;

  background-size: cover;
  object-fit: cover;
  background-position: center;
}
.event-grid-with-opacity-see-more-link a {
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.1rem;
  color: #fff;
  line-height: 1.1;
  padding: 12px 24px;
  cursor: pointer;
  background-color: #045970;
  font-family: "Aileron-Bold";
  font-size: 20px;
  border-radius: 5px;
}
.event-grid-with-opacity-box-wrap {
  padding-left: 15px !important;
  padding-right: 15px !important;
  margin-bottom: 10px !important;
}
.event-grid-with-opacity-box-sub-wrap {
  border: 1px solid #fff;
  /* padding: 3rem 1rem; */
  padding: 1rem;
  text-align: center;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  height: 100%;

  align-items: center;
  /* justify-content: center; */
  display: flex;
  flex-direction: column;
}
.event-grid-with-opacity-box-wrap h4 {
  font-family: "Aileron-SemiBold";
  color: #fff;
  margin-bottom: 0;
}
.event-grid-with-opacity-box-wrap p {
  font-family: "Aileron-Regular";
  color: #fff;
}
.event-grid-opacity-date-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  font-family: "Aileron-SemiBold";
  /* margin-top: 1.5rem; */
  margin-bottom: 1.5rem;
}
.event-grid-opacity-date-wrap .only-date {
  font-family: "Aileron-Bold";
  color: #fff;
  font-size: 70px;
  line-height: 0.8;
}
.event-grid-with-opacity-box-sub-wrap h4 {
  font-size: 25px;
}
.event-grid-with-opacity-box-container {
  margin: 0rem 0 2rem;
}
.event-grid-with-opacity-box-wrap a {
  text-decoration: none !important;
}

@media only screen and (max-width: 639px) {
  .event-grid-with-opacity-box-wrap {
    padding-left: 30px !important;
    padding-right: 30px !important;
    margin-bottom: 20px !important;
  }
}

/* Grid Layout for the event boxes */
.event-grid-with-opacity-box-container {
  display: grid !important;
  grid-template-columns: repeat(1, 1fr); /* Default: 1 column */
  gap: 10px;
  margin: 0 0 2rem;
}

@media (min-width: 640px) {
  .event-grid-with-opacity-box-container {
    grid-template-columns: repeat(2, 1fr); /* Small: 2 columns */
  }
}

@media (min-width: 768px) {
  .event-grid-with-opacity-box-container {
    grid-template-columns: repeat(3, 1fr); /* Medium: 3 columns */
  }
}

@media (min-width: 1024px) {
  .event-grid-with-opacity-box-container {
    grid-template-columns: repeat(5, 1fr); /* Large: 4 columns */
  }
}

@media (min-width: 1280px) {
  .event-grid-with-opacity-box-container {
    grid-template-columns: repeat(5, 1fr); /* XL: 5 columns */
  }
}

/* Make each box stretch full height */
.event-grid-with-opacity-box-wrap {
  height: 100%;
}

/** subpages **/

/** snippets **/

/* Slider Cards Starts */
.slider-cards-list-container {
  padding: 1rem 0.7rem;
}

.slider-cards-list-wrap p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines */
  -webkit-box-orient: vertical;
  line-height: 1.5em;
  max-height: 3.5em; /* 2 lines × line-height */
  margin-top: 0.5rem;
}

.slider-cards-list-wrap {
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.3);
  padding: 1rem;
  text-align: center;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  height: 100%;
}

.slider-cards-list-wrap h5 {
  font-family: "Aileron-SemiBold";
  margin-bottom: 0;
  padding: 20px 0 5px;
}
.slider-image-overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
  pointer-events: none;
}

.slider-image-link,
.slider-image-wrapper {
  position: relative;
  display: block;
}

.slider-image-link img,
.slider-image-wrapper img {
  display: block;
  width: 100%;
  /* height: 260px; */
  aspect-ratio: 9 / 6;
  background-size: cover;
  object-fit: cover;
  background-position: center;
}

.slider-image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
  pointer-events: none;
}

.slider-image-link:hover .slider-image-overlay,
.slider-image-wrapper:hover .slider-image-overlay {
  background: rgba(0, 0, 0, 0.4);
}
.slick-prev:before,
.slick-next:before {
  display: none;
}
.slick-prev-reg-btn-cm,
.slick-next-reg-btn-cm {
  width: 55px;
  height: 55px;
  z-index: 1 !important;
}

/* .slick-prev-reg-btn-cm:hover */
.slick-prev-reg-btn-cm {
  left: 0;
  height: 93% !important;
  position: absolute;
  width: 60px !important;
  background: linear-gradient(
    270deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.5) 100%
  ) !important;
  z-index: 50;
  border: none;
}

/* .slick-next-reg-btn-cm:hover */
.slick-next-reg-btn-cm {
  right: 0;
  height: 93% !important;
  position: absolute;
  width: 60px !important;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.5) 100%
  ) !important;
  z-index: 50;
  border: none;
}

/* Slider Cards End */

/* Events Slider Start */
.slick-prev-reg-btn {
  width: 35px;
  height: 35px;
  left: -30px;
}
.slick-next-reg-btn {
  width: 35px;
  height: 35px;
  right: -30px;
}
@media only screen and (max-width: 1200px) {
  .event_lists_wrap {
    padding: 0 1.5rem;
  }
}
/* Events Slider End */

/* Grid Cards Starts */
.grid-cards-list-container {
  padding: 1rem 0.7rem;
}
.grid-cards-section .row {
  max-width: 70rem !important;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-flow: row wrap;
}
.grid-cards-list-wrap {
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.3);
  padding: 1rem;
  text-align: center;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  height: 100%;
  background-color: #fff;
}

.grid-cards-list-wrap p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines */
  -webkit-box-orient: vertical;
  line-height: 1.5em;
  max-height: 3.5em; /* 2 lines × line-height */
  margin-top: 0.5rem;
}

.grid-cards-list-wrap h5 {
  font-family: "Aileron-SemiBold";
  margin-bottom: 0;
  padding: 20px 0 5px;
}
.grid-image-overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
  pointer-events: none;
}

.grid-image-link,
.grid-image-wrapper {
  position: relative;
  display: block;
}

.grid-image-link img,
.grid-image-wrapper img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 6;
  background-size: cover;
  object-fit: cover;
  background-position: center;
}

.grid-image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
  pointer-events: none;
}
.grid-image-link:hover .grid-image-overlay,
.grid-image-wrapper:hover .grid-image-overlay {
  background: rgba(0, 0, 0, 0.4);
}

/* Grid Cards End */

/* Trading Hours Start  */
.trading-hours-sec .columns {
  align-items: center !important;
  display: flex !important;
}
.trading-hours-sec .row {
  max-width: 90rem;
  margin: auto;
}
/* Columns For Media And Text Start */
.columns-for-media-and-text {
  margin-bottom: 2rem;
}
.columns-for-media-and-text-wrap-section {
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.3);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.media-content-image {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 100%;
  min-height: 300px;
  transition: all 0.3s ease;
  overflow: hidden;
}
.media-content-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
  z-index: 1;
}
.media-content-image:hover::after {
  background: rgba(0, 0, 0, 0.4);
}
.text-content-container p h5 {
  margin-bottom: 0 !important;
}
.text-content-container h5 {
  margin-bottom: 0.5rem;
}
/* Columns For Media And Text End */

/* Read More and Read Less Start */
#toggleBtn {
  text-decoration: none;
  text-align: center;
  display: inline-block;
  font-family: "Aileron-Bold";
  letter-spacing: 0.1rem;
  color: #fff;
  line-height: 1.1;
  font-weight: 400;
  transition: transform 0.25s;
  transform-origin: 50% 50%;
  font-size: 1rem;
  padding: 12px 24px;
  cursor: pointer;
  background-color: #63b1bc;
  margin-top: 0.5rem;
}
/* Read More and Read Less End */

/* Two Column Text Start */
.text-column-text-section {
  text-align: center;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.3);
  padding: 3rem 1rem;
  text-align: center;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: #fff;
}
.text-col-text-title h4 {
  font-size: 24px;
  font-family: "Aileron-Bold";
}
.text-col-left p,
.text-col-right p {
  font-size: 16px;
  font-family: "Aileron-Regular";
}
@media only screen and (max-width: 639px) {
  .text-col-left {
    margin-bottom: 1rem;
  }
}
/* Two Column Text End */

/* Two Column Cards Text Start */
.text-col-cards-text-section {
  text-align: center;
}
.text-col-cards-left,
.text-col-cards-right {
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.3);
  padding: 3rem 1rem;
  text-align: center;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  /* flex: 1 1 calc(50% - 15px); */
  background-color: #fff;
  /* flex: 1 1 48%; */
}
@media only screen and (min-width: 640px) {
  .text-col-cards-left,
  .text-col-cards-right {
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.3);
    padding: 3rem 1rem;
    text-align: center;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    flex: 1 1 calc(50% - 15px);
    background-color: #fff;
  }
}
.text-col-cards-left h4,
.text-col-cards-right h4 {
  font-size: 24px;
  font-family: "Aileron-Bold";
}
.text-col-cards-left p,
.text-col-cards-right p {
  font-size: 16px;
  font-family: "Aileron-Regular";
}
.text-col-cards-text-section .text-two-col-cards-cont {
  display: flex;
  gap: 30px;
  /* flex-wrap: wrap;
  gap: 1rem; */
}
@media only screen and (max-width: 429px) {
  .text-col-cards-left,
  .text-col-cards-right {
    flex: 1 1 100% !important;
  }
}

/* Two Column Cards Text End */

/* Single Page and Related Events */
.tribe-events-single-event-title {
  color: #045970;
  font-family: "AILERON-BOLD";
}
.related-events {
  background-color: #f2f2f2f2;
  padding: 4rem 0;
  text-align: center;
}
.related-event-wrap {
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.3);
  padding: 1rem;
  text-align: center;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  margin-bottom: 1rem;
  background-color: #fff;
}
.related-event-wrap .event-title {
  font-family: "Aileron-SemiBold";
  padding: 1rem 0 0.3rem;
  margin-bottom: 0;
}
.related-event-image {
  position: relative;
  display: block;

  position: relative;
  width: 100%;
  aspect-ratio: 12 / 12;
  background-size: cover;
  object-fit: cover;
  overflow: hidden;
}
.related-event-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
  pointer-events: none;
}
.related-event-image:hover::after {
  background: rgba(0, 0, 0, 0.3);
}
.collapsible-container-event,
.collapsible-container-event-tc {
  max-width: 500px;
  margin: 13px auto;
  font-family: Arial, sans-serif;
  transition: box-shadow 0.3s ease;
  border-radius: 8px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.3);
}
.collapsible-container-event.expanded,
.collapsible-container-event-tc.expanded {
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.3);
}
.collapsible-wrap,
.collapsible-wrap-tc {
  color: #4c4f56;
  cursor: pointer;
  padding: 25px;
  border: none;
  outline: none;
  width: 100%;
  text-align: left;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  color: #045970;
  font-family: "AILERON-SEMIBOLD";
  background-color: white;
}
.arrow-single-event,
.arrow-single-event-tc {
  transition: transform 0.3s ease;
}
.arrow-single-event.rotate,
.arrow-single-event-tc.rotate {
  transform: rotate(180deg);
}
.content-collapsible-event,
.content-collapsible-event-tc {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  border-radius: 0 0 8px 8px;
  background-color: white;
}
.content-collapsible-event p,
.content-collapsible-event-tc p {
  margin: 15px 0;
}
.left-single-event-icon-text-wrap img {
  height: 20px;
  width: 20px;
  margin-right: 0.5rem;
}
.left-single-events-contents-wrap .left-single-event-icon-text-wrap {
  font-family: "Aileron-Semibold";
  margin: 0.5rem 0;
}
/* .single-border-left hr {
  margin: 1rem auto !important;
  border-bottom: 2px solid #ecedee !important;
} */
.tribe-events-event-meta:before,
.tribe-events-event-meta ~ div:not(.tribe-events-event-meta, .event-tickets) {
  border-top: 0px solid var(--tec-color-border-secondary) !important;
}
@media only screen and (max-width: 1024px) {
  body.single-tribe_events .tribe-events-single {
    padding: 10px 0;
  }
}
/* Single Page Related Events */

/* Search  */
.search-submit img {
  height: 20px;
  width: 20px;
}
.search-results-page .search-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.search-title {
  font-size: 28px;
  margin-bottom: 1.5rem;
  color: #045970;
}
.search-form-inline {
  display: flex;
  margin-bottom: 2rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
}
.search-form-inline .search-field {
  flex: 1;
  padding: 10px 14px;
  border: none;
  font-size: 16px;
  outline: none;
}
.search-form-inline .search-submit {
  background-color: #63b1bc;
  color: #fff;
  padding: 0 16px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}
.search-form-inline .search-submit:hover {
  background-color: #63b1bc;
}
.search-results-list {
  border-top: 1px solid #ddd;
}
.search-result-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid #eee;
}
.entry-title {
  margin-bottom: 0.5rem;
}
.entry-title a {
  font-size: 20px;
  color: #63b1bc;
  text-decoration: none;
}
.entry-title a:hover {
  text-decoration: underline;
}
.entry-excerpt {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}
.pagination-search {
  margin-top: 2rem;
  text-align: center;
}
.pagination-search .page-numbers {
  display: inline-block;
  padding: 8px 12px;
  margin: 0 4px;
  border-radius: 4px;
  background: #f3f3f3;
  color: #4c4f56;
  text-decoration: none;
  font-family: "Aileron-SemiBold";
}
.pagination-search .current {
  background: #63b1bc;
  color: white;
  font-weight: bold;
}
.search-no-results {
  text-align: center;
  /* padding: 3rem 0; */
}
.search-no-results h2 {
  font-size: 24px;
  margin-bottom: 1rem;
}
.excerpt-read-more {
  color: #63b1bc;
  font-family: "Aileron-SemiBold";
}
/* Search */

@media only screen and (max-width: 641px) {
  .gform_wrapper.gravity-theme
    input:not([type="radio"]):not([type="checkbox"]):not([type="image"]):not(
      [type="file"]
    ) {
    line-height: 1 !important;
  }
}

/* Post Design Start */
.dp-grid-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.dp-grid-wrapper {
  margin: 20px 0;
}

.dp-grid-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dp-pagination {
  text-align: center;
  margin-top: 3rem;
}
.dp-grid-wrapper {
  margin: 20px 0;
}

.dp-post-item {
  background: #f9f9f9;
  padding: 10px;
  text-align: center;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.3);
  text-align: center;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.dp-post-item h3 {
  font-size: 16px;
  margin: 0;
}

/* Medium screens (tablet) - 2 columns */
@media (max-width: 992px) {
  .dp-grid-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small screens (mobile) - 1 column */
@media (max-width: 600px) {
  .dp-grid-row {
    grid-template-columns: repeat(1, 1fr);
  }
}

.dp_single-wrapper {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 1rem;
}

.dp_single-post {
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.3);
  padding: 1rem;
  text-align: center;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.dp_single-header {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
  text-align: left;
}

.dp_single-title {
  color: #045970;
  font-family: "AILERON-SEMIBOLD";
  font-size: 42px;
}

.dp_single-meta {
  color: #6d7c6d;
  margin-bottom: 10px;
}

.dp_single-categories {
  margin-top: 5px;
}

.dp_category-tag {
  display: inline-block;
  background: #63b1bc;
  color: #fff;
  padding: 4px 10px;
  font-size: 0.75em;
  margin-right: 6px;
  margin-bottom: 6px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dp_single-thumbnail {
  margin: 30px 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ccc;
}

.dp_single-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.dp_single-content {
  font-size: 1.1em;
  line-height: 1.8;
  color: #333;
}

.dp_single-content p {
  margin-bottom: 1.5em;
}

@media (max-width: 600px) {
  .dp_single-post {
    padding: 25px;
  }

  .dp_single-title {
    font-size: 1.6em;
  }
}

/* Post Design End */

/* Forms Start */

.gform_footer input[type="submit"] {
  text-transform: uppercase;
  font-size: 1.125rem;
  padding: 0.625rem 1.125rem;
  color: #ffffff;
  background-color: #63b1bc;
  border: 1px solid #63b1bc;
  letter-spacing: 0.07em;
  transition: transform 0.25s;
  font-family: "Aileron-Bold";
  cursor: pointer;
}

/* Forms End  */

/* Buttons Adjustment Start */

@media only screen and (max-width: 500px) {
  .v2-button,
  .trailing-button a {
    width: 230px;
  }
}

/* Buttons Adjustment End */

/** snippets **/

/** custom-media **/

/* Large only */
/*min width = '1,024px' and max width = '1,199px'*/
@media screen and (min-width: 64em) and (max-width: 74.9375em) {
}

/* Medium only */
/*min width = '640px' and max width = '1,023px'*/
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
}

/* Small only */
/*min width = '320px' and max width = '639px'*/
@media screen and (min-width: 20em) and (max-width: 39.9375em) {
}

/* Large and up */
@media screen and (max-width: 74.99875em) {
}

@media screen and (min-width: 64em) {
}

@media (max-width: 1500px) {
}

@media (max-width: 1390px) {
}

@media (max-width: 1351px) {
}

/* Medium and up */
@media screen and (min-width: 40em) {
}

@media (max-width: 1024px) {
}

@media (max-width: 840px) {
}

@media (max-width: 768px) {
}

@media (max-width: 668px) {
}

/***small devices***/
@media (max-width: 600px) {
}

@media (max-width: 578px) {
}

@media (max-width: 530px) {
}

@media (max-width: 500px) {
}

@media (max-width: 430px) {
}

@media (max-width: 420px) {
}

@media (max-width: 411px) {
}

@media (max-width: 379px) {
}
