/* cards-column.css - 文章專欄卡片區塊樣式 */
.cards-column-section {
  width: 100%;
  max-width: 1280px;
  margin: 40px auto;
  padding: 0 16px;
}
.cards-column-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.cards-column-card {
  display: flex;
  flex-direction: row;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.cards-column-card-img {
  width: 50%;
  min-height: 220px;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cards-column-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cards-column-card-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 48px 48px;
  text-align: left;
}
.cards-column-title {
  font-family: "Noto Serif TC";
  font-size: 20px;
  font-weight: 700;
  margin-bottom: unset;
  color: #222;
}
.cards-column-date {
  font-size: 12px;
  color: #454545;
  margin-bottom: 16px;
}
.cards-column-excerpt {
  color: #444;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  /* min-height: 2.8em; */
}
.cards-column-viewmore {
  font-family: "Noto Serif TC";

  display: inline-block;
  margin-top: unset;
  font-size: 16px;
  color: #454545;
  text-decoration: underline;
  font-weight: 600;
  border-bottom: 1px solid #454545;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.cards-column-viewmore:hover {
  color: #000;
  border-bottom-color: #000;
}
.cards-column-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}
.cards-column-arrow {
  font-size: 1.2em;
  color: #888;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 4px;
  transition: background 0.15s;
  user-select: none;
}
.cards-column-arrow:hover {
  background: #f0f0f0;
  color: #222;
}
.cards-column-page {
  font-size: 1em;
  color: #888;
  margin: 0 4px;
  cursor: pointer;
  padding: 2px 8px;
  border-radius: 4px;
  transition: background 0.15s;
}
.cards-column-page.active {
  background: #222;
  color: #fff;
}
@media (max-width: 700px) {
  .cards-column-card {
    flex-direction: column;
  }
  .cards-column-card-img,
  .cards-column-card-content {
    width: 100%;
    min-height: 160px;
    padding: 18px 10px;
  }
  .cards-column-card-content {
    padding: 18px 10px;
  }
}
