/* News Section */
.news-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.news-highlight {
  position: relative;
}

.news-sticker {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--redclr);
  color: var(--plainclr);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.news-card.featured {
  background: linear-gradient(135deg, var(--plainclr), var(--lightbg));
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow2);
  height: 100%;
  display: flex;
}

.news-date {
  background-color: var(--themeprimaryclr);
  color: var(--plainclr);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 100px;
}

.news-date .day {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.news-date .month {
  font-size: 1.1rem;
  font-weight: 600;
}

.news-content {
  padding: 30px;
  flex-grow: 1;
}

.news-content h3 {
  font-size: 1.5rem;
  color: var(--themethirdclr);
  margin-bottom: 15px;
  line-height: 1.3;
}

.news-content p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.news-link {
  color: var(--themeprimaryclr);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: 0.3s ease;
}

.news-link:hover {
  gap: 10px;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-item {
  background-color: var(--plainclr);
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--shadow1);
  transition: 0.3s ease;
}

.news-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow2);
}

.news-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.news-item-title {
  font-size: 1.1rem;
  color: var(--themethirdclr);
  font-weight: 600;
  margin-bottom: 5px;
}

.news-item-date {
  font-size: 0.85rem;
  color: var(--text-light);
  white-space: nowrap;
  margin-left: 10px;
}

.news-item p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.news-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  border: 1px solid var(--borderclr);
  border-radius: 8px;
  overflow: hidden;
  background: var(--plainclr);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.news-content:hover {
  transform: translateY(-5px);
}

.news-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.news-text {
  padding: 20px;
}

.news-link {
  display: inline-flex;
  align-items: center;
  color: var(--themeprimaryclr);
  text-decoration: none;
  font-weight: 500;
  gap: 8px;
  transition: gap 0.3s ease;
}

.news-link:hover {
  gap: 12px;
  color: var(--themethirdclr);
}

.news-link i {
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .news-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-content {
    padding: 10px;
  }
  .news-content p {
    margin-bottom: 10px;
  }
  .news-item-title {
    font-size: 1rem;
  }
  .news-content h3 {
    font-size: 1.1rem;
  }
  .news-link {
    font-size: 0.9rem !important;
    margin-top: 8px;
  }
  .news-text {
    padding: 0;
    padding-top: 10px;
  }
  .news-image {
    height: 200px;
  }
}/*# sourceMappingURL=news-and-updates.css.map */