.subpage-content.model-inner {
  padding-bottom: 0;
}

.article {
  width: 90%;
  margin: 0 auto 40px;
  border: 1px solid #777;
  border-left: 10px solid var(--color-footer);
}

.article-flex {
  gap: 2em;
}

.article-link {
  display: block;
  padding: 20px 30px;
}

.article-link:hover {
  text-decoration: none;
  color: unset;
}

.article-thumb {
  width: 150px;
  height: 180px;
  object-fit: cover;
}

.article-text {
  font-size: var(--fs-14);
}
.article-time {
  letter-spacing: 0.1em;
}

.article .article-title {
  font-size: var(--fs-18);
  margin-bottom: 2em;
}

.article-btn {
  margin-top: 1em;
  padding: 0.5em 1.5em;
  font-size: var(--fs-14);
  border: #eee;
  background-color: var(--color-accent);
}

.article-btn:hover {
  background-color: #009ee6;
  border-color: #009ee6;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .article-flex {
    flex-direction: column;
  }

  .article-thumb {
    width: 100%;
    height: 150px;
  }

  .article .article-title {
    font-size: 1.8rem;
  }
}

.pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  font-size: 1.2rem;
}

.pagination a,
.pagination .current {
  display: block;
  padding: 2px 8px;
}

.pagination a {
  background-color: #999;
  color: #161616;
}

.pagination .current {
  background-color: var(--color-main);
  color: #fff;
}

.pagination a:hover {
  text-decoration: underline;
}
