:root {
  --card-border: #e5e5e5;
}

a { text-decoration: none; }

.article-card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  transition: box-shadow .15s ease, border-color .15s ease;
}

.article-card:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,.10);
  border-color: #d0d0d0;
}

.article-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: #f2f2f2;
}

.article-meta {
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #7a7a7a;
}

.article-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: #1b1b1b;
  line-height: 1.25;
}

.article-excerpt {
  color: #4f4f4f;
  font-size: .95rem;
}

.article-content img {
  max-width: 100%;
  height: auto;
}

.pager a, .pager span {
  display: inline-block;
  padding: .45rem .7rem;
  border: 1px solid #ddd;
  border-radius: .5rem;
}

.pager span {
  background: #f6f6f6;
  color: #666;
  border-color: #e5e5e5;
}
