.entry {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

body {
  background-color: var(--color-soft-white);
  color: var(--color-soft-black);
}

.content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 20px 0 20px;
}

.more-button-container {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 120px;
}

.more-button {
  width: 200px;
  justify-content: center;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  color: #111;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  overflow: hidden;
  transition:
      color 0.3s ease,
      transform 0.3s ease,
      box-shadow 0.3s ease;
}

.more-button::before {
  content: "";
  position: absolute;
  top: var(--y);
  left: var(--x);
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 80%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
  z-index: 0;
  pointer-events: none;
}

.more-button:hover::before {
  width: 300px;
  height: 300px;
}

.more-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  color: white;
}

.more-button span {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

/* 섹션 */
.section-title {
  font-family: 'AppleSDGothicNeo', sans-serif;
  font-weight: 800;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  margin: 0 0 24px;
  letter-spacing: -0.3px;
}

.section-title::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 18px;
  background-color: #f87171; /* 예: 빨간 포인트 */
  border-radius: 3px;
  transform: translateY(1.5px);
}
