  /* Tinggi header */
  #Programs-Header-Container {
      height: 200px;
      margin-top: 100px;
  }

  /* Layer 1: Gradient dasar */
  .header-gradient {
      height: 200px;
      background: linear-gradient(to right, #8B0000, #DC143C);
  }

  /* Layer 2: Background image di kiri */
  .header-bg {
      height: 200px;
      background-image: url('/modules/landing/teams/gradient-bg.png');
      background-repeat: no-repeat;
      background-size: 250px;
      background-position: left;
  }

  .card-link-wrapper {
      text-decoration: none;
      color: inherit;
      display: block;
  }

  .card-link-wrapper * {
      color: inherit;
  }

  .card-link-wrapper:hover .card-event {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: all 0.2s ease-in-out;
  }


  .header-content {
      max-width: 1170px;
      margin: 0 auto;
      height: 100%;
      position: relative;
      padding: 0.5rem 1rem;
  }

  .header-content span {
      color: white;
      font-weight: bold;
      font-size: 40px;
      text-transform: uppercase;
      position: absolute;
      bottom: 32px;
  }

  /* Filter Section - Matching Card Layout Width */
  .filter-container {
      max-width: 1170px;
      margin: 0 auto;
      padding: 0 15px;
  }

  .filter-card {
      background: white;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      padding: 20px;
      margin-bottom: 30px;
  }

  .event-section {
      max-width: 1340px;
      margin: 0 auto;
      padding: 0 15px;
  }

  .card-event {
      width: 100%;
      max-width: 280px;
      margin: 0 auto;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      background-color: #fff;
      min-height: 200px;
      display: flex;
      flex-direction: column;
  }

  .card-event-header {
      padding: 15px;
      color: white;
      position: relative;
      min-height: 100px;
      height: 160px;
      flex-shrink: 0;
  }

  .card-event-header::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent 70%);
  }

  .card-event-header::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
          url('/modules/landing/teams/gradient-bg.png'),
          rgba(182, 22, 20, 0.85);
      background-blend-mode: multiply;
      z-index: 1;
  }

  .card-event-header img {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      width: 100%;
      height: 100%;
  }

  .card-event-body {
      padding: 15px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
  }

  .tag-event {
      position: absolute;
      bottom: 0;
      left: 0;
      background-color: #1e54b7;
      color: white;
      font-size: 0.75rem;
      padding: 4px 10px;
      border-top-right-radius: 4px;
      z-index: 2;
  }

  .session-event-title {
      font-weight: 600;
      font-size: 0.95rem;
      margin-bottom: 10px;
      line-height: 1.3;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      overflow: hidden;
  }

  .date-event-time {
      color: #b61614;
      font-weight: 400;
      font-size: 0.75rem;
      margin-bottom: 3px;
  }

  .location-event {
      font-size: 0.75rem;
      color: #929292;
      margin-bottom: 30px;
  }

  .status-event {
      font-size: 0.8rem;
      color: #4f5eeb;
      font-weight: 200;
      margin-top: auto;
  }

  /* Media queries untuk responsive breakpoints */
  @media (max-width: 1199.98px) {
      .card-event {
          max-width: 260px;
      }

      .card-event-header {
          height: 110px;
      }
  }

  @media (max-width: 991.98px) {
      .card-event {
          max-width: 240px;
      }

      .card-event-header {
          height: 100px;
      }
  }

  @media (max-width: 767.98px) {
      .card-event {
          max-width: 300px;
      }

      .card-event-header {
          height: 120px;
      }

      .card-event-body {
          padding: 12px;
      }

      .session-event-title {
          font-size: 0.9rem;
      }
  }

  @media (max-width: 575.98px) {
      .card-event {
          max-width: 100%;
          min-width: 280px;
      }

      .card-event-header {
          height: 100px;
      }

      .card-event-body {
          padding: 12px;
      }

      .tag-event {
          font-size: 0.7rem;
      }

      .session-event-title {
          font-size: 0.85rem;
      }

      .date-event-time {
          font-size: 0.8rem;
      }

      .location-event,
      .status-event {
          font-size: 0.75rem;
      }
  }


  @media (max-width: 575.98px) {
      .col-sm-6 {
          flex: 0 0 100%;
          max-width: 100%;
      }
  }