/* [project]/src/styles/news.css [app-client] (css) */
.news-section {
  background: #000;
  align-items: center;
  min-height: 100vh;
  padding: 8rem 0 6rem;
  display: flex;
  position: relative;
}

.news-container {
  text-align: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.news-header {
  text-align: center;
  margin-bottom: 5rem;
}

.news-section-title {
  color: #fff;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: .1em;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .3);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, .3));
  -webkit-background-clip: text;
  background-clip: text;
  width: 100%;
  margin-bottom: 1.5rem;
  font-family: Onedrips, Drippy, Melted, Impact, Haettenschweiler, Arial Narrow Bold, sans-serif;
  font-size: max(2.5rem, min(5vw, 4rem));
  font-weight: 700;
  display: block;
  text-align: center !important;
}

.news-section-subtitle {
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
  font-family: Onedrips, Drippy, Melted, Impact, Haettenschweiler, Arial Narrow Bold, sans-serif;
  font-size: 1.3rem;
  line-height: 1.6;
}

.news-timeline {
  padding: 2rem 0;
  position: relative;
}

.news-timeline:before {
  content: "";
  background: linear-gradient(#ff6b6b, #4ecdc4, #45b7d1);
  border-radius: 2px;
  width: 4px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.news-item {
  width: 45%;
  margin-bottom: 4rem;
  position: relative;
}

.news-item.left {
  text-align: right;
  left: 0;
}

.news-item.right {
  text-align: left;
  left: 55%;
}

.news-item-content {
  background: rgba(20, 20, 20, .98);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  padding: 2rem;
  transition: all .3s;
  position: relative;
}

.news-item-content:hover {
  background: rgba(40, 40, 40, .98);
  border-color: rgba(255, 255, 255, .2);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .5);
}

.news-item-icon {
  color: #fff;
  z-index: 10;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-weight: bold;
  display: flex;
  position: absolute;
  top: -20px;
}

.news-item.left .news-item-icon {
  right: -25px;
}

.news-item.right .news-item-icon {
  left: -25px;
}

.news-item-body {
  position: relative;
}

.news-item-header {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
  display: flex;
}

.news-item-category {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .5px;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  border-radius: 20px;
  padding: .5rem 1rem;
  font-size: .8rem;
  font-weight: 600;
}

.news-item-date {
  color: #94a3b8;
  align-items: center;
  font-size: .9rem;
  font-weight: 500;
  display: flex;
}

.news-item-title {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 1rem;
  font-family: Onedrips, Drippy, Melted, Impact, Haettenschweiler, Arial Narrow Bold, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
}

.news-item-description {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .news-section {
    padding: 6rem 0 4rem;
  }

  .news-container {
    padding: 0 16px;
  }

  .news-header {
    margin-bottom: 3rem;
  }

  .news-section-title {
    margin-bottom: 1rem;
    font-size: max(2rem, min(6vw, 3rem));
  }

  .news-section-subtitle {
    max-width: 100%;
    font-size: 1.1rem;
  }

  .news-timeline:before {
    left: 20px;
  }

  .news-item {
    text-align: left;
    width: 100%;
    margin-bottom: 2.5rem;
    margin-left: 40px;
    left: 0 !important;
  }

  .news-item-icon {
    left: -45px !important;
    right: auto !important;
  }

  .news-item-content {
    padding: 1.5rem;
  }

  .news-item-title {
    margin-bottom: .8rem;
    font-size: 1.2rem;
  }

  .news-item-description {
    font-size: .95rem;
  }

  .news-item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: .8rem;
  }
}

@media (max-width: 480px) {
  .news-section {
    padding: 5rem 0 3rem;
  }

  .news-container {
    padding: 0 12px;
  }

  .news-section-title {
    font-size: max(1.8rem, min(7vw, 2.5rem));
  }

  .news-section-subtitle {
    font-size: 1rem;
  }

  .news-item {
    margin-bottom: 2rem;
    margin-left: 30px;
  }

  .news-item-icon {
    width: 50px !important;
    height: 50px !important;
    left: -35px !important;
  }

  .news-item-content {
    padding: 1.2rem;
  }

  .news-item-title {
    font-size: 1.1rem;
  }

  .news-item-description {
    font-size: .9rem;
  }

  .news-item-category {
    padding: .4rem .8rem;
    font-size: .75rem;
  }

  .news-item-date {
    font-size: .8rem;
  }

  .scroll-indicator {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .scroll-arrow {
    width: 20px;
    height: 20px;
  }

  .scroll-text {
    font-size: .7rem;
  }
}

@media (max-width: 320px) {
  .news-section {
    padding: 4rem 0 2rem;
  }

  .news-container {
    padding: 0 8px;
  }

  .news-section-title {
    font-size: max(1.5rem, min(8vw, 2rem));
  }

  .news-section-subtitle {
    font-size: .9rem;
  }

  .news-item {
    margin-bottom: 1.5rem;
    margin-left: 25px;
  }

  .news-item-icon {
    width: 45px !important;
    height: 45px !important;
    left: -30px !important;
  }

  .news-item-content {
    padding: 1rem;
  }

  .news-item-title {
    font-size: 1rem;
  }

  .news-item-description {
    font-size: .85rem;
  }

  .news-item-category {
    padding: .3rem .6rem;
    font-size: .7rem;
  }

  .news-item-date {
    font-size: .75rem;
  }
}

.news-item {
  opacity: 0;
  animation: .6s forwards fadeInUp;
  transform: translateY(30px);
}

.news-item:first-child {
  animation-delay: .1s;
}

.news-item:nth-child(2) {
  animation-delay: .2s;
}

.news-item:nth-child(3) {
  animation-delay: .3s;
}

.news-item:nth-child(4) {
  animation-delay: .4s;
}

.news-item:nth-child(5) {
  animation-delay: .5s;
}

.news-item:nth-child(6) {
  animation-delay: .6s;
}

.news-item:nth-child(7) {
  animation-delay: .7s;
}

.news-item:nth-child(8) {
  animation-delay: .8s;
}

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

/*# sourceMappingURL=src_styles_news_d8b45fdd.css.map*/