.kimdue-events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;

  .kimdue-event {
    text-decoration: none !important;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
  }
}

.covered-image {
  width: 100%;
  height: 180px;
}

.covered-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.padded-content {
  padding: 15px;
  .title {
    font-size: 28px;
    font-family: "Barlow Condensed", serif;
    margin: 0 0 10px;
  }

  .timeframe {
    font-size: 18px;
    margin: 0 0 10px;
    font-family: "Barlow Condensed", serif;
    font-weight: 500;
  }

  span.inline-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #005b94;
  }

  .btn {
    font-family: "Barlow Condensed", serif;
  }
}

.events-pagination {
  margin-top: 25px;
  text-align: center;
  .page-numbers {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border: 1px solid #005b94;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    border-radius: 3px;
    color: #005b94;
    &.current {
      background: #005b94;
      color: #fff;
    }
  }
}

.kimdue-event-wrapper {
  padding: 50px 0;
  .cover-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 15px;
  }

  .single-cover-image {
    width: 32%;
    height: 220px;
  }

  .events-area,
  .schedules-wrapper {
    width: 100%;
  }

  .single-cover-image.large {
    width: 100%;
    height: 500px;
    margin-bottom: 20px;
  }

  .single-cover-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .title {
    font-size: 28px;
    font-family: "Barlow Condensed", serif;
    font-weight: 700;
    margin: 0 0 10px;
  }

  p.timeframe {
    font-size: 18px;
    margin: 0;
    font-weight: 700;
    font-family: "Barlow Condensed", serif;
  }

  .title-wrapper {
    border-bottom: 2px solid #000;
    margin-bottom: 30px;
    padding-bottom: 15px;
  }

  .event-details,
  .events-schedule-area {
    display: flex;
    gap: 30px;
  }

  .agenda-area,
  .event-location-wrapper {
    width: 300px;
    min-width: 300px;
  }

  .event-title,
  .day-schedule-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 5px;
    font-family: "Barlow Condensed", sans-serif;
  }

  .agenda-title,
  .contact-title,
  .hotel-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 2px solid currentColor;
    color: #005b94;
    text-transform: uppercase;
  }

  .event-agendas {
    margin-bottom: 30px;
  }

  .event-info p {
    margin: 0;
    line-height: 1.6;
    font-weight: 600;
    font-size: 15px;
  }

  .events-photos {
    column-count: 3;
    column-gap: 15px;
    row-gap: 15px;
    margin: 100px 0 50px;
  }

  .event-single-photo {
    margin-bottom: 15px;
  }

  .schedule-title {
    margin: 0 0 15px;
    font-family: "Barlow Condensed";
    font-size: 18px;
    font-weight: 600;
  }

  .hotel-photo {
    margin-bottom: 15px;
  }

  .hotel-address p {
    margin: 0;
    line-height: 1.6;
  }

  .event-hotel {
    margin-bottom: 50px;
  }

  .logo {
    margin-bottom: 15px;
  }

  .contact-info p {
    margin: 0;
    line-height: 1.6;
  }

  .single-event-schedule {
    display: flex;
    gap: 10px;
  }

  .single-event-schedule + .single-event-schedule {
    margin-top: 2px;
  }

  .single-day-schedule + .single-day-schedule {
    margin-top: 15px;
  }
}

/* mobile view */
@media (max-width: 768px) {
  .kimdue-event-wrapper {
    .event-details,
    .events-schedule-area {
      flex-direction: column;
      gap: 20px;
    }

    .agenda-area,
    .event-location-wrapper {
      width: 100%;
    }

    .single-cover-image.large,
    .single-cover-image {
      width: 49%;
      height: 180px;
      margin-bottom: 15px;
    }

    .events-photos {
      column-count: 2;
      column-gap: 10px;
      row-gap: 10px;
      margin: 50px 0 50px;
    }
  }
}
