.news-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  padding-top: 10px;
}

.news-item:last-child {
  margin-bottom: 20px;
}

.date-container {
  margin-right: 15px;
}

.news-date-calendar {
  flex-shrink: 0;
  width: 50px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.news-date-year {
  background: #555;
  color: white;
  padding: 1px 0;
  font-size: 0.65em;
  font-weight: bold;
}

.news-date-month {
  background: #f5f5f5;
  color: #333;
  padding: 1px 0;
  font-size: 0.65em;
  text-transform: uppercase;
  font-weight: bold;
  border-bottom: 1px solid #e0e0e0;
}

.news-date-day {
  background: white;
  padding: 2px 0;
  font-size: 1.3em;
  font-weight: bold;
  color: #333;
}

.news-text {
  flex-grow: 1;
}

.news-title {
  margin: 0;
  padding-top: 4px;
  font-size: 1.1em;
  font-weight: 600;
}

.simple-news-item {
  margin: 15px 0;
}

.simple-news-date {
  font-weight: bold;
}

.news-more-link {
  color: var(--primary);
  font-style: italic;
  text-decoration: none;
  font-size: 0.85em;
}

.news-more-link:hover {
  text-decoration: underline;
}

.news-content {
  margin-top: 10px;
  padding-left: 10px;
  border-left: 2px solid var(--light-gray);
}

@media (max-width: 600px) {
  .news-date-calendar {
    width: 45px;
  }
  .news-item {
    margin-bottom: 30px;
  }
}

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