/* Home Events Section Styles */
.events-wrapper {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 25px;
    height: 100%;
  }
  
  .section-subheader {
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
  }
  
  .section-subheader h3 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin: 0;
  }
  
  .event-item {
    display: flex;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e9ecef;
  }
  
  .event-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  
  .event-date {
    flex: 0 0 150px;
    margin-right: 20px;
    background-color: #3498db;
    color: #fff;
    border-radius: 4px;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
  }
  
  .event-date .date {
    font-size: 24px;
    font-weight: 700;
    padding: 5px 0;
    display: block;
  }
  
  .event-date .month {
    background-color: rgba(0, 0, 0, 0.1);
    font-size: 14px;
    padding: 2px 0;
    display: block;
  }
  
  .event-content {
    flex: 1;
  }
  
  .event-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
    line-height: 1.3;
    color: #2c3e50;
  }
  
  .event-content h4 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .event-content h4 a:hover {
    color: #3498db;
  }
  
  .event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #6c757d;
  }
  
  .event-meta span {
    display: flex;
    align-items: center;
  }
  
  .event-meta i {
    margin-right: 5px;
    color: #3498db;
  }
  
  .event-content p {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 10px;
    line-height: 1.5;
  }
  
  .read-more {
    font-size: 14px;
    color: #3498db;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
  }
  
  .read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
  }
  
  .read-more:hover i {
    transform: translateX(3px);
  }
  
  .no-events {
    padding: 20px;
    text-align: center;
    color: #6c757d;
  }
  
  /* Responsive Styles */
  @media (max-width: 767px) {
    .event-item {
      flex-direction: column;
    }
  
    .event-date {
      margin-right: 0;
      margin-bottom: 15px;
      width: 80px;
      flex-direction: row;
      align-items: center;
    }
  
    .event-date .date {
      padding: 5px 10px;
      border-right: 1px solid rgba(255, 255, 255, 0.2);
    }
  
    .event-date .month {
      padding: 5px 10px;
      background-color: transparent;
    }
  
    .event-meta {
      flex-direction: column;
      gap: 5px;
    }
  }
  