/* ===== Links Page ===== */

.page-title {
  padding: 40px 0 18px 0;
}

.page-title h1 {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.page-title p {
  color: #cfcfe0;
}

.links-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  padding-bottom: 30px;
}

/* PC: 2列 */
@media (min-width: 860px) {
  .links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.link-card {
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}

/* 左のアイコン枠 */
.link-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #0f0f15;
  border: 1px solid #1a1a22;
}

.link-icon img {
  width: 28px;
  height: 28px;
}

/* テキスト */
.link-text {
  display: grid;
  gap: 4px;
}

.link-name {
  font-size: 1.05rem;
  font-weight: 900;
}

.link-desc {
  font-size: 0.92rem;
  color: #cfcfe0;
}

/* 右側のアクセントライン（サービス色） */
.link-accent {
  position: absolute;
  right: 0;
  top: 0;
  width: 6px;
  height: 100%;
  opacity: 0.9;
}
