.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 20px;
  margin-bottom: 40px;
}
.events-grid .event-item,
.events-grid .event-item-featured {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
  background: #fff;
  margin-bottom: 0px;
  padding-bottom: 0px;
}
.events-grid .event-item-featured {
  grid-column: span 2;
  grid-row: span 2;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.events-grid .event-item-featured:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
.events-grid .event-item {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.events-grid .event-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.events-grid .event-item-featured .event-excerpt {
  color: #666;
  line-height: 1.5;
  -webkit-line-clamp: 4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
}
.events-grid .event-item .event-title {
  line-height: 1.5;
  -webkit-line-clamp: 2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
}
.events-grid .event-item .event-excerpt {
  color: #666;
  line-height: 1.5;
  -webkit-line-clamp: 2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
}
.events-grid .event-item .image-wrapper,
.events-grid .event-item-featured .image-wrapper {
  position: relative;
  width: 100%;
  height: 166px;
  overflow: hidden;
}
.events-grid .event-item .image-wrapper img,
.events-grid .event-item-featured .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.events-grid .event-item .event-date,
.events-grid .event-item-featured .event-date {
  color: rgb(156, 163, 175);
  font-size: 14px;
}
.events-grid .event-item .event-content,
.events-grid .event-item-featured .event-content {
  padding: 12px;
  background: #fff;
}
.events-grid .event-item .event-title,
.events-grid .event-item-featured .event-title {
  margin: 0 0 10px 0;
  color: #333;
  font-weight: bold;
  line-height: 1.5;
  font-size: 16px;
  -webkit-line-clamp: 3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
}
.events-grid .event-item-featured .image-wrapper {
  height: 300px;
}
.events-grid .event-item-featured .event-content {
  padding: 20px;
}
.events-grid .event-item-featured .event-title {
  font-size: 2.2rem;
  margin-bottom: 15px;
  line-clamp: 3;
}

@media (max-width: 1120px) {
  .events-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .events-grid {
    display: flex;
    flex-direction: column;
    gap: 20px 0px;
  }
  .events-grid .event-item {
    height: fit-content;
  }
}
/* Pagination */
.events-pagination {
  margin-top: 30px;
  text-align: center;
}
.events-pagination .page-numbers,
.events-pagination .pagination-link-events {
  padding: 0.5rem 0.75rem;
  border-radius: 0px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(74, 74, 74);
}
.events-pagination .page-numbers .pagination-link,
.events-pagination .pagination-link-events .pagination-link {
  color: rgb(74, 74, 74);
}
.events-pagination .page-numbers.current,
.events-pagination .pagination-link-events.current {
  border-top: 2px solid rgb(242, 144, 10);
  cursor: default;
  color: rgb(242, 144, 10);
}

.event-tab .container-content-area .wpb_wrapper {
  display: flex;
  justify-content: center;
}
.event-tab .container-content-area .wpb_wrapper > * {
  position: relative;
}
.event-tab .container-content-area .wpb_wrapper > *:not(:last-child)::after {
  content: "|";
  color: rgb(50, 50, 50) !important;
  margin: 0 12px;
  font-weight: 400;
}
.event-tab .container-content-area .wpb_wrapper .vc_btn3-container {
  display: flex;
  align-items: center;
}
.event-tab .container-content-area .wpb_wrapper .vc_btn3-container button {
  color: rgb(50, 50, 50) !important;
  border: 0px;
  padding: 0px;
  font-weight: 600;
}
.event-tab .container-content-area .wpb_wrapper .vc_btn3-container button.active {
  color: rgb(242, 144, 10) !important;
}

/* Two Column Events Styles */
.events-two-column-container {
  margin: 20px 0;
}
.events-two-column-container .event-tab {
  border: none;
  color: #666;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  position: relative;
}
.events-two-column-container .event-tab:hover {
  color: #333;
}
.events-two-column-container .event-tab.active {
  --tw-text-opacity: 1;
  color: rgb(242, 144, 10, var(--tw-text-opacity));
}

.events-tabs-container {
  margin-bottom: 30px;
}

.events-tabs {
  display: flex;
  gap: 0;
  justify-content: center;
}
.events-tabs > *:not(:last-child)::after {
  content: "|";
  color: rgb(50, 50, 50) !important;
  margin: 0 12px;
  font-weight: 400;
}

.events-content-container {
  display: flex;
  gap: 30px;
}

.events-single-column {
  flex: 1;
  width: 100%;
}
.events-single-column h3 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #333;
  font-size: 24px;
}

.events-left-column {
  flex: 0 0 300px;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
}
.events-left-column h3 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #333;
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 2px solid #e0e0e0;
}

.events-right-column {
  flex: 1;
}
.events-right-column h3 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #333;
  font-size: 24px;
}

.events-month-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.month-item {
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.month-item.active {
  background: rgb(242, 144, 10);
  border-color: rgb(242, 144, 10);
}
.month-item.active .month-link {
  color: white;
}
.month-item.active .month-link:hover {
  background: rgba(255, 255, 255, 0.1);
}
.month-item.active .post-count {
  background: rgba(0, 0, 0, 0.29);
  color: white;
}

.month-link {
  display: flex;
  justify-content: space-between;
  padding: 12px 15px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}
.month-link:hover {
  background: #f0f0f0;
  text-decoration: none;
}

.month-name {
  font-weight: 500;
}

.post-count {
  background: #e0e0e0;
  color: #666;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.9em;
}

.events-month-posts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.month-event-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
  background: white;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.month-event-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.month-event-item a {
  text-decoration: none;
  color: inherit;
  display: flex;
}

.month-event-image {
  width: auto;
  aspect-ratio: 16/9;
  min-width: 400px;
  height: 244px;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.month-event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #f0f0f0;
}
.month-event-image .default-event-image {
  width: 80%;
  height: auto;
  background: #000;
}

.month-event-content {
  padding: 15px;
}

.month-event-date {
  color: rgb(242, 144, 10);
  font-size: 0.9em;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

.month-event-title {
  margin: 0 0 10px 0;
  font-size: 1.1em;
  line-height: 1.3;
  font-weight: 600;
  color: #333;
}

.month-event-excerpt {
  color: #666;
  font-size: 0.95em;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.events-year-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
.events-year-list .year-item {
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.events-year-list .year-item .year-link {
  display: flex;
  justify-content: space-between;
  padding: 12px 15px;
  text-decoration: none;
}
.events-year-list .year-item.active {
  background: rgb(242, 144, 10);
  border-color: rgb(242, 144, 10);
}
.events-year-list .year-item.active .year-link {
  color: white;
}
.events-year-list .year-item.active .year-link:hover {
  background: rgba(255, 255, 255, 0.1);
}
.events-year-list .year-item.active .post-count {
  background: rgba(0, 0, 0, 0.29);
  color: white;
}

@media (max-width: 1000px) {
  .events-content-container {
    flex-direction: column;
    gap: 20px;
  }
  .events-left-column {
    flex: none;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .events-left-column h3 {
    font-size: 16px;
  }
  .events-year-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
  }
  .year-item {
    margin-bottom: 0;
  }
}
@media (max-width: 787px) {
  .events-right-column .events-month-posts .month-event-item a {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .events-month-posts {
    grid-template-columns: 1fr;
  }
  .event-tab {
    font-size: 13px;
  }
  .events-left-column {
    padding: 15px;
  }
  .events-year-list {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
  }
  .year-link {
    padding: 10px 12px;
    font-size: 14px;
  }
  .year-name {
    font-size: 14px;
  }
  .post-count {
    font-size: 0.85em;
    padding: 1px 6px;
  }
}
.copy-popup {
  visibility: hidden;
  min-width: 250px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  padding: 16px;
  position: fixed;
  z-index: 9999;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  font-size: 16px;
}

.copy-popup.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}
@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}

/*# sourceMappingURL=events.css.map */
