/* [project]/src/components/Hero.module.css [app-client] (css) */
.Hero-module__ZARIfG__hero {
  color: #1a1a1a;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.Hero-module__ZARIfG__slide {
  opacity: 0;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  transition: opacity 1s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
}

.Hero-module__ZARIfG__slideActive {
  opacity: 1;
}

.Hero-module__ZARIfG__overlay {
  z-index: 1;
  background: linear-gradient(#fff3, #ffffff80);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.Hero-module__ZARIfG__content {
  z-index: 2;
  text-align: center;
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  background: #ffffff73;
  border: 1px solid #ffffff4d;
  border-radius: 60px;
  max-width: 900px;
  padding: 3rem;
  position: relative;
  box-shadow: 0 8px 32px #1f268733;
}

.Hero-module__ZARIfG__title {
  letter-spacing: -1px;
  color: #000;
  margin-bottom: 1.5rem;
  font-size: 4rem;
  font-weight: 800;
}

.Hero-module__ZARIfG__subtitle {
  color: #57606f;
  margin-bottom: 2.5rem;
  font-size: 1.5rem;
  font-weight: 500;
}

.Hero-module__ZARIfG__cta {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  color: #fff;
  background: #bc9a6bd9;
  border: 1px solid #fff3;
  border-radius: 50px;
  padding: 1.25rem 3rem;
  font-size: 1.25rem;
  font-weight: 600;
  transition: all .3s;
  display: inline-block;
  box-shadow: 0 4px 15px #0000001a;
}

.Hero-module__ZARIfG__cta:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 25px #0003;
}

@keyframes Hero-module__ZARIfG__slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes Hero-module__ZARIfG__slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .Hero-module__ZARIfG__title {
    font-size: 2.5rem;
  }

  .Hero-module__ZARIfG__subtitle {
    font-size: 1.125rem;
  }
}

/* [project]/src/components/NewsSection.module.css [app-client] (css) */
.NewsSection-module__rpQ93q__section {
  max-width: 1240px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.NewsSection-module__rpQ93q__header {
  border-bottom: 5px solid var(--primary);
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: .5rem;
  display: flex;
}

.NewsSection-module__rpQ93q__title {
  margin: 0;
}

.NewsSection-module__rpQ93q__badge {
  background: var(--primary);
  color: #fff;
  border-radius: 4px 4px 0 0;
  padding: .5rem 1.5rem;
  font-size: 1.25rem;
  font-weight: 800;
}

.NewsSection-module__rpQ93q__more {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  transition: transform .3s;
}

.NewsSection-module__rpQ93q__more:hover {
  transform: translateX(5px);
}

.NewsSection-module__rpQ93q__tableWrapper {
  box-shadow: var(--shadow-sm);
  background: #fff;
  border: 1px solid #0000000d;
  border-radius: 12px;
  overflow: hidden;
}

.NewsSection-module__rpQ93q__table {
  border-collapse: collapse;
  width: 100%;
}

.NewsSection-module__rpQ93q__row {
  border-bottom: 1px solid #0000000d;
  transition: background .2s;
}

.NewsSection-module__rpQ93q__row:hover {
  background: #c4a46d0d;
}

.NewsSection-module__rpQ93q__dateCell {
  color: var(--text-muted);
  padding: 1.2rem;
  font-family: monospace;
  font-weight: 500;
}

.NewsSection-module__rpQ93q__titleCell {
  padding: 1.2rem;
}

.NewsSection-module__rpQ93q__newsLinkBtn {
  text-align: left;
  cursor: pointer;
  color: var(--text);
  background: none;
  border: none;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 1.1rem;
  font-weight: 600;
  transition: color .2s;
}

.NewsSection-module__rpQ93q__newsLinkBtn:hover {
  color: var(--primary);
}

@media (max-width: 768px) {
  .NewsSection-module__rpQ93q__dateCell {
    display: none;
  }
}

/* [project]/src/components/NewsModal.module.css [app-client] (css) */
.NewsModal-module__bqBFNa__overlay {
  z-index: 2000;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: #000000b3;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  display: flex;
  position: fixed;
  inset: 0;
}

.NewsModal-module__bqBFNa__modal {
  background: #fff;
  border-radius: 40px;
  flex-direction: column;
  width: 95%;
  max-width: 1200px;
  max-height: 92vh;
  animation: .4s cubic-bezier(.165, .84, .44, 1) NewsModal-module__bqBFNa__slideUp;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 120px #0006;
}

@keyframes NewsModal-module__bqBFNa__slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.NewsModal-module__bqBFNa__closeBtn {
  cursor: pointer;
  color: #999;
  z-index: 10;
  background: none;
  border: none;
  font-size: 2.5rem;
  transition: color .2s;
  position: absolute;
  top: 1.5rem;
  right: 2rem;
}

.NewsModal-module__bqBFNa__closeBtn:hover {
  color: var(--primary);
}

.NewsModal-module__bqBFNa__header {
  border-bottom: 1px solid #eee;
  padding: 3rem 3rem 1.5rem;
}

.NewsModal-module__bqBFNa__meta {
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  display: flex;
}

.NewsModal-module__bqBFNa__badge {
  background: var(--primary);
  color: #fff;
  border-radius: 50px;
  padding: 4px 12px;
  font-size: .8rem;
  font-weight: 800;
}

.NewsModal-module__bqBFNa__date {
  color: var(--text-muted);
  font-size: .9rem;
  font-weight: 600;
}

.NewsModal-module__bqBFNa__title {
  color: var(--text);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.3;
}

.NewsModal-module__bqBFNa__body {
  flex: 1;
  padding: 2rem 3rem 4rem;
  overflow-y: auto;
}

.NewsModal-module__bqBFNa__coverWrapper {
  border-radius: 20px;
  margin-bottom: 2.5rem;
  overflow: hidden;
  box-shadow: 0 10px 30px #0000001a;
}

.NewsModal-module__bqBFNa__cover {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .NewsModal-module__bqBFNa__modal {
    border-radius: 20px;
    max-height: 95vh;
  }

  .NewsModal-module__bqBFNa__header {
    padding: 2rem;
  }

  .NewsModal-module__bqBFNa__body {
    padding: 1.5rem 2rem;
  }

  .NewsModal-module__bqBFNa__title {
    font-size: 1.5rem;
  }
}

/* [project]/src/components/ActivitySection.module.css [app-client] (css) */
.ActivitySection-module__ae4B2W__section {
  max-width: 1240px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.ActivitySection-module__ae4B2W__header {
  border-bottom: 5px solid var(--primary);
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: .5rem;
  display: flex;
}

.ActivitySection-module__ae4B2W__title {
  margin: 0;
}

.ActivitySection-module__ae4B2W__badge {
  background: var(--primary);
  color: #fff;
  border-radius: 4px 4px 0 0;
  padding: .5rem 1.5rem;
  font-size: 1.25rem;
  font-weight: 800;
}

.ActivitySection-module__ae4B2W__more {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  transition: transform .3s;
}

.ActivitySection-module__ae4B2W__more:hover {
  transform: translateX(5px);
}

.ActivitySection-module__ae4B2W__grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  display: grid;
}

.ActivitySection-module__ae4B2W__card {
  box-shadow: var(--shadow-sm);
  background: #fff;
  border: 1px solid #0000000d;
  border-radius: 12px;
  text-decoration: none;
  transition: all .3s;
  overflow: hidden;
}

.ActivitySection-module__ae4B2W__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}

.ActivitySection-module__ae4B2W__imgWrapper {
  height: 180px;
  overflow: hidden;
}

.ActivitySection-module__ae4B2W__img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .5s;
}

.ActivitySection-module__ae4B2W__card:hover .ActivitySection-module__ae4B2W__img {
  transform: scale(1.1);
}

.ActivitySection-module__ae4B2W__cardContent {
  padding: 1.5rem;
}

.ActivitySection-module__ae4B2W__postTitle {
  color: var(--primary);
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: .75rem;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.4;
  display: -webkit-box;
  overflow: hidden;
}

.ActivitySection-module__ae4B2W__excerpt {
  color: var(--text-muted);
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: .95rem;
  line-height: 1.6;
  display: -webkit-box;
  overflow: hidden;
}

@media (max-width: 768px) {
  .ActivitySection-module__ae4B2W__grid {
    grid-template-columns: 1fr;
  }
}

/* [project]/src/components/InfoGrid.module.css [app-client] (css) */
.InfoGrid-module__plB4aq__section {
  background: #f8f9fa;
  padding: 4rem 2rem;
}

.InfoGrid-module__plB4aq__container {
  max-width: 1240px;
  margin: 0 auto;
}

.InfoGrid-module__plB4aq__layout {
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  display: grid;
}

.InfoGrid-module__plB4aq__trianglesArea {
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  display: flex;
}

.InfoGrid-module__plB4aq__svgWrapper {
  flex: 1;
  justify-content: center;
  display: flex;
}

.InfoGrid-module__plB4aq__svg {
  height: 320px;
  overflow: visible;
}

.InfoGrid-module__plB4aq__redPath {
  fill: #df013a;
  cursor: pointer;
  transition: transform .3s, fill .3s;
}

.InfoGrid-module__plB4aq__redPath:hover {
  fill: #ff2d64;
  transform: scale(1.02);
}

.InfoGrid-module__plB4aq__redPathStatic {
  fill: #df013a;
}

.InfoGrid-module__plB4aq__greenPath {
  fill: #218066;
  cursor: pointer;
  transition: transform .3s, fill .3s;
}

.InfoGrid-module__plB4aq__greenPath:hover {
  fill: #2da182;
  transform: scale(1.02);
}

.InfoGrid-module__plB4aq__greenPathStatic {
  fill: #218066;
}

.InfoGrid-module__plB4aq__text {
  fill: #000;
  pointer-events: none;
  text-shadow: 0 0 2px #fffc;
  font-size: 16px;
  font-weight: 700;
}

.InfoGrid-module__plB4aq__textWhite {
  fill: #fff;
  pointer-events: none;
  font-size: 16px;
  font-weight: 700;
}

.InfoGrid-module__plB4aq__calendarArea {
  flex-direction: column;
  display: flex;
}

.InfoGrid-module__plB4aq__calendarContainer {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 20px;
  height: 100%;
  padding: 1.5rem;
  box-shadow: 0 10px 30px #0000000d;
}

.InfoGrid-module__plB4aq__calendarHeader h3 {
  color: var(--primary);
  text-align: center;
  margin: 0 0 1rem;
  font-size: 1.5rem;
}

.InfoGrid-module__plB4aq__calMonth {
  text-align: center;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  margin-bottom: 1rem;
  padding: .5rem;
  font-weight: 800;
}

.InfoGrid-module__plB4aq__calGrid {
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  display: grid;
}

.InfoGrid-module__plB4aq__calDayHead {
  text-align: center;
  color: var(--text-muted);
  padding: 5px;
  font-size: .8rem;
  font-weight: 800;
}

.InfoGrid-module__plB4aq__calDate {
  aspect-ratio: 1;
  cursor: pointer;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  font-size: .9rem;
  transition: background .2s;
  display: flex;
}

.InfoGrid-module__plB4aq__calDate:hover {
  background: #f0f0f0;
}

.InfoGrid-module__plB4aq__calToday {
  color: #fff;
  background: #df013a;
  font-weight: 900;
}

.InfoGrid-module__plB4aq__hasEvent {
  font-weight: 800;
}

.InfoGrid-module__plB4aq__eventDot {
  border-radius: 50%;
  width: 6px;
  height: 6px;
  position: absolute;
  bottom: 5px;
}

.InfoGrid-module__plB4aq__tooltip {
  color: #fff;
  pointer-events: none;
  z-index: 100;
  background: #333;
  border-radius: 6px;
  margin-top: 10px;
  padding: .5rem 1rem;
  font-size: .85rem;
  position: absolute;
  box-shadow: 0 4px 15px #0003;
}

.InfoGrid-module__plB4aq__tooltipItem {
  margin: 2px 0;
}

.InfoGrid-module__plB4aq__modalOverlay {
  z-index: 1000;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background: #0009;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
}

.InfoGrid-module__plB4aq__modalContent {
  background: #fff;
  border-radius: 25px;
  width: 90%;
  max-width: 500px;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 25px 50px #0003;
}

.InfoGrid-module__plB4aq__closeBtn {
  cursor: pointer;
  color: #999;
  background: none;
  border: none;
  font-size: 2rem;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.InfoGrid-module__plB4aq__eventDetail {
  border-top: 1px solid #eee;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}

.InfoGrid-module__plB4aq__eventDetail h3 {
  color: var(--primary);
  margin-bottom: .5rem;
}

@media (max-width: 1024px) {
  .InfoGrid-module__plB4aq__layout {
    grid-template-columns: 1fr;
  }

  .InfoGrid-module__plB4aq__trianglesArea {
    flex-direction: column;
    gap: 3rem;
  }
}

/*# sourceMappingURL=src_components_1euwv1h._.css.map*/