/* World page tweaks and section layout */
.page-world .world-page {
  padding-top: 26px;
}

.page-world .world-hero {
  margin-bottom: 16px;
}

.page-world .world-select {
  margin-bottom: 16px;
}

.page-world .world-select__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.page-world .world-select__head h2 {
  margin: 0;
  font-family: "Cormorant Garamond", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 0.98;
  color: #1d2b46;
}

.page-world .world-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.page-world .world-link {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  border: 1px solid #d8e3f0;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(9, 31, 63, 0.08);
  padding: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.page-world .world-link:hover {
  transform: translateY(-2px);
  border-color: #abc9ea;
  box-shadow: 0 18px 34px rgba(8, 35, 68, 0.12);
}

.page-world .world-link.is-disabled {
  opacity: 0.66;
  pointer-events: none;
}

.page-world .world-status {
  position: absolute;
  right: 12px;
  top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 11px;
  background: #eef6ff;
  border: 1px solid #c8dcf3;
  color: #355277;
}

.page-world .world-item.is-soon .world-status {
  background: #fff7ec;
  border-color: #ecd3ad;
  color: #835f29;
}

.page-world .world-thumb {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(140deg, #e8f3ff, #f2f8ff);
  border: 1px solid #d4e2f2;
  display: grid;
  place-items: center;
}

.page-world .world-thumb:empty::after {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #9eb7d4;
}

.page-world .world-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-world .world-meta {
  display: grid;
  gap: 4px;
}

.page-world .world-name {
  color: #1f2c45;
  font-weight: 700;
}

.page-world .world-desc {
  font-size: 13px;
  color: #5d667f;
}

.page-world .world-panels {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.page-world .world-links,
.page-world .world-list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-world .world-links li {
  border: 1px solid #d8e3f0;
  border-radius: 12px;
  background: #f7fbff;
  padding: 10px 12px;
}

.page-world .world-links a,
.page-world .world-list a {
  color: #1f2c45;
  font-weight: 600;
  text-decoration: none;
}

.page-world .world-links a:hover,
.page-world .world-list a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 760px) {
  .page-world .world-select__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-world .world-link {
    grid-template-columns: 56px 1fr;
    padding: 14px;
  }

  .page-world .world-thumb {
    width: 56px;
    height: 56px;
  }
}
