.st-events-wrap {
  margin: 40px auto;
}

.st-events-header-wrap {
  margin-bottom: 24px;
}

.st-events-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(20, 40, 60, 0.08);
  color: #173047;
}

.st-events-main-title {
  margin: 16px 0 10px;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.05;
}

.st-events-main-intro {
  max-width: 760px;
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.7;
  color: rgba(17, 24, 39, 0.85);
}

.st-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}

.st-event-card {
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.10);
}

.st-event-image-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.st-event-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.st-event-inner {
  padding-top: 24px;
  padding-bottom: 28px;
}

.st-event-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(0, 119, 182, 0.10);
  color: #0b4d78;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.st-event-title {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.12;
}

.st-event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  color: #46566a;
  font-size: 0.97rem;
  font-weight: 600;
}

.st-event-meta span {
  position: relative;
  padding-right: 14px;
}

.st-event-meta span:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: 0;
  top: 0;
}

.st-event-intro,
.st-event-description,
.st-event-description p {
  font-size: 1rem;
  line-height: 1.75;
  color: #182432;
}

.st-event-highlight {
  margin: 18px 0;
  padding: 14px 16px;
  border-left: 4px solid #0b4d78;
  border-radius: 16px;
  background: rgba(11, 77, 120, 0.07);
  font-weight: 600;
  line-height: 1.65;
}

.st-event-program {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.07);
}

.st-event-section-title {
  margin-bottom: 14px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0b4d78;
}

.st-program-heading {
  margin: 14px 0 8px;
  font-weight: 800;
  color: #111827;
}

.st-event-program ul {
  margin: 0;
  padding-left: 20px;
}

.st-event-program li {
  margin: 0 0 8px;
  line-height: 1.6;
}

.st-event-actions {
  margin-top: 24px;
}

.st-event-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0b4d78 0%, #1c6fa0 100%);
  color: #fff !important;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(11, 77, 120, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.st-event-button:hover,
.st-event-button:focus {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(11, 77, 120, 0.34);
  opacity: 0.96;
}

.st-event-action-hint {
  margin-top: 10px;
  font-size: 0.92rem;
  color: #5b697b;
}

.st-events-empty {
  padding-top: 14px;
}

@media (max-width: 767px) {
  .st-events-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .st-event-card {
    border-radius: 22px;
  }

  .st-event-inner {
    padding-top: 20px;
    padding-bottom: 22px;
  }
}
