/* body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 30px;
      background: #f5f7fb;
    } */
    .event-list {
      direction: rtl;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px;
    }
    .event-card {
      background: #fff;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }
    .event-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }
    .event-content {
      padding: 18px;
    }
    .event-title {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 10px;
    }
    .event-meta {
      font-size: 14px;
      color: #666;
      margin-bottom: 8px;
    }
    .event-desc {
      font-size: 15px;
      color: #444;
      line-height: 1.6;
      margin-top: 12px;
    }
    .read-more {
      display: inline-block;
      margin-top: 15px;
      padding: 10px 16px;
      background: #3845AD;
      color: #fff;
      text-decoration: none;
      border-radius: 8px;
    }