.chess-event-card {
    display: flex;
    gap: 25px;
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
}

.chess-event-image {
    flex: 0 0 234px; /* Giống width ảnh trong hình */
    height: 234px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.chess-event-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.chess-event-header {
    margin-bottom: 60px;
}

.chess-event-date {
    font-size: 16px;
    font-family: 'Poppins';
    /*font-weight: 700;*/
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 5px;
    color: #1a1a1a;
    line-height: 1.2;
}

.chess-event-time {
    font-size: 20px;
    font-family: 'Merriweather';
    color: #4a4a4a;
    font-weight: 400;
}

.chess-event-details {
    
}

.chess-event-title {
    font-size: 32px;
    font-family: 'Merriweather';
    font-weight: 900;
    margin-bottom: 12px;
    color: #1a1a1a;
    text-decoration: underline;
}
.chess-event-description{
    font-size: 16px;
    font-family: 'Poppins';
    font-weight: 400;
}
.chess-event-location {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.5;
    margin: 0;
}

.chess-event-cost {
    font-size: 15px;
    color: #4a4a4a;
    margin-top: 10px;
}

.chess-event-button {
    display: inline-block;
    padding: 10px 20px;
    background: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    align-self: flex-start;
    margin-top: 15px;
    font-size: 14px;
    transition: background 0.3s;
}

.chess-event-button:hover {
    background: #0052a3;
}
.custom-events-pagination {
  margin-top: 30px;
}

.custom-events-pagination .page-numbers {
  display: inline-block;
  margin: 0 5px;
  padding: 8px 12px;
  background: #eee;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
}

.custom-events-pagination .current {
  background: #008f6e;
  color: #fff;
  border-radius:30px;
  padding: 12px;
  
}

/* Responsive */
@media (max-width: 768px) {
    .chess-event-card {
        flex-direction: column;
        gap: 15px;
    }
    
    .chess-event-image {
        flex: 0 0 200px;
        width: 100%;
    }
    .chess-event-header{
        margin-bottom: 15px;
    }
    .chess-event-title{
        font-size: 24px;
    }
}