/* Start custom CSS for html, class: .elementor-element-ab9ae33 */@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;800&display=swap');

.activity-calendar,
.activity-calendar * {
  font-family: "Noto Sans KR", sans-serif !important;
  box-sizing: border-box;
}

.activity-calendar {
  width: 100%;
  padding: 70px 0;
  background: #ffffff;
  color: #222222;
}

.calendar-header {
  max-width: 900px;
  margin: 0 auto 46px;
  text-align: center;
  padding: 0 20px;
}

.calendar-header .eyebrow {
  margin: 0 0 8px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9f2525;
  font-weight: 700;
}

.calendar-header h2 {
  margin: 0 0 14px;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #222222;
}

.calendar-header p {
  margin: 0;
  font-size: 16px;
  color: #666666;
  line-height: 1.7;
}

.month-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.month-card {
  min-height: 230px;
  padding: 26px 24px;
  border: 1px solid #eadada;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(60, 30, 20, 0.05);
  transition: all 0.25s ease;
}

.month-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(60, 30, 20, 0.11);
  border-color: #9f2525;
}

.month {
  display: inline-block;
  margin-bottom: 20px;
  padding: 6px 13px;
  border-radius: 999px;
  background: #9f2525;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
}

.event {
  padding: 16px 0;
  border-top: 1px solid #f0e5e3;
}

.event:first-of-type {
  border-top: none;
  padding-top: 0;
}

.event .date {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 700;
  color: #9f2525;
}

.event strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -0.03em;
  color: #222222;
}

.event p {
  margin: 7px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: #777777;
}

.event.highlight {
  position: relative;
  padding-left: 16px;
}

.event.highlight::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  border-radius: 999px;
  background: #9f2525;
}

@media (max-width: 1024px) {
  .month-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .activity-calendar {
    padding: 48px 0;
  }

  .calendar-header h2 {
    font-size: 27px;
  }

  .month-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .month-card {
    min-height: auto;
    padding: 22px 20px;
    border-radius: 16px;
  }
}

/* 월별 카드 등장 모션 */
.month-card {
  opacity: 0;
  transform: translateY(22px);
  animation: monthFadeUp 0.7s ease forwards;
}

.month-card:nth-child(1) { animation-delay: 0.04s; }
.month-card:nth-child(2) { animation-delay: 0.08s; }
.month-card:nth-child(3) { animation-delay: 0.12s; }
.month-card:nth-child(4) { animation-delay: 0.16s; }
.month-card:nth-child(5) { animation-delay: 0.20s; }
.month-card:nth-child(6) { animation-delay: 0.24s; }
.month-card:nth-child(7) { animation-delay: 0.28s; }

@keyframes monthFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* hover 모션 강화 */
.month-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 38px rgba(60, 30, 20, 0.13);
}

/* 행사명 살짝 반응 */
.month-card:hover .event strong {
  color: #9f2525;
}

/* 월 배지 살짝 움직임 */
.month-card:hover .month {
  transform: scale(1.04);
}

.month {
  transition: transform 0.25s ease;
}

/* 강조 행사 막대기 은은한 모션 */
.event.highlight::before {
  animation: barPulse 2.2s infinite;
}

@keyframes barPulse {
  0% {
    opacity: 0.45;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.45;
  }
}/* End custom CSS */