.site-main {
  min-height: 60vh;
}

.sig-inner-page .site-main {
  padding-top: 54px;
}

.blog-shell {
  padding-top: 48px;
}

.blog-title {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.page-intro,
.post-card,
.single-entry,
.empty-state,
.search-box,
.comments-shell,
.post-navigation-card {
  border: 1px solid rgba(17, 24, 39, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 80px rgba(34, 54, 93, 0.16);
  backdrop-filter: blur(16px);
  border-radius: 28px;
}

.page-intro,
.empty-state,
.search-box,
.comments-shell,
.post-navigation-card {
  padding: 28px;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.post-card-inner {
  padding: 30px;
}

.post-card-title {
  margin-top: 14px;
  font-size: 30px;
  letter-spacing: -0.05em;
}

.post-card-title a:hover {
  color: #ff1494;
}

.post-card-excerpt,
.entry-content,
.page-intro,
.empty-state p,
.search-box,
.wp-block-latest-posts,
.wp-block-categories,
.wp-block-archives {
  color: #526074;
  line-height: 1.8;
  font-size: 18px;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
}

.post-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(17, 24, 39, 0.08);
}

.single-entry,
.single-page {
  padding: 34px;
}

.narrow-container {
  width: min(900px, calc(100% - 40px));
}

.featured-media {
  margin-bottom: 28px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(34, 54, 93, 0.16);
}

.featured-media img {
  width: 100%;
  height: auto;
}

.entry-content > * + * {
  margin-top: 1.2em;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  color: #0b1020;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.entry-content a {
  color: #075d86;
  font-weight: 800;
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.4em;
}

.entry-content img {
  border-radius: 24px;
}

.wp-block-quote,
blockquote {
  padding: 20px 24px;
  border-left: 4px solid #09bdf5;
  border-radius: 0 20px 20px 0;
  background: rgba(9, 189, 245, 0.08);
}

.post-navigation-card {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
}

.post-navigation-card a {
  font-weight: 900;
}

.pagination-wrap {
  margin-top: 28px;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 46px;
  padding: 10px 16px;
  border-radius: 16px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

.pagination .current {
  color: #fff;
  background: linear-gradient(90deg, #09bdf5, #285bff, #ff1494);
  border-color: transparent;
}

.search-box .search-form,
.wp-block-search__inside-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.search-box input[type="search"],
.search-box input[type="text"],
.comments-shell input[type="text"],
.comments-shell input[type="email"],
.comments-shell input[type="url"],
.comments-shell textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  font: inherit;
  color: #0b1020;
}

.search-box button,
.search-box input[type="submit"],
.comments-shell input[type="submit"],
.comments-shell .submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  border-radius: 18px;
  padding: 15px 22px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(90deg, #09bdf5, #285bff, #ff1494);
  box-shadow: 0 14px 34px rgba(9, 189, 245, 0.22), 0 16px 40px rgba(255, 20, 148, 0.14);
}

.comments-shell .comment-list,
.comments-shell .children {
  list-style: none;
  padding-left: 0;
}

.comments-shell .comment-body {
  margin-top: 18px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 24, 39, 0.08);
}

.comments-shell .comment-meta {
  margin-bottom: 10px;
}

.comments-shell .comment-reply-link {
  font-weight: 900;
  color: #075d86;
}

@media (max-width: 1060px) {
  .post-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .sig-inner-page .site-main {
    padding-top: 32px;
  }

  .single-entry,
  .single-page,
  .page-intro,
  .empty-state,
  .search-box,
  .comments-shell,
  .post-navigation-card {
    padding: 22px;
    border-radius: 24px;
  }

  .post-card-inner {
    padding: 24px;
  }

  .post-card-title {
    font-size: 26px;
  }

  .post-navigation-card {
    flex-direction: column;
  }
}
