/* AMOR Instagram フィード表示（静的サイト側）
   クライアント指定デザイン(2026-08-06改訂): 黒背景+クリムゾンの左ボーダー見出し
   （news-list.html .am-section-headと同一トークン）+ プロフィール行(アバター/アカウント名/bio)。
   "Zen Kaku Gothic New" 見出しフォント、クリムゾン #c70542 のブランドカラーを踏襲。 */

.amor-ig-section {
  width: 100%;
  background-color: #0b0b0b;
  padding: 60px 20px 70px;
  box-sizing: border-box;
}
.amor-ig-container {
  max-width: 1100px;
  margin: 0 auto;
}
.amor-ig-head {
  display: flex;
  align-items: center;
  border-left: 6px solid #c70542;
  border-bottom: 1px solid #c70542;
  padding: 6px 0 12px 20px;
  margin: 0 0 24px;
}
.amor-ig-heading-link {
  text-decoration: none;
}
.amor-ig-heading {
  margin: 0;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: clamp(20px, 2.4vw, 30px);
  letter-spacing: .03em;
}
.amor-ig-profile {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0 0 24px;
  text-decoration: none;
}
.amor-ig-avatar {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: #1c1c1c;
}
.amor-ig-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.amor-ig-profile-body {
  min-width: 0;
}
.amor-ig-username {
  margin: 0 0 4px;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 15px;
}
.amor-ig-bio {
  margin: 0;
  color: rgba(242, 242, 242, .75);
  font-size: 13px;
  line-height: 1.7;
}

.amor-ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.amor-ig-item {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 6px;
  background: #1c1c1c;
}
.amor-ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease, opacity .3s ease;
}
.amor-ig-item:hover img {
  transform: scale(1.05);
  opacity: .9;
}
.amor-ig-more {
  display: flex;
  align-items: center;
  column-gap: 8px;
  width: fit-content;
  margin: 26px auto 0;
  padding: 10px 22px;
  background: linear-gradient(135deg, #feda75 0%, #fa7e1e 6%, #d62976 40%, #962fbf 68%, #4f5bd5 100%);
  border-radius: 999px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  color: #fff;
  transition: opacity .2s ease;
}
.amor-ig-more:hover {
  opacity: .85;
}
.amor-ig-more svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .amor-ig-section { padding: 44px 16px 54px; }
  .amor-ig-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .amor-ig-grid .amor-ig-item:nth-child(n+7) { display: none; }
}
