/* ============================================
   真田研究室 - style.css
   デザインコンセプト: クリーン・ミニマル・ネイビーブルー基調
   ============================================ */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Hiragino Kaku Gothic ProN", "BIZ UDPGothic", Meiryo, sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: #333;
  background: #fff;
}

a {
  color: #00118f;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

/* --- Layout --- */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid #e0e0e0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

.site-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site-logo-main {
  font-size: 1.25rem;
  font-weight: 700;
  color: #00118f;
  letter-spacing: 0.02em;
}

.site-logo-sub {
  font-size: 0.75rem;
  color: #666;
  letter-spacing: 0.01em;
}

/* --- Navigation --- */
.global-nav ul {
  display: flex;
  gap: 4px;
  list-style: none;
}

.global-nav a {
  display: block;
  padding: 8px 14px;
  font-size: 0.85rem;
  color: #333;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.global-nav a:hover {
  background: #e8eeff;
  color: #00118f;
  text-decoration: none;
}

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  margin: 5px 0;
  transition: 0.3s;
}

/* --- Site Notice --- */
.site-notice {
  background: #fff8e6;
  border-bottom: 1px solid #f0d860;
  padding: 10px 0;
  font-size: 0.85rem;
  color: #7a6a00;
  text-align: center;
}

/* --- Hero --- */
.hero {
  background: linear-gradient(135deg, #00118f 0%, #1a3abf 50%, #2952d9 100%);
  color: #fff;
  padding: 80px 0 72px;
}

.hero h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.hero-en {
  font-size: 0.95rem;
  opacity: 0.7;
  margin-bottom: 24px;
  font-weight: 400;
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.9;
  max-width: 720px;
  opacity: 0.92;
}

.hero-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-keywords span {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

/* --- Sections (common) --- */
.section {
  padding: 72px 0;
}

.section:nth-child(even) {
  background: #f7f9ff;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00118f;
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 3px solid #00118f;
  display: inline-block;
}

.section-title-en {
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 32px;
  display: block;
}

/* --- About --- */
.about-content {
  max-width: 780px;
  line-height: 2;
}

.about-content p + p {
  margin-top: 1em;
}

/* --- Research --- */
.research-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 8px;
}

.research-card {
  background: #fff;
  border: 1px solid #e0e6f0;
  border-radius: 12px;
  padding: 28px 24px;
  transition: box-shadow 0.2s;
}

.research-card:hover {
  box-shadow: 0 4px 20px rgba(0, 17, 143, 0.08);
}

.research-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.research-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #00118f;
  margin-bottom: 8px;
}

.research-card p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.7;
}

.research-tag {
  display: inline-block;
  margin-top: 12px;
  padding: 3px 10px;
  background: #f0f4ff;
  color: #4a6ab5;
  border-radius: 4px;
  font-size: 0.75rem;
}

.research-group {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 32px;
}

.research-group:last-child {
  margin-bottom: 0;
}

.research-group-header {
  padding-top: 28px;
  border-right: 3px solid #00118f;
  padding-right: 20px;
  text-align: right;
}

.research-group-header h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #00118f;
  line-height: 1.5;
}

.research-group-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .research-group {
    grid-template-columns: 1fr;
  }

  .research-group-header {
    border-right: none;
    border-bottom: 3px solid #00118f;
    padding: 0 0 10px 0;
    text-align: left;
  }

  .research-group-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Protected sections --- */
.protected-lock {
  text-align: center;
  padding: 32px 0;
  color: #888;
}

.protected-lock p {
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.protected-input-group {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.protected-password {
  padding: 8px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: inherit;
  width: 160px;
}

.protected-password:focus {
  outline: none;
  border-color: #00118f;
  box-shadow: 0 0 0 2px rgba(0, 17, 143, 0.1);
}

.protected-btn {
  padding: 8px 20px;
  background: #00118f;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
}

.protected-btn:hover {
  background: #1a3abf;
}

/* --- Members --- */
.member-group {
  margin-bottom: 36px;
}

.member-group:last-child {
  margin-bottom: 0;
}

.member-group h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
  padding-left: 12px;
  border-left: 4px solid #00118f;
}

.member-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.member-list li {
  background: #fff;
  border: 1px solid #e8ecf4;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 0.95rem;
}

.member-list .member-role {
  display: block;
  font-size: 0.78rem;
  color: #888;
  margin-top: 2px;
}

/* Faculty card (larger) */
.faculty-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: #fff;
  border: 1px solid #e0e6f0;
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 28px;
}

a.faculty-card-link {
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.15s;
}

a.faculty-card-link:hover {
  box-shadow: 0 6px 24px rgba(0, 17, 143, 0.12);
  transform: translateY(-2px);
  text-decoration: none;
}

.member-list a {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}

.member-list a:hover {
  color: #00118f;
  text-decoration: none;
}

/* Member detail page */
.member-detail-dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 20px;
  font-size: 0.95rem;
  margin-bottom: 2em;
}

.member-detail-dl dt {
  font-weight: 700;
  color: #00118f;
}

.member-detail-dl dd {
  margin: 0;
}

.faculty-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #00118f;
  border: none;
  padding: 0;
  margin-bottom: 4px;
}

.faculty-info .faculty-title {
  font-size: 0.88rem;
  color: #666;
  margin-bottom: 12px;
}

.faculty-info .faculty-fields {
  font-size: 0.9rem;
  line-height: 1.7;
}

/* --- Publications --- */
.pub-year {
  margin-bottom: 32px;
}

.pub-year:last-child {
  margin-bottom: 0;
}

.pub-year h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #00118f;
  margin-bottom: 12px;
}

.pub-list {
  list-style: none;
}

.pub-list li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.92rem;
  line-height: 1.7;
}

.pub-list li:last-child {
  border-bottom: none;
}

.pub-type {
  display: inline-block;
  padding: 2px 10px;
  background: #e8eeff;
  color: #00118f;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-right: 8px;
}

/* --- Thesis --- */
.thesis-year {
  margin-bottom: 28px;
}

.thesis-year:last-child {
  margin-bottom: 0;
}

.thesis-year h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #00118f;
  margin-bottom: 10px;
}

.thesis-list {
  list-style: none;
}

.thesis-list li {
  padding: 10px 0 10px 16px;
  border-left: 3px solid #d0d8f0;
  margin-bottom: 8px;
  font-size: 0.92rem;
  line-height: 1.6;
}

.thesis-list .thesis-author {
  font-size: 0.8rem;
  color: #888;
}

/* --- Seminar --- */
.seminar-content {
  max-width: 780px;
}

.seminar-schedule {
  list-style: none;
  margin-top: 20px;
}

.seminar-schedule li {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
}

.seminar-schedule li:last-child {
  border-bottom: none;
}

.seminar-day {
  font-weight: 700;
  color: #00118f;
  min-width: 60px;
}

/* --- Topics (card with image) --- */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.topics-card {
  display: block;
  background: #fff;
  border: 1px solid #e0e6f0;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.15s;
}

.topics-card:hover {
  box-shadow: 0 6px 24px rgba(0, 17, 143, 0.12);
  transform: translateY(-2px);
  text-decoration: none;
}

.topics-card-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f0f4ff;
}

.topics-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.topics-card-body {
  padding: 16px 20px 20px;
}

.topics-card-date {
  display: inline-block;
  font-size: 0.78rem;
  color: #888;
  margin-bottom: 6px;
}

.topics-card-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #333;
  line-height: 1.6;
}

/* --- News --- */
.news-list {
  list-style: none;
}

.news-list li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
  align-items: baseline;
}

.news-list li:last-child {
  border-bottom: none;
}

.news-date {
  font-size: 0.85rem;
  color: #888;
  min-width: 100px;
  flex-shrink: 0;
}

.news-text {
  font-size: 0.95rem;
}

/* --- Links --- */
.link-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}

.link-list li a {
  display: block;
  padding: 14px 20px;
  background: #fff;
  border: 1px solid #e0e6f0;
  border-radius: 8px;
  transition: background 0.2s, box-shadow 0.2s;
}

.link-list li a:hover {
  background: #f0f4ff;
  box-shadow: 0 2px 8px rgba(0, 17, 143, 0.06);
  text-decoration: none;
}

.link-list .link-label {
  display: block;
  font-size: 0.78rem;
  color: #888;
  margin-top: 2px;
}

/* --- Access --- */
.access-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.access-detail dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  font-size: 0.95rem;
}

.access-detail dt {
  font-weight: 700;
  color: #00118f;
}

.access-map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e0e6f0;
}

.access-map iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: none;
}

/* --- Footer --- */
.site-footer {
  background: #1a1a2e;
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 0;
  font-size: 0.85rem;
  text-align: center;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.8);
}

.site-footer a:hover {
  color: #fff;
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  margin-top: 12px;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* --- Sub-page hero (smaller banner) --- */
.sub-hero {
  background: linear-gradient(135deg, #00118f 0%, #1a3abf 50%, #2952d9 100%);
  color: #fff;
  padding: 48px 0 40px;
}

.sub-hero h1 {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.sub-hero-en {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 4px;
  font-weight: 400;
}

/* --- Active nav link --- */
.global-nav a.nav-active {
  background: #e8eeff;
  color: #00118f;
  font-weight: 700;
}

/* --- Research card as link --- */
a.research-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.15s;
}

a.research-card-link:hover {
  box-shadow: 0 6px 24px rgba(0, 17, 143, 0.12);
  transform: translateY(-2px);
  text-decoration: none;
}

/* --- News detail page --- */
.news-detail-content {
  max-width: 780px;
  line-height: 2;
}

.news-detail-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #00118f;
  margin-top: 2em;
  margin-bottom: 0.5em;
}

.news-detail-content ul {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}

.news-detail-content ul li {
  margin-bottom: 0.3em;
}

.news-detail-content p + p {
  margin-top: 1em;
}

/* --- News photos --- */
.news-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 1.5em 0;
}

.news-photos figure {
  margin: 0;
}

.news-photos img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #e0e6f0;
}

.news-photos figcaption {
  font-size: 0.82rem;
  color: #888;
  margin-top: 6px;
  text-align: center;
}

@media (max-width: 768px) {
  .news-photos {
    grid-template-columns: 1fr;
  }
}

/* --- News video --- */
.news-video {
  margin: 1.5em 0;
}

.news-video video {
  width: 100%;
  max-width: 640px;
  border-radius: 8px;
  border: 1px solid #e0e6f0;
}

/* --- Presentation list --- */
.presentation-list {
  margin-top: 1em;
}

.presentation-item {
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}

.presentation-item:last-child {
  border-bottom: none;
}

.presentation-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #333;
  line-height: 1.6;
  margin-bottom: 4px;
}

.presentation-authors {
  font-size: 0.85rem;
  color: #888;
}

/* --- Research detail page --- */
.research-detail-content {
  max-width: 780px;
  line-height: 2;
}

.research-detail-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid #e0e0e0;
}

.research-detail-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.research-detail-content p {
  margin-bottom: 1rem;
}

.research-detail-content ul {
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.research-detail-content ul li {
  margin-bottom: 0.4rem;
}

.coming-soon {
  font-size: 1.1rem;
  color: #888;
  font-style: italic;
  margin-bottom: 24px;
  padding: 32px 0;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .header-inner {
    height: 3.5rem;
  }

  .site-logo-main {
    font-size: 1.05rem;
  }

  .nav-toggle {
    display: block;
  }

  .global-nav {
    display: none;
    position: absolute;
    top: 3.5rem;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e0e0e0;
    padding: 16px;
  }

  .global-nav.open {
    display: block;
  }

  .global-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .global-nav a {
    padding: 12px 16px;
    font-size: 0.95rem;
  }

  .hero {
    padding: 56px 0 48px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .section {
    padding: 48px 0;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .topics-grid {
    grid-template-columns: 1fr;
  }

  .research-grid {
    grid-template-columns: 1fr;
  }

  .faculty-card {
    flex-direction: column;
  }

  .access-info {
    grid-template-columns: 1fr;
  }

  .news-list li {
    flex-direction: column;
    gap: 4px;
  }

  .news-date {
    min-width: auto;
  }

  .link-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-keywords {
    gap: 8px;
  }

  .hero-keywords span {
    font-size: 0.78rem;
    padding: 4px 12px;
  }

  .member-list {
    grid-template-columns: 1fr;
  }
}

/* --- Blog --- */
.blog-post-content {
  max-width: 780px;
  line-height: 2;
}

.blog-post-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #00118f;
  margin-top: 2em;
  margin-bottom: 0.5em;
}

.blog-post-content ul {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}

.blog-post-content ul li {
  margin-bottom: 0.3em;
}

.blog-post-content p + p {
  margin-top: 1em;
}

.blog-post-meta {
  margin-bottom: 2em;
}

.blog-category-tag {
  display: inline-block;
  padding: 4px 14px;
  background: #e8eeff;
  color: #00118f;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.blog-list {
  display: flex;
  flex-direction: column;
}

.blog-empty {
  text-align: center;
  padding: 48px 0;
  color: #888;
  font-size: 0.95rem;
}

/* Blog list items */
.blog-list-item {
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}

.blog-list-item:first-child {
  border-top: 1px solid #eee;
}

.blog-list-item:hover {
  background: #f7f9ff;
  text-decoration: none;
}

.blog-list-item:hover .blog-list-title {
  color: #00118f;
}

.blog-list-date {
  font-size: 0.85rem;
  color: #888;
}

.blog-list-category {
  display: inline-block;
  padding: 2px 10px;
  background: #e8eeff;
  color: #00118f;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
}

.blog-list-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #333;
  margin-top: 4px;
  transition: color 0.15s;
}

.blog-list-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.blog-list-desc {
  display: block;
  font-size: 0.85rem;
  color: #888;
  margin-top: 4px;
  line-height: 1.6;
}

/* Blog post title */
.blog-post-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #00118f;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-post-date {
  font-size: 0.85rem;
  color: #888;
  margin-right: 12px;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.82rem;
  color: #888;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: #888;
}

.breadcrumb a:hover {
  color: #00118f;
}

/* Category navigation */
.blog-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.blog-cat-link {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid #d0d8f0;
  border-radius: 9999px;
  font-size: 0.8rem;
  color: #555;
  text-decoration: none;
  transition: all 0.15s;
}

.blog-cat-link:hover {
  border-color: #00118f;
  color: #00118f;
  text-decoration: none;
}

.blog-cat-link.blog-cat-active {
  background: #00118f;
  border-color: #00118f;
  color: #fff;
}

/* Prev/Next navigation */
.blog-prev-next {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  margin-top: 2em;
  border-top: 1px solid #eee;
}

.blog-prev-next a {
  font-size: 0.88rem;
  color: #00118f;
  text-decoration: none;
  max-width: 45%;
}

.blog-prev-next a:hover {
  text-decoration: underline;
}

.blog-prev-next .blog-next {
  text-align: right;
  margin-left: auto;
}

.blog-back-link {
  margin-top: 16px;
}

/* Latest blog posts on top page */
.latest-blog-list {
  list-style: none;
}

.latest-blog-list li {
  padding: 14px 0;
  border-bottom: 1px solid #eee;
}

.latest-blog-list li:last-child {
  border-bottom: none;
}

.latest-blog-list a {
  display: flex;
  align-items: baseline;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.latest-blog-list a:hover .latest-blog-title {
  color: #00118f;
}

.latest-blog-date {
  font-size: 0.82rem;
  color: #888;
  min-width: 85px;
  flex-shrink: 0;
}

.latest-blog-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #333;
  transition: color 0.15s;
}

@media (max-width: 768px) {
  .blog-list-header {
    flex-direction: row;
  }

  .blog-post-title {
    font-size: 1.3rem;
  }

  .blog-prev-next {
    flex-direction: column;
    gap: 12px;
  }

  .blog-prev-next a {
    max-width: 100%;
  }

  .blog-category-nav {
    gap: 6px;
  }

  .latest-blog-list a {
    flex-direction: column;
    gap: 2px;
  }

  .latest-blog-date {
    min-width: auto;
  }
}
