* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.8;
  font-size: 14px;
}

a {
  color: inherit;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* ===== Header ===== */
.site-header {
  padding-top: 12px;
}

.site-title {
  text-align: center;
  margin: 8px 0 10px;
  font-size: 22px;
  font-weight: 700;
}

/* black nav */
.global-nav {
  background: #222;
}

.global-nav__inner {
  width: min(900px, 92%);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 46px;
  padding: 10px 0;
}

.global-nav__link {
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.06em;
}

.global-nav__link:hover {
  opacity: 0.75;
}

.global-nav__link.is-current {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== Featured ===== */
.featured {
  padding: 26px 0 12px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.featured-card__img {
  width: 100%;
  height: 175px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  background: #eee;
}

.featured-card__title {
  margin: 10px 0 6px;
  font-size: 12px;
  font-weight: 700;
}

.readmore {
  display: block;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 6px;
}

.readmore--post {
  margin-top: 10px;
}

/* ===== Main 2 columns ===== */
.main {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  padding: 18px 0 60px;
}

/* ===== Posts ===== */
.post {
  margin-top: 16px;
  padding-top: 8px;
}

.post__title {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 800;
}

.post__meta {
  margin: 0 0 10px;
  font-size: 11px;
  color: #444;
}

.post__img {
  width: 100%;
  height: 330px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  background: #eee;
}

.post__text {
  margin: 10px 0 0;
  font-size: 12px;
  color: #222;
}

/* ===== Sidebar ===== */
.sidebar {
  padding-top: 18px;
}

.widget {
  margin-bottom: 26px;
}

.widget__title {
  text-align: center;
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 800;
}

/* profile */
.profile {
  text-align: center;
}

.profile__avatar-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.profile__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  background: #eee;
}

.profile__name {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 800;
}

.profile__text {
  margin: 0 auto;
  text-align: left;
  font-size: 11px;
  color: #333;
  line-height: 1.9;
}

/* ranking */
.rank-item__img {
  width: 100%;
  height: 170px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  background: #eee;
}

.rank-item__text {
  margin: 8px 0 0;
  font-size: 11px;
}

/* mini posts (right small cards) */
.mini-post {
  margin-bottom: 18px;
}

.mini-post__img {
  width: 100%;
  height: 145px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  background: #eee;
}

.mini-post__text {
  margin: 8px 0 0;
  font-size: 11px;
}

/* archive list */
.archive {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #333;
}

.archive__item {
  border-bottom: 1px solid #333;
}

.archive__item a {
  display: block;
  padding: 12px 0;
  text-decoration: none;
  font-size: 11px;
  color: #333;
}

.archive__item a:hover {
  opacity: 0.7;
}

/* ===== Footer ===== */
.footer {
  background: #f2f2f2;
  padding: 46px 0 60px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px;
}

.footer-box__title {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 800;
}

.footer-box__text {
  margin: 0 0 12px;
  font-size: 11px;
  color: #333;
  line-height: 1.9;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 11px;
}

.footer-links li {
  margin: 6px 0;
}

.footer-links a {
  text-decoration: none;
  color: #333;
}

.footer-links a:hover {
  opacity: 0.7;
}

/* footer menu with underline separators */
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 11px;
  border-top: 1px solid #333;
}

.footer-menu li {
  border-bottom: 1px solid #333;
}

.footer-menu a {
  display: block;
  padding: 12px 0;
  text-decoration: none;
  color: #333;
}

.footer-menu a:hover {
  opacity: 0.7;
}/*# sourceMappingURL=style.css.map */