.blog-container {
  padding-bottom: 0;
}

.blog-body {
  display: flex;
  min-height: 650px;
}

.blog-sidebar {
  width: 170px;
  background: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 17px 8px 0 2px;
}

.blog-sidebar-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  background: #ffe066;
  border: 2px solid #b47cff;
  border-radius: 12px;
  padding: 7px 0 8px 0;
  margin-bottom: 5px;
}
.blog-sidebar-profile img {
  width: 75px;
  height: 75px;
  border-radius: 10px;
  background: #fffde7;
  border: 2px solid #b47cff;
  margin-bottom: 2px;
}
.blog-sidebar-title {
  font-size: 1.13em;
  color: #6c2eb6;
  font-weight: bold;
  letter-spacing: 1px;
}
.blog-sidebar-section {
  background: #fffde7;
  border: 1.5px solid #6c2eb6;
  border-radius: 7px;
  margin-bottom: 6px;
  padding: 7px 7px 7px 11px;
  color: #32096c;
  font-size: 0.97em;
}
.blog-sidebar-section ul { padding-left: 12px; margin: 0;}
.blog-sidebar-section li { margin-bottom: 2px; }
.blog-sidebar-section a { color: #b47cff; text-decoration: underline;}

.blog-sidebar-mascot {
  margin-top: 15px;
  text-align: center;
}
.blog-sidebar-mascot img {
  width: 80px;
  display: block;
  margin: 0 auto;
}

.blog-main {
  flex: 1;
  padding: 24px 0 0 0;
  margin-left: 30px;
  max-width: 850px;
}

.blog-main h1 {
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 2em;
  color: #6c2eb6;
}

.blog-post {
  background: #fff200;
  border-radius: 14px;
  border: 2px solid #6c2eb6;
  box-shadow: 0 0 14px #b47cff22;
  padding: 16px 30px 28px 30px;
  margin-bottom: 38px;
}

.blog-post h2 {
  font-size: 1.18em;
  color: #6c2eb6;
  margin-top: 0;
  margin-bottom: 5px;
  letter-spacing: 1.2px;
}
.blog-date { color: #b47cff; }
.blog-title { color: #32096c; font-weight: bold;}

.blog-meta {
  font-size: 0.95em;
  color: #6c2eb6;
  margin-bottom: 12px;
}

.blog-content {
  color: #32096c;
  font-size: 1.04em;
  line-height: 1.6;
}

.blog-thumbs-row {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 12px 0 8px 0;
}
.blog-thumbs-row img {
  width: 98px;
  height: 67px;
  object-fit: cover;
  border-radius: 7px;
  border: 1.5px solid #b47cff;
  background: #fffde7;
  box-shadow: 0 0 4px #b47cff33;
}

.blog-highlight-imgs {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  margin: 28px 0 19px 0;
}
.blog-highlight-imgs img {
  width: 270px;
  border-radius: 12px;
  border: 2px solid #b47cff;
  background: #fffde7;
  box-shadow: 0 0 12px #b47cff22;
}

@media (max-width: 900px) {
  .blog-body { flex-direction: column;}
  .blog-sidebar { flex-direction: row; width: 100%; gap: 24px; }
  .blog-main { margin-left: 0; }
}