/* [project]/app/news-articles/news.module.css [app-client] (css) */
.news-module__E9x2eW__pageWrapper {
  color: #fff;
  background: #0a1121;
  min-height: 100vh;
}

.news-module__E9x2eW__hero {
  background-image: linear-gradient(#0a112166, #0a1121b3), url("/hero-2.jpeg");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  margin-bottom: 4rem;
  padding: 8rem 0 5rem;
  position: relative;
}

.news-module__E9x2eW__heroContent {
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 4rem;
  position: relative;
}

.news-module__E9x2eW__container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 4rem;
}

.news-module__E9x2eW__header {
  margin: 0;
  padding: 0;
}

.news-module__E9x2eW__backLink {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  align-items: center;
  gap: .5rem;
  margin-bottom: 2rem;
  font-size: .75rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s;
  display: inline-flex;
}

.news-module__E9x2eW__backLink:hover {
  opacity: .8;
  transform: translateX(-5px);
}

.news-module__E9x2eW__label {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: .75rem;
  font-weight: 700;
  font-family: var(--font-sans);
  margin-bottom: 1rem;
  display: block;
}

.news-module__E9x2eW__title {
  font-family: var(--font-serif);
  color: #fff;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.1;
}

.news-module__E9x2eW__titleHighlight {
  color: var(--primary);
  font-style: italic;
}

.news-module__E9x2eW__grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem;
  display: grid;
}

.news-module__E9x2eW__card {
  background: #ffffff05;
  border: 1px solid #ffffff0d;
  border-radius: 4px;
  flex-direction: column;
  transition: all .4s;
  display: flex;
  overflow: hidden;
}

.news-module__E9x2eW__card:hover {
  background: #ffffff0a;
  transform: translateY(-8px);
}

.news-module__E9x2eW__imageContainer {
  aspect-ratio: 16 / 10;
  background: #0f172a;
  width: 100%;
  overflow: hidden;
}

.news-module__E9x2eW__content {
  flex-direction: column;
  flex-grow: 1;
  padding: 2rem;
  display: flex;
}

.news-module__E9x2eW__meta {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: .7rem;
  font-weight: 700;
  display: block;
}

.news-module__E9x2eW__cardTitle {
  font-family: var(--font-serif);
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.3;
  transition: color .3s;
}

.news-module__E9x2eW__card:hover .news-module__E9x2eW__cardTitle {
  color: var(--primary);
}

.news-module__E9x2eW__excerpt {
  color: #94a3b8;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 1.5rem;
  font-size: .85rem;
  line-height: 1.8;
  display: -webkit-box;
  overflow: hidden;
}

.news-module__E9x2eW__readMore {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #64748b;
  text-underline-offset: 4px;
  align-items: center;
  gap: .5rem;
  margin-top: auto;
  font-size: .75rem;
  font-weight: 700;
  text-decoration: underline;
  transition: all .3s;
  display: flex;
}

.news-module__E9x2eW__readMore:hover {
  color: #fff;
  gap: .75rem;
}

@media (max-width: 1024px) {
  .news-module__E9x2eW__container {
    padding: 0 2rem;
  }

  .news-module__E9x2eW__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .news-module__E9x2eW__title {
    font-size: 2.8rem;
  }
}

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

/*# sourceMappingURL=app_news-articles_news_module_6ba88641.css.map*/