.inside {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.field__input {
  width: 280px;
}

.events-list {
  display: grid;
  gap: 20px;
  padding: 20px;
}

/* Set up responsive grid layout */
@media (min-width: 768px) {
  /* For tablets and larger screens, display 2 columns */
  .events-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  /* For desktops and larger screens, display 3 columns */
  .events-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.event-item {
  box-shadow: rgba(138, 138, 138, 0.144) 0px 0px 0px 1px;
  padding: 2rem;
  margin: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 320px;
  animation: fadeInUP 0.75s ease-in-out;
  gap: 2rem;
}

.event-body {
  gap: 2rem;
}

.title-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  text-transform: uppercase;
}
.title-container h2 {
  font-size: 22px;
}

.time-event {
  display: flex;
  flex-direction: column;
  font-size: 36px;
  font-weight: 800;
  padding: 0 2rem 0 0;
  line-height: 1;
}

.black-sea-button .wp-element-button {
  margin: 0 0.5rem 0 0;
}

.event-img {
  position: relative; /* or 'absolute' if you need it detached from the normal flow */
  display: block;
  width: 98vw; /* 100% of the viewport width */
  height: 70vh; /* 80% of the viewport height */
  background-position: center center;
  background-size: cover;
  -o-object-fit: cover;
     object-fit: cover;
  background-repeat: no-repeat;
  margin: 0 0 2rem 0;
  padding: 0; /* Ensure no padding */
  display: flex;
  align-items: center;
}
.event-img h2 {
  background-color: white;
  padding: 2rem 4rem;
  font-size: 5rem;
}

.info-container-h {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  display: wrap;
  flex-wrap: wrap;
  font-size: 20px;
}
.info-container-h li {
  display: flex;
  align-items: center;
  margin: 0.2rem 0.2rem 0.2rem 0;
}
.info-container-h i {
  margin-right: 5px;
  color: #999;
}

.single {
  display: flow-root;
  font-size: 20px;
}

/* Gallery Wrapper */
#gallery_wrapper {
  margin-top: 20px;
}
#gallery_wrapper .gallery_single_row {
  height: 100px;
}

#img_box_container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery_single_row {
  position: relative;
  width: 150px;
  height: 150px;
}

.image_container {
  position: relative;
  cursor: pointer;
}

.gallery_img_img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.button.remove {
  position: absolute;
  top: 5px;
  right: 5px;
  background: red;
  color: white;
  border: none;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
}

.button.add {
  margin-top: 15px;
}

.post-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.gallery-item img {
  width: 140px;
  height: 140px;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Lightbox Styles */
#ew-lightbox {
  display: none;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(0, 0, 0, 0.95) !important;
  z-index: 999999 !important;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 !important;
  margin: 0 !important;
  box-sizing: border-box;
}

.lightbox-content-wrapper {
  position: relative;
  width: 100vw;
  height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#ew-lightbox img.lightbox-content {
  max-width: 95vw !important;
  max-height: 80vh !important;
  object-fit: contain !important;
  transition: opacity 0.3s ease;
  box-shadow: 0 0 30px rgba(0,0,0,1);
}

#ew-caption {
  color: #fff !important;
  margin-top: 15px !important;
  font-size: 1.2rem !important;
  text-align: center !important;
  padding: 0 40px !important;
  width: 100%;
}

.lightbox-thumbnails {
  display: flex;
  gap: 12px;
  height: 100px;
  width: 100vw;
  padding: 10px;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
  overflow-x: auto;
}

.lightbox-thumb {
  width: 70px;
  height: 70px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.4;
  border: 2px solid transparent;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.lightbox-thumb.active, .lightbox-thumb:hover {
  opacity: 1;
  border-color: #fff;
  transform: scale(1.05);
}

.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  color: white !important;
  background: rgba(255, 255, 255, 0.15);
  width: 60px;
  height: 60px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s ease, transform 0.2s ease;
  z-index: 1000001;
}

.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.lightbox-close {
  top: 30px;
  right: 30px;
}

.lightbox-prev {
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev .dashicons, .lightbox-next .dashicons, .lightbox-close .dashicons {
  font-size: 44px !important;
  width: 44px;
  height: 44px;
}

.sharing__container {
  justify-items: center;
  display: flex;
  flex-wrap: wrap;
}
.sharing__container .social-share {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
  margin: 20px 0;
}

.social-share {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-share a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.social-share a:hover {
  transform: scale(1.1);
}

.social-share a:hover .cls-1 {
  fill: #000;
}

/* General Styles */
#container-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* Card Style */
.card-am {
  display: flex;
  flex-direction: column;
  background-color: rgba(216, 223, 225, 0.35);
  border-radius: 7px;
  margin: 0.7em;
  transition: transform 1400ms ease;
  flex-wrap: wrap;
  width: 420px;
  align-content: flex-start;
  transition: transform 0.3s ease;
}

.card-am:hover {
  transform: translateY(-5px);
}

.img-container {
  flex: 2;
  overflow: hidden;
}

.img-container img {
  width: 420px;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  border-radius: 0;
}

.container-am {
  flex: 1;
  padding: 1rem 1.5rem 2.5rem 1.5rem;
}
.container-am h2 {
  font-size: 32px;
  text-transform: uppercase;
}

.wp-event-content {
  margin: auto;
  max-width: 950px;
}

.menu-nav {
  display: flex;
  gap: 1rem;
}
.menu-nav li {
  display: flex;
  background-color: rgba(207, 207, 207, 0.1098039216);
  padding: 0.1rem 0.7rem;
  border-radius: 20px;
}

.menu-toggle {
  cursor: pointer;
}

.menu-toggle {
  display: none !important;
}

/* Sidebar styling */
.sidebar {
  right: -300px; /* Initially hidden */
  display: none;
}

.sidebar.active {
  right: 0; /* Slide in */
}

/* Overlay styling */
.overlay {
  display: none; /* Initially hidden */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  z-index: 1;
  opacity: 0; /* Hidden by default */
  transition: opacity 0.3s ease-in-out;
}

.overlay.active {
  display: block;
  opacity: 1; /* Show the overlay */
}

/* Prevent scrolling when sidebar is open */
.overflow-hidden {
  overflow: hidden;
}

/* Close button styling */
.close-btn {
  cursor: pointer;
}

.taxonomy-eventcat a {
  background-color: rgba(23, 68, 100, 0.11);
  border-radius: 20px;
  padding: 2px 12px;
}

.element-button {
  display: inline-block;
  text-decoration: none;
  font-weight: 100;
  font-size: 20px;
  margin: 1rem 1rem 1rem 0;
}

/* Event Title and Button *//*# sourceMappingURL=style.css.map */