    .cc-events-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
    }

    .cc-event-card {
      background: #FFFFFF;
      border: 1px solid rgba(10, 19, 36, 0.08);
      border-radius: 14px;
      padding: 1.1rem;
      display: flex;
      flex-direction: column;
      gap: .5rem;
      box-shadow: 0 2px 8px rgba(10, 19, 36, 0.06), 0 1px 3px rgba(10, 19, 36, 0.03);
      transition: transform .35s cubic-bezier(.4, 0, .2, 1), box-shadow .35s ease, border-color .35s ease;
      text-align: center;
      opacity: 0;
      transform: translateY(20px);
    }

    .cc-event-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 28px rgba(10, 19, 36, 0.12), 0 0 0 1px rgba(201, 168, 76, 0.12);
      border-color: rgba(201, 168, 76, 0.25);
    }

    .cc-event-card-top {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: .75rem;
    }

    .cc-event-card-icon-wrap {
      width: 48px;
      min-width: 48px;
      height: 48px;
      border-radius: 10px;
      background: rgba(10, 19, 36, 0.05);
      border: 1px solid rgba(10, 19, 36, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      color: #C9A84C;
    }

    .cc-event-card-info {
      display: flex;
      flex-direction: column;
      gap: .25rem;
      flex: 1;
      min-width: 0;
      align-items: center;
    }

    .cc-event-card-badge {
      display: inline-block;
      font-size: .7rem;
      font-weight: 900;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 2px 8px;
      border-radius: 3px;
      align-self: center;
    }

    .cc-event-card-title {
      font-family: 'Cinzel', serif;
      font-size: 1.1rem;
      font-weight: 900;
      color: #0A1324;
      line-height: 1.25;
      text-align: center;
    }

    .cc-event-card-meta {
      display: flex;
      flex-direction: column;
      gap: .2rem;
      align-items: center;
    }

    .cc-event-card-meta-item {
      display: flex;
      align-items: center;
      gap: .35rem;
      font-size: .92rem;
      color: #1E293B;
      font-weight: 700;
      justify-content: center;
    }

    .cc-event-card-meta-icon {
      color: #C9A84C;
      font-size: .65rem;
      width: 14px;
      text-align: center;
    }

    .cc-event-card-actions {
      display: flex;
      flex-wrap: wrap;
      gap: .4rem;
      margin-top: auto;
      padding-top: .6rem;
      justify-content: center;
    }

    .cc-events-empty {
      grid-column: 1 / -1;
      text-align: center;
      padding: 2rem;
      color: #8095B0;
      font-size: .95rem;
      font-weight: 700;
      font-style: italic;
    }
