/* Global Box Sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Blog Section */
.blog-section {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 80px 0;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}

/* /blog の背景色（Figma: 明るいグレー背景） */
.blog-section--bg,
.blog-articles-section--bg {
  background-color: #F9FAFB;
}

/* スタッフブログ：記事詳細（staff）のヒーロー背景に合わせる */
.blog-section--staff.blog-section--bg {
  background-color: #FFFBF0;
}

.blog-section-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;
  z-index: 1;
  box-sizing: border-box;
}

/* Blog Header */
.blog-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}

.blog-main-title {
  margin: 0;
  padding: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 1.2;
  text-align: center;
  color: #3752C0;
}

.blog-tagline {
  margin: 0;
  padding: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  color: #666666;
}

/* Filter Buttons */
.blog-filter-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 10px;
}

.blog-filter-btn {
  padding: 9px 25px;
  height: 38px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4285714285714286;
  text-align: center;
  border-radius: 9999px;
  border: 1px solid rgba(255, 220, 0, 0.5);
  background-color: rgba(255, 255, 255, 0.7);
  color: #565656;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  text-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.blog-filter-btn-active {
  background-color: #3752C0;
  color: #ffffff;
  border: 1px solid #3752C0;
  text-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}

.blog-filter-btn:not(.blog-filter-btn-active) {
  background-color: rgba(255, 255, 255, 0.7);
  color: #565656;
  border: 1px solid rgba(255, 220, 0, 0.5);
}

.blog-filter-btn-director {
  border: 1px solid rgba(55, 82, 192, 0.5) !important;
  color: #3752C0 !important;
}

/* 所長メッセージボタン：active時は白文字を優先（directorの !important を上書き） */
.blog-filter-btn-director.blog-filter-btn-active {
  color: #ffffff !important;
  background-color: #3752C0 !important;
  border: 1px solid #3752C0 !important;
}

.blog-filter-btn:hover {
  opacity: 0.8;
}

/* Featured Article */
.blog-featured-article {
  display: flex;
  flex-direction: row;
  width: 100%;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.blog-featured-article * {
  text-decoration: none;
}

.blog-featured-article:hover {
  transform: scale(1.01) translateZ(10px);
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.12), 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
}

.blog-article-image-container {
  position: relative;
  width: 50%;
  flex-shrink: 0;
  overflow: hidden;
  min-height: 300px;
  box-sizing: border-box;
}

.blog-article-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-article-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #EEF5FF 0%, #E0EBFF 100%);
  min-height: 300px;
}

.blog-article-image-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 16px;
  background-color: #EEF5FF;
  border-radius: 20px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: #3752C0;
}

/* Featured（最新記事）側も、カードと同じバッジ配色を使えるようにする */
.blog-article-image-badge.blog-article-badge-staff {
  background-color: #FFDC00;
  color: #565656;
}
.blog-article-image-badge.blog-article-badge-director {
  background-color: #EEF5FF;
  color: #3752C0;
}

.blog-article-content {
  position: relative;
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.blog-article-latest-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 12px;
  background-color: #FFDC00;
  border-radius: 4px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.4;
  color: #333333;
}

.blog-article-date {
  margin: 0 0 16px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #999999;
}

.blog-article-date-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.blog-article-date svg {
  width: 12px;
  height: 16px;
  flex-shrink: 0;
}

.blog-article-date-lines {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.blog-article-date-lines span {
  display: block;
}

.blog-article-title {
  margin: 0 0 20px 0;
  padding: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.4;
  color: #333333;
}

.blog-article-excerpt {
  margin: 0 0 24px 0;
  padding: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #666666;
}

.blog-article-tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.blog-tag {
  padding: 6px 12px;
  background-color: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #333333;
}

.blog-article-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.blog-article-author {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.blog-author-avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #EEF5FF 0%, #E0EBFF 100%);
  flex-shrink: 0;
}

/* 著者アイコン画像 */
.blog-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.blog-author-info {
  display: flex;
  flex-direction: column;
}

.blog-author-name {
  margin: 0;
  padding: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
}

.blog-author-role {
  margin: 0;
  padding: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  color: #999999;
}

.blog-read-more {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #3752C0;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
  pointer-events: none;
}

.blog-read-more:hover {
  opacity: 0.8;
}

/* Decorative Elements */
.blog-decorative-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.05;
  z-index: 0;
}

.blog-decorative-circle {
  position: absolute;
  border-radius: 50%;
}

.blog-decorative-circle-1 {
  width: 128px;
  height: 128px;
  background-color: #3752C0;
  top: 40px;
  left: 40px;
}

.blog-decorative-circle-2 {
  width: 96px;
  height: 96px;
  background-color: #FFDC00;
  top: 128px;
  right: 80px;
}

.blog-decorative-circle-3 {
  width: 64px;
  height: 64px;
  background-color: #3752C0;
  bottom: 80px;
  left: 320px;
}

.blog-decorative-circle-4 {
  width: 80px;
  height: 80px;
  background-color: #FFDC00;
  bottom: 144px;
  left: 840px;
}

.blog-decorative-circle-5 {
  width: 160px;
  height: 160px;
  border: 2px solid #3752C0;
  background-color: transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Blog Filter Section */
.blog-filter-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 32px 0 33px;
  background-color: #f6f7ea;
  border-bottom: 1px solid #F3F4F6;
  box-sizing: border-box;
}

.blog-filter-section-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;
  box-sizing: border-box;
}

.blog-filter-card {
  width: 100%;
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 16px;
  background-color: #FFFFFF;
  border: 1px solid rgba(243, 244, 246, 0.8);
  border-radius: 16px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  box-sizing: border-box;
}

.blog-filter-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 24px 24px 25px;
  border-bottom: 1px solid #F3F4F6;
}

.blog-filter-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.blog-filter-toggle-area {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.blog-filter-icon-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F3F4F6;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.blog-filter-icon-btn:hover {
  background-color: #E5E7EB;
}

.blog-filter-icon-btn svg {
  display: block;
}

.blog-filter-toggle-btn {
  background: linear-gradient(135deg, #3752C0 0%, #2A3F8F 100%);
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.blog-filter-toggle-btn:hover {
  opacity: 0.9;
}

.blog-filter-title {
  margin: 0;
  padding: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5555555555555556;
  color: #2D2D2D;
  white-space: nowrap;
}

.blog-filter-subtitle {
  margin: 0;
  padding: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3333333333333333;
  color: #6B7280;
  white-space: nowrap;
}

/* Blog Filter Panel */
.blog-filter-panel {
  background-color: rgba(238, 245, 255, 0.3);
  padding: 24px;
}

.blog-filter-panel-content {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 87px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-filter-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-filter-group-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.blog-filter-group-label svg {
  width: 14px;
  height: 20px;
  flex-shrink: 0;
}

.blog-filter-group-label span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4285714285714286;
  color: #3752C0;
}

.blog-filter-options {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 12px;
}

.blog-filter-option {
  padding: 8px 16px;
  height: 38px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4285714285714286;
  text-align: center;
  border-radius: 9999px;
  border: 1px solid rgba(255, 220, 0, 0.5);
  background-color: rgba(255, 255, 255, 0.7);
  color: #565656;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  text-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-filter-option-active {
  background-color: #3752C0;
  color: #ffffff;
  border: 1px solid #3752C0;
  text-shadow: none;
}

/* 「すべて」ボタンの非アクティブ時：白背景、紺色テキスト、紺色の線 */
.blog-filter-option[data-filter-category=""]:not(.blog-filter-option-active),
.blog-filter-option[data-filter-author=""]:not(.blog-filter-option-active) {
  background-color: #ffffff;
  color: #3752C0;
  border: 1px solid #3752C0;
  text-shadow: none;
}

/* スタッフブログがアクティブな場合：バッジと同じデザイン */
.blog-filter-option-active[data-filter-category="staff"] {
  background-color: #FFDC00;
  color: #565656;
  border: 1px solid #FFDC00;
}

/* 所長メッセージがアクティブな場合：バッジと同じデザイン */
.blog-filter-option-active[data-filter-category="message"],
.blog-filter-option-director.blog-filter-option-active {
  background-color: #EEF5FF;
  color: #3752C0;
  border: 1px solid #EEF5FF;
}

.blog-filter-option-director {
  border: 1px solid rgba(55, 82, 192, 0.5);
  color: #3752C0;
}

/* 記事を書いた人（Figma 172-900） */
.blog-filter-author-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 9px 17px;
  border-radius: 9999px;
  border: 1px solid rgba(209, 213, 219, 0.5);
  background-color: rgba(255, 255, 255, 0.7);
  color: #4B5563;
  cursor: pointer;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  text-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.blog-filter-author-btn.is-active {
  background-color: #3752C0;
  border-color: #3752C0;
  color: #FFFFFF;
}

.blog-filter-author-avatar {
  width: 20px;
  height: 20px;
  border-radius: 9999px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.blog-filter-author-avatar--placeholder {
  background: linear-gradient(135deg, #EEF5FF 0%, #E0EBFF 100%);
  border: 1px solid rgba(55, 82, 192, 0.2);
}

.blog-filter-author-label {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4285714285714286;
  white-space: nowrap;
}

/* 年別（擬似セレクト） */
.blog-filter-select-wrap {
  position: relative;
  width: 240px;
  min-width: 240px;
  flex: 0 0 240px;
  flex-shrink: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.blog-filter-select-wrap.is-open {
  /* overflow:hidden なカード内でメニューが切れないよう、開いている間だけ高さを確保 */
  margin-bottom: 228px;
  z-index: 30;
}

.blog-filter-select {
  width: 100%;
  height: 38px;
  padding: 9px 17px;
  border-radius: 9999px;
  border: 1px solid rgba(55, 82, 192, 0.3);
  background: #FFFFFF;
  color: #3752C0;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}

.blog-filter-select-label {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4285714285714286;
}

.blog-filter-select-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background: #FFFFFF;
  border: 1px solid rgba(209, 213, 219, 0.5);
  border-radius: 12px;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.08), 0px 4px 6px -4px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  max-height: 220px;
  overflow-y: auto;
  z-index: 1000;
}

.blog-filter-select-item {
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: #4B5563;
}

.blog-filter-select-item:hover {
  background: rgba(238, 245, 255, 0.6);
}

.blog-filter-select-item.is-active {
  background: rgba(238, 245, 255, 0.9);
  color: #3752C0;
}

.blog-filter-tags {
  gap: 8px;
}

.blog-filter-tag {
  padding: 6px 12px;
  height: 30px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.3333333333333333;
  text-align: center;
  border-radius: 9999px;
  border: 1px solid rgba(55, 82, 192, 0.5);
  background-color: rgba(255, 255, 255, 0.7);
  color: #3752C0;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  text-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-filter-tag-active {
  background-color: #3752C0;
  color: #ffffff;
  border: 1px solid #3752C0;
}

/* Blog Articles Grid Section */
.blog-articles-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 48px 0;
  background-color: #ffffff;
  box-sizing: border-box;
}

/* もっと見るボタン */
.blog-load-more-wrap {
  display: flex;
  justify-content: center;
  padding: 48px 0 0;
}

.blog-load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 52px;
  padding: 12px 32px;
  border-radius: 9999px;
  background-color: #FFFFFF;
  color: #3752C0;
  text-decoration: none;
  border: 1px solid #3752C0;
  cursor: pointer;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
}

.blog-load-more-btn .blog-load-more-icon path {
  /* 既存の stroke="white" を上書きして文字色に追従させる */
  stroke: currentColor !important;
}

.blog-load-more-btn:hover {
  background-color: #3752C0;
  color: #FFFFFF;
  border-color: #3752C0;
}

.blog-load-more-btn:active {
  transform: translateY(1px);
}

.blog-load-more-icon {
  width: 18px;
  height: 18px;
  display: block;
}

/* ページネーション（一覧表示モード用） */
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 24px;
}

.blog-pagination a,
.blog-pagination button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  min-width: 40px;
  padding: 0 12px;
  border-radius: 9999px;
  border: 1px solid rgba(55, 82, 192, 0.3);
  background: #FFFFFF;
  color: #3752C0;
  text-decoration: none;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}

.blog-pagination .is-active {
  background: #3752C0;
  color: #FFFFFF;
  border-color: #3752C0;
}

.blog-articles-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;
  box-sizing: border-box;
}

.blog-articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  width: 100%;
  perspective: 1000px;
}

.blog-article-card {
  width: calc((100% - 64px) / 3);
  background-color: #FFFFFF;
  border: 1px solid #F3F4F6;
  border-radius: 12px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.blog-article-card article {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
}

.blog-article-card * {
  text-decoration: none;
}

.blog-article-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.12), 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
}

.blog-article-image-wrapper {
  position: relative;
  width: 100%;
  height: 192px;
  overflow: hidden;
}

.blog-article-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-article-card-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #EEF5FF 0%, #E0EBFF 100%);
}

.blog-article-image-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.blog-article-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  border-radius: 9999px;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4285714285714286;
  text-align: center;
  text-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1), 0px 4px 6px 0px rgba(0, 0, 0, 0.1);
}

.blog-article-badge-director {
  background-color: #EEF5FF;
  color: #3752C0;
}

.blog-article-badge-staff {
  background-color: #FFDC00;
  color: #565656;
}

.blog-article-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-article-card-date {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 12px;
}

.blog-article-card-date-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.blog-article-card-date-lines {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.blog-article-card-date svg {
  width: 12px;
  height: 16px;
  flex-shrink: 0;
}

.blog-article-card-date span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.3333333333333333;
  color: #6B7280;
}

.blog-article-card-title {
  margin: 0 0 12px 0;
  padding: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.25;
  color: #1F2937;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-article-card-excerpt {
  margin: 0 0 16px 0;
  padding: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.625;
  color: #4B5563;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-article-card-tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.blog-article-tag {
  padding: 5px 13px;
  background-color: #F9FAFB;
  border: 1px solid rgba(55, 82, 192, 0.3);
  border-radius: 8px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.3333333333333333;
  text-align: center;
  color: #3752C0;
  white-space: nowrap;
}

.blog-article-card-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.blog-article-card-author {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.blog-article-card-avatar-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #EEF5FF 0%, #E0EBFF 100%);
  flex-shrink: 0;
  display: block;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}

.blog-article-card-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}

.blog-article-card-author-info {
  display: flex;
  flex-direction: column;
}

.blog-article-card-author-name {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4285714285714286;
  color: #1F2937;
}

.blog-article-card-author-role {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3333333333333333;
  color: #6B7280;
}

.blog-article-card-read {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  pointer-events: none;
}

.blog-article-card-read span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4285714285714286;
  color: #3752C0;
}

.blog-article-card-read svg {
  width: 18px;
  height: 28px;
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .blog-featured-article {
    flex-direction: column;
  }

  .blog-article-image-container {
    width: 100%;
    height: 300px;
  }

  .blog-article-content {
    width: 100%;
  }

  .blog-main-title {
    font-size: 36px;
  }

  .blog-filter-section-container {
    padding: 0 64px;
  }

  .blog-filter-panel-content {
    padding: 0 64px;
  }

  .blog-articles-container {
    padding: 0 64px;
  }

  .blog-article-card {
    width: calc((100% - 32px) / 2);
  }
}

@media (max-width: 768px) {
  .blog-section {
    padding: 60px 0;
  }

  .blog-section-container {
    padding: 0 20px;
  }

  .blog-main-title {
    font-size: 32px;
  }

  .blog-tagline {
    font-size: 16px;
  }

  .blog-filter-buttons {
    flex-direction: column;
    width: 100%;
  }

  .blog-filter-btn {
    width: 100%;
  }

  .blog-article-content {
    padding: 24px;
  }

  .blog-article-title {
    font-size: 24px;
  }

  .blog-article-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .blog-filter-section {
    padding: 24px 0 25px;
  }

  .blog-filter-section-container {
    padding: 0 20px;
  }

  .blog-filter-card {
    padding: 0 12px;
  }

  .blog-filter-content {
    padding: 20px 16px 21px;
  }

  .blog-filter-title {
    font-size: 16px;
  }

  .blog-filter-subtitle {
    font-size: 11px;
  }

  .blog-filter-panel {
    padding: 20px;
  }

  .blog-filter-panel-content {
    padding: 0 20px;
  }

  .blog-articles-section {
    padding: 32px 0;
  }

  .blog-articles-container {
    padding: 0 20px;
  }

  .blog-articles-grid {
    gap: 24px;
  }

  .blog-article-card {
    width: 100%;
  }

  .blog-article-card-content {
    padding: 20px;
  }

  .blog-article-card-title {
    font-size: 18px;
  }
}

