* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  background: #1e1b4b;
  color: #fff;
  padding: 16px 0;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.site-logo {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
}

.site-nav a {
  color: #c7d2fe;
  text-decoration: none;
  margin-left: 16px;
  font-size: 14px;
}

.site-nav a:hover {
  color: #fff;
}

.site-main {
  min-height: 60vh;
  padding: 24px 0;
}

.site-footer {
  background: #f1f5f9;
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: #64748b;
  margin-top: 40px;
}

.article-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.article-card {
  padding: 24px 0;
  border-bottom: 1px solid #e2e8f0;
}

.article-card:last-child {
  border-bottom: none;
}

.article-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.article-card-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.article-excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: inherit;
  opacity: 0.9;
  margin: 0 0 14px;
}

.btn-read-more {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-read-more:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.article-date {
  font-size: 13px;
  color: #94a3b8;
  white-space: nowrap;
  padding-top: 4px;
}

.contact-info {
  background: #f8fafc;
  padding: 16px;
  border-radius: 8px;
  margin: 16px 0;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}

.pagination-pages {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.pagination-link,
.pagination-current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.pagination-link {
  background: #f1f5f9;
  color: #334155;
  border: 1px solid #e2e8f0;
}

.pagination-link:hover {
  background: #e2e8f0;
  color: #1e293b;
}

.pagination-current {
  background: #1e1b4b;
  color: #fff;
}

.pagination-prev,
.pagination-next {
  min-width: auto;
}
