.cc-events-wrap {
  display: grid;
  gap: 18px;
}

.cc-event-featured {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  background: #fff;
  border: 1px solid #e4e8ef;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(17, 32, 57, 0.06);
}

.cc-event-featured img,
.cc-event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cc-event-featured-content {
  padding: 16px 18px 16px 0;
}

.cc-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: #113b73;
  color: #fff;
  padding: 4px 8px;
  border-radius: 6px;
}

.cc-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.cc-event-card {
  border: 1px solid #e4e8ef;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 16px rgba(17, 32, 57, 0.05);
}

.cc-event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 16px 0;
}

.cc-event-featured .cc-event-tags {
  margin: 8px 0 0;
}

.cc-event-tag {
  display: inline-block;
  color: #fff;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: .01em;
  padding: 5px 10px;
  line-height: 1;
}

.cc-event-card h4,
.cc-event-featured h3 {
  margin: 10px 16px 8px;
  line-height: 1.25;
  font-size: 1.24rem;
}

.cc-event-featured h3 {
  margin: 8px 0 10px;
  font-size: 1.46rem;
}

.cc-event-meta,
.cc-event-excerpt {
  margin: 0 16px 8px;
  color: #23354f;
  font-size: 0.96rem;
}

.cc-event-featured .cc-event-meta,
.cc-event-featured .cc-event-excerpt {
  margin: 0 0 8px;
}

.cc-event-excerpt p {
  margin: 0;
}

.cc-events-empty {
  border: 1px dashed #cad1de;
  padding: 14px;
  border-radius: 10px;
}

.cc-event-btn {
  display: inline-block;
  background: #0a78c7;
  color: #fff !important;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .cc-event-featured {
    grid-template-columns: 1fr;
  }

  .cc-event-featured-content {
    padding: 14px 16px 16px;
  }
}

.cc-calendar-wrap {
  border: 1px solid #e4e8ef;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(17, 32, 57, 0.06);
}

.cc-calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid #e9edf3;
}

.cc-calendar-head h3 {
  margin: 0;
  font-size: 1.1rem;
  text-transform: capitalize;
}

.cc-cal-nav {
  color: #0a78c7;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}

.cc-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.cc-cal-cell {
  min-height: 120px;
  border-right: 1px solid #edf0f5;
  border-bottom: 1px solid #edf0f5;
  padding: 8px;
}

.cc-calendar-weekdays .cc-cal-cell {
  min-height: auto;
  background: #f7f9fc;
  font-weight: 700;
  font-size: 0.84rem;
  color: #42566e;
  padding: 10px 8px;
}

.cc-calendar-grid .cc-cal-cell:nth-child(7n) {
  border-right: 0;
}

.cc-cal-empty {
  background: #fafbfd;
}

.cc-cal-daynum {
  font-weight: 700;
  color: #14263f;
  margin-bottom: 6px;
}

.cc-cal-events {
  display: grid;
  gap: 6px;
}

.cc-cal-event {
  display: block;
  background: #eef5ff;
  border: 1px solid #d5e7ff;
  border-radius: 8px;
  padding: 6px 7px;
  text-decoration: none;
}

.cc-cal-time {
  display: inline-block;
  color: #0a78c7;
  font-size: 0.76rem;
  font-weight: 700;
  margin-right: 5px;
}

.cc-cal-title {
  color: #1b2e47;
  font-size: 0.82rem;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .cc-calendar-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .cc-cal-cell {
    min-height: 90px;
    padding: 6px;
  }

  .cc-cal-title {
    display: block;
    margin-top: 2px;
  }
}
