@charset "utf-8";
/* CSS Document */
/**************************************************
	section_first
**************************************************/

header {
  background-color: #dcd7cc;
}

/* 左邊文章 */
.blog_article {
  width: 66%;

  @media (max-width: 991px) {
    width: 100%;
  }
}
/* 文章標頭 */
.article_header {
  display: block;
  margin-bottom: 24px;
}

/* 項目標題 */
.article_title {
  font-size: 24px;
  font-weight: bold;

  @media (max-width: 767px) {
    font-size: 20px;
  }
}

/* 項目標籤 */
.article_catalog {
  display: flex;
  margin: 4px 0;
}

/* 標籤連結 */
.article_catalog a {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 2px 8px;
  font-size: 0.8rem;
  line-height: 2;
  margin-right: 5px;
}

.article-subtitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;

  @media (max-width: 767px) {
    font-size: 16px;
    margin-bottom: 12px;
  }
}

.article-para {
  font-size: 16px;
  margin-bottom: 24px;

  @media (max-width: 767px) {
    margin-bottom: 12px;
  }
}

.article-img {
  width: 100%;
  object-fit: cover;
  text-align: center;
  margin-bottom: 24px;

  @media (max-width: 767px) {
    margin-bottom: 12px;
  }
}

.article_video {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 40px 0;

  @media (max-width: 767px) {
    margin: 20px 0;
  }
}

.other_article {
  border-top: 1px solid #000;
  margin: 80px 0;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: start;

  @media (max-width: 767px) {
    flex-direction: column;
  }
}

.other_article_item {
  display: flex;
  align-items: center;
  font-weight: bold;
  line-height: 1.5;

  a {
    padding: 4px;
  }

  @media (max-width: 767px) {
    width: 100%;
  }
}

.other_article_item:last-child {
  text-align: right;
}
