.wpep-events {
  font-family: "Philosopher", Sans-serif;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem 0;
}
.wpep-list .wpep-event {
  flex: 1 1 100%;
  display: flex;
  margin-bottom: 2rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  overflow: hidden;
}
.wpep-grid .wpep-event {
  flex: 1 1 calc(33% - 2rem);
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  margin-bottom: 2rem;
  overflow: hidden;
}
.wpep-thumb img {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px 0 0 8px;
}
.wpep-content {
  padding: 1rem;
  flex: 1;
}
.wpep-title {
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
}
.wpep-meta {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0.5rem;
}
.wpep-excerpt {
  font-size: 1rem;
  color: #333;
}

.wpep-events-listing {
    padding: 30px 0;
}
.wpep-event-card {
    font-family: "Mulish", Sans-serif;
    display: flex;
    background-color: transparent;
    background-image: linear-gradient(90deg, #FFDBDB 0%, #FFFFFF 100%);
    border-radius: 10px;
    overflow: hidden;
    margin: 30px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    align-items: stretch;
    max-width: 98vw;
    max-height: 270px;
}

.wpep-event-image {
    width: 45%;
}

.wpep-event-image img {
    /*width: 420px;
    height: 100%;*/
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}
.wpep-event-details {
    width: 55%;
    padding: 20px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /*line-height: 24px;*/
}
.wpep-event-title {
    font-family: "Philosopher", Sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1d1d1d;
    line-height: 14px;
}
.wpep-event-desc {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 18px;
    color: #444;
}
.wpep-event-date-row {
    font-family: "Mulish", Sans-serif;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
}
.wpep-event-date-icon {
    font-size: 1.3em;
    margin-right: 8px;
}
.wpep-event-date {
    font-family: "Mulish", Sans-serif;
    /*font-weight: 400;*/
    font-weight: 700;
    font-size: 15px;
}
.wpep-event-price-row {
    font-family: "Philosopher", Sans-serif;
    font-size: 18px;
    margin-bottom: 18px;
    color: #222;
    display: flex;
    align-items: center;
    gap: 18px;
}
.wpep-event-price {
    font-weight: 700;
    display:block ruby ;
}
.wpep-event-includes {
    font-family: "Mulish", Sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #1d1d1d;
}
.wpep-event-buttons {
    font-family: "Philosopher", Sans-serif;
    font-size: 18px;
    display: flex;
    gap: 16px;
}
.wpep-btn {
    display: inline-block;
    padding: 8px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border 0.2s;
    cursor: pointer;
}
.wpep-btn-primary {
    background: #b40800;
    color: #fff;
    border: none;
    text-decoration: none !important;
}
.wpep-btn-primary:hover {
    background: #fff;
    border: 2px solid #b40800;
}
.wpep-btn-outline {
    background: transparent;
    color: #b40800;
    border: 2px solid #b40800;
    text-decoration: none;
}
.wpep-btn-outline:hover {
    background: #b40800;
    color: #fff;
}
@media (max-width: 900px) {
    .wpep-event-card {
        flex-direction: column;
        border-radius: 10px;
        max-height: fit-content;
    }
    .wpep-event-image {
        width: 100% !important;
    }
    .wpep-event-image img {
        width: 100%;
        border-radius: 10px 10px 0 0;
    }
    .wpep-event-details {
        width: 100% !important;
        padding: 24px 16px;
    }
    .wpep-event-title {
        font-size: 24px;
        line-height: 24px;
    }
    .wpep-event-includes{
        font-size: 16px;
    }
    .wpep-btn {
        padding: 8px 20px;
    }
}

@media (max-width: 900px) {
  .wpep-grid .wpep-event { flex: 1 1 calc(50% - 2rem); }
}
@media (max-width: 600px) {
  .wpep-events { flex-direction: column; gap: 1rem; }
  .wpep-list .wpep-event, .wpep-grid .wpep-event { flex: 1 1 100%; }
  .wpep-thumb img { width: 100%; height: 120px; border-radius: 8px 8px 0 0; }
}