.home-hero {
  margin: 20px 0 30px 0;
  text-align: center;
}

.home-hero-title {
  margin: 0 0 5px 0 !important;
  font-size: 2.5rem !important;
}

.home-hero-subtitle {
  margin-top: 0 !important;
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: var(--semi-bold);
  text-align: center;
}

.home-photo {
  display: block;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 8px;
}

.home-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 28px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 40px auto;
  text-align: left;
}

.home-block {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  background: var(--background);
  box-shadow: var(--shadow);
}

.home-block-head {
  padding: 14px 20px;
  border-bottom: 1px solid var(--light-gray);
  background: var(--background-alt);
  text-align: center;
}

.home-block-head h3 {
  margin: 0 !important;
  font-size: 1.25rem !important;
  font-weight: var(--semi-bold);
}

.home-block-body {
  flex-grow: 1;
  padding: 6px 20px;
}

.home-news-scroll {
  height: 300px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gray) var(--background-alt);
}

.home-block-foot {
  padding: 10px;
  border-top: 1px solid var(--light-gray);
  background: var(--background-alt);
  font-size: 0.9rem;
  text-align: center;
}

.home-empty {
  padding: 40px 0;
  color: var(--gray);
  text-align: center;
}

.home-news {
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-news-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--light-gray);
}

.home-news-item:last-child {
  border-bottom: none;
}

.home-news-date {
  flex-shrink: 0;
  width: 84px;
  font-family: var(--code);
  line-height: 1.25;
  text-align: center;
}

.home-news-year {
  display: block;
  font-size: 0.85rem;
  font-weight: var(--bold);
}

.home-news-day {
  display: block;
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: var(--bold);
}

.home-news-title {
  flex-grow: 1;
  padding-top: 2px;
  color: var(--text);
  font-size: 1rem;
  font-weight: var(--semi-bold);
  line-height: 1.4;
  text-decoration: none;
}

.home-news-title:hover {
  color: var(--primary);
}

.home-pubs {
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-pub-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--light-gray);
}

.home-pub-item:last-child {
  border-bottom: none;
}

.home-pub-date {
  flex-shrink: 0;
  width: 44px;
  color: var(--primary);
  font-family: var(--code);
  font-size: 1rem;
  font-weight: var(--bold);
  text-align: center;
}

.home-pub-main {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.home-pub-title {
  color: var(--text);
  font-size: 0.98rem;
  font-weight: var(--semi-bold);
  line-height: 1.4;
  text-decoration: none;
}

.home-pub-title:hover {
  color: var(--primary);
}

.home-pub-meta {
  color: var(--gray);
  font-size: 0.82rem;
  line-height: 1.4;
}

@media (max-width: 850px) {
  .home-hero-title {
    font-size: 1.9rem !important;
  }
  .home-hero-subtitle {
    font-size: 1.05rem;
  }
  .home-blocks {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .home-news-date {
    width: 62px;
  }
  .home-news-item,
  .home-pub-item {
    gap: 12px;
  }
}

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