/*
 * MGS Content Suite - 記事スタイル
 * preview2.htmlの見た目をWP記事に再現
 */

:root {
  --mgss-accent:  #c8a96e;
  --mgss-hot:     #c0392b;
  --mgss-hot2:    #a93226;
  --mgss-border:  #1c1c1c;
  --mgss-muted:   #555;
  --mgss-surface: #111;
}

/* 評価バー */
.mgss-proof {
  display: flex;
  border-bottom: 1px solid #ddd;
  margin: 16px 0 0;
}
.mgss-proof-item {
  flex: 1;
  padding: 10px 8px;
  border-right: 1px solid #ddd;
  text-align: center;
}
.mgss-proof-item:last-child { border-right: none; }
.mgss-proof-num {
  display: block;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}
.mgss-proof-label {
  display: block;
  font-size: 10px;
  color: #888;
  margin-top: 2px;
  letter-spacing: .1em;
}
.mgss-gold { color: #c8a96e; }
.mgss-red  { color: #c0392b; }

/* CTA1 - 赤ボタン */
.mgss-cta-1 {
  display: block;
  width: 100%;
  padding: 16px 20px;
  background: var(--mgss-hot);
  color: #fff !important;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: .08em;
  text-align: center;
  text-decoration: none !important;
  border: none;
  margin: 0;
  transition: background .2s;
  box-sizing: border-box;
}
.mgss-cta-1:hover { background: var(--mgss-hot2); }
.mgss-cta-1 em {
  display: block;
  font-style: normal;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .15em;
  opacity: .75;
  margin-top: 3px;
}

/* 動画サムネイル */
.mgss-vid-thumb {
  position: relative !important;
  overflow: hidden;
  cursor: pointer;
  margin: 0;
  display: block;
  line-height: 0;
}
.mgss-vid-thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  opacity: .45;
  transition: opacity .3s, transform .4s;
}
.mgss-vid-thumb:hover img {
  opacity: .3;
  transform: scale(1.02);
}
.mgss-vid-ov {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.2) 100%);
  pointer-events: none;
}
.mgss-vbtn {
  width: 60px;
  height: 60px;
  border: 2px solid rgba(255,255,255,.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
}
.mgss-vbtn::after {
  content: '';
  border-left: 20px solid white;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}
.mgss-vid-thumb:hover .mgss-vbtn {
  background: rgba(192,57,43,.6);
  border-color: var(--mgss-hot);
  transform: scale(1.08);
}
.mgss-vlabel {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  color: rgba(255,255,255,.75);
}

/* サンプル画像ギャラリー */
.mgss-gallery {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
  margin: 0;
}
.mgss-gallery::-webkit-scrollbar { display: none; }
.mgss-gi {
  flex: 0 0 82px;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
}
.mgss-gi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .7;
  transition: opacity .2s, transform .3s;
}
.mgss-gi:hover img { opacity: 1; transform: scale(1.06); }

/* CTA2 - 細ボタン */
.mgss-cta-2 {
  display: block;
  width: 100%;
  padding: 12px 20px;
  background: transparent;
  color: var(--mgss-hot) !important;
  border: 1px solid var(--mgss-hot);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-align: center;
  text-decoration: none !important;
  transition: all .2s;
  box-sizing: border-box;
}
.mgss-cta-2:hover { background: var(--mgss-hot); color: #fff !important; }

/* 本文 */
.mgss-body {
  padding: 20px 4px 18px;
  border-bottom: 1px solid #eee;
}
.mgss-body p {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.9;
}
.mgss-body p:last-child { margin-bottom: 0; }

/* プルクォート */
.mgss-pq {
  border-left: 3px solid var(--mgss-accent);
  padding: 8px 14px;
  color: #666;
  font-style: italic;
  font-size: 13px;
  margin: 16px 0;
  background: rgba(200,169,110,.06);
}

/* CTA3 - 末尾金ボタン */
.mgss-cta-footer {
  padding: 16px 0 22px;
}
.mgss-nudge {
  text-align: center;
  font-size: 11px;
  color: #999;
  letter-spacing: .06em;
  margin-bottom: 10px;
}
.mgss-cta-3 {
  display: block;
  width: 100%;
  padding: 15px 20px;
  background: rgba(200,169,110,.1);
  border: 1px solid var(--mgss-accent);
  color: var(--mgss-accent) !important;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .08em;
  text-align: center;
  text-decoration: none !important;
  transition: all .2s;
  box-sizing: border-box;
}
.mgss-cta-3:hover { background: var(--mgss-accent); color: #000 !important; }
.mgss-code-note {
  text-align: center;
  font-size: 10px;
  color: #bbb;
  letter-spacing: .08em;
  margin-top: 8px;
}

/* モバイル */
@media(max-width: 580px) {
  .mgss-cta-1 { font-size: 14px; padding: 14px; }
  .mgss-proof-num { font-size: 16px; }
}

/* Aurora SNS用イメージ画像 */
.mgss-aurora-section {
    margin: 24px 0;
    text-align: center;
}
.mgss-aurora-img {
    max-width: 100%;
    border-radius: 6px;
    display: block;
    margin: 0 auto;
}
.mgss-aurora-note {
    font-size: 11px;
    color: #999;
    margin-top: 4px;
    text-align: center;
}
