/* =========================
    THEME：FV（探偵クラブ）世界観に統一（添付の“白×ネイビー×淡いピンク”寄せ）
    ※構造はそのまま／色だけ差し替え
========================= */
:root{
  /* 背景：白〜薄グレー */
  --bg: #F3F6FB;
  --bg-2: #EAF0F8;

  /* ガラス面：白寄り */
  --surface: rgba(255,255,255,.88);
  --surface-2: rgba(255,255,255,.95);
  --glass-border: rgba(15,23,42,.10);

  /* 文字：黒寄り（読みやすさ重視） */
  --text-main: rgba(15,23,42,.92);
  --text-sub: rgba(15,23,42,.70);
  --muted: rgba(71,85,105,.88);

  /* メイン：ネイビー / サブ：ブルー（画像のテーブル見出し色） */
  --accent: #023C7B;    /* 濃いネイビー */
  --accent-2: #1D6FD6;  /* 明るいブルー */

  /* 線・影 */
  --line: rgba(15,23,42,.10);
  --shadow: 0 16px 38px rgba(2, 16, 46, .14);
  --shadow-soft: 0 12px 28px rgba(2, 16, 46, .10);

  --radius: 14px;
  --radius-lg: 18px;
}

*{ box-sizing:border-box; }
body{
  margin:0; padding:0;
  font-family:'Noto Sans JP', sans-serif;
  background:
    radial-gradient(900px 420px at 15% 10%, rgba(29,111,214,.10), rgba(0,0,0,0) 55%),
    radial-gradient(800px 420px at 85% 0%, rgba(242,140,58,.08), rgba(0,0,0,0) 55%),
    linear-gradient(180deg, var(--bg) 0%, #F7F9FC 55%, #F2F5FA 100%);
  color: var(--text-main);
  line-height: 1.8;
}
a{ color: inherit; }
img{ max-width:100%; height:auto; }

/* reveal */
.reveal{ opacity:0; transform: translateY(15px); transition: opacity .6s ease-out, transform .6s ease-out; }
.reveal.active{ opacity:1; transform: translateY(0); }


/* =========================
  NAV（白ベース＋ネイビー文字）
========================= */
nav{
  background: rgba(255,255,255,.86);
  border-bottom: 1px solid rgba(2,60,123,.18);
  padding: 12px 16px;
  position: sticky;
  top:0;
  z-index:1000;
  display:flex;
  justify-content: space-between;
  align-items:center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav-logo{
  font-weight: 900;
  letter-spacing: .02em;
  color: rgba(2,60,123,.96);
  font-size: 1.05rem;
  display:flex;
  align-items:baseline;
  gap:10px;
}
.nav-logo span{
  color: rgba(2,60,123,.60);
  font-size: .82rem;
  font-weight: 700;
}
.nav-meta{
  font-size: 11px;
  color: rgba(15,23,42,.72);
  border: 1px solid rgba(2,60,123,.18);
  background: rgba(2,60,123,.06);
  padding: 6px 10px;
  border-radius: 999px;
}

.container{ max-width: 960px; margin:0 auto; padding: 20px 15px; }

/* =========================
  HERO（背景画像はそのまま／被せ色を白寄りに）
========================= */
.hero{
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(2,60,123,.14);
  background-size: cover;
  background-position: 35% center;
  background-repeat: no-repeat;
  padding: 26px 15px;
  text-align: center;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(255,255,255,.48) 0%, rgba(255,255,255,.36) 35%, rgba(255,255,255,.54) 100%);
  pointer-events:none;
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(ellipse at 50% 15%, rgba(255,255,255,.42), rgba(255,255,255,0) 55%);
  pointer-events:none;
}

.hero-image-container {
  width: 100vw; /* 画面幅いっぱい */
  position: relative;
  margin-top: -30px;
  margin-bottom: 15px;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  line-height: 0;
}

.hero > *{ position:relative; z-index:1; }

.kicker{
  display: inline-flex;
  align-items:center;
  justify-content:center;
  padding: 5px 20px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing:.02em;
  color: rgba(2,60,123,.92);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(2,60,123,.18);
  box-shadow: 0 8px 18px rgba(2,16,46,.08);
  margin: 0 auto 20px;
}

.hero-h1{
  margin:0 0 14px;
  font-size: 28px;
  line-height: 1.7;
  font-weight: 900;
  color: rgba(2,60,123,.98);
  text-shadow:
    0 0 18px rgba(255,255,255,.65),
    0 2px 12px rgba(255,255,255,.55),
    0 0 2px rgba(255,255,255,.75);
}
.hero-h1 span{
  color:#FF4F02;
  text-shadow:
    0 0 18px rgba(255,255,255,.65),
    0 2px 12px rgba(255,255,255,.55),
    0 0 2px rgba(255,255,255,.75);
}

.hero-p{
  max-width: 760px;
  margin: 0 auto 20px;
  text-align: left;
  font-size: 15px;
  line-height: 1.95;
  color: rgba(15,23,42,.86);
  background: rgba(255,255,255,.42);
  border: 1px solid rgba(2,60,123,.16);
  border-radius: 16px;
  padding: 15px 25px;
  box-shadow: 0 10px 26px rgba(2,16,46,.10);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-p strong{
  color: rgba(2,60,123,.95);
  font-weight: 900;
  background: linear-gradient(transparent 68%, rgba(242,140,58, 0.30) 68%);
}

.hero-p .gap{
  display: block;
  height: 10px; /* ←ここが肝。4〜8pxで微調整 */
}


.hero-quote{
  position: relative;
  display:block;
  font-weight: 700;
  margin:0 0 12px;
  padding: 15px 28px 15px 28px;
  border-radius: 10px;
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(2,60,123,.16);
  border-left: 4px solid rgba(2,60,123,.55);
  box-shadow: 0 10px 26px rgba(2,16,46,.10);
  line-height: 1.8;
  color: rgba(15,23,42,.88);
}

.mid-note{
  margin: 10px 0 14px;
  padding: 8px 2px 8px 12px;
  font-size: 14px;
  line-height: 1.6;
  border-left: 2px solid #c7d6ea;
  background: transparent;
}

.mid-note strong{
  font-weight: 500;
  color: #1f2937;
  background: linear-gradient(transparent 70%, rgba(239,68,68,0.18) 70%);
}

/* 左上と右下に " を置く */
.hero-quote::before{
  content: "“";
  position: absolute;
  top: 8px;
  left: 12px;
  font-size: 20px;
  line-height: 1;
  opacity: .55;
  color: rgba(2,60,123,.70);
  pointer-events: none;
}

.hero-quote::after{
  content: "”";
  position: absolute;
  right: 15px;
  bottom: 10px;
  font-size: 20px;
  line-height: 1;
  opacity: .55;
  color: rgba(2,60,123,.70);
  pointer-events: none;
}


@media (max-width:600px){
  .hero{ padding: 22px 10px; background-position: 38% center; }
  .hero-h1{ font-size: 32px; margin-top: 20px; margin-bottom: 12px; }
  .hero-p{ font-size: 15px; padding: 15px 12px; border-radius: 12px; }
}

/* =========================
  見出し装飾
========================= */
.section-head{ text-align:center; margin: 0 0 16px; }
.section-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  color: rgba(2,60,123,.88);
  background: rgba(2,60,123,.06);
  border: 1px solid rgba(2,60,123,.14);
  box-shadow: 0 10px 22px rgba(2,16,46,.08);
}
.section-kicker::before{
  content:"●";
  color: rgba(242,140,58,.95);
  font-size: 10px;
  transform: translateY(-1px);
}

.section-title{
  display:inline;
  font-weight: 900;
  font-size: 22px;
  line-height: 1.55;
  color: rgba(2,60,123,.94);
  padding: 0 .1em;
  background:
    linear-gradient(transparent 68%, rgba(242,140,58,.22) 68%),
    radial-gradient(120px 22px at 50% 85%, rgba(29,111,214,.10), rgba(0,0,0,0) 70%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* CHECKLIST（#contact1）内のリスト点をオレンジに */
#contact1 ul li::marker{
  color: rgba(242,140,58,.95);
}

.section-sub{
  margin: 10px 0 0;
  font-size: 13.5px;
  color: rgba(15,23,42,.68);
  line-height: 1.85;
}
@media (max-width:600px){
  .section-title{ font-size: 20px; }
  .section-sub{ font-size: 13px; }
}

/* =========================
  セクション共通カード（白カード寄せ）
========================= */
.policy-box{
  background: var(--surface);
  border: 1px solid var(--glass-border);
  padding: 22px 18px;
  border-radius: var(--radius-lg);
  margin-top: 26px;
  margin-bottom: 26px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* =========================
  Policy Card（画像の“白カード”に寄せる）
========================= */
.policy-box--card{
  max-width: 560px;
  margin-left:auto;
  margin-right:auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.policy-card{
  background: rgba(255,255,255,.92);
  border-radius: 16px;
  padding: 22px 18px 18px;
  border: 1px solid rgba(2,60,123,.18);
  box-shadow: 0 18px 40px rgba(2,16,46,.12);
  position: relative;
  overflow:hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.policy-card-title{
  text-align:center;
  font-weight: 900;
  color: rgba(2,60,123,.94);
  font-size: 16px;
  letter-spacing: .02em;
  margin: 0 0 18px;
}
.policy-line .num{
  display:block;
  font-weight: 900;
  color: rgba(2,60,123,.96);
  font-size: 16px;
  margin-bottom: 4px;
}
.policy-line .txt{
  margin:0;
  color: rgba(15,23,42,.86);
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.75;
}
.policy-note{
  margin: 16px 0 0;
  font-size: 12px;
  line-height: 1.65;
  color: rgba(15,23,42,.60);
  text-align:center;
}

/* =========================
  COMPARISON TABLE（画像の配色：濃紺ヘッダー＋淡いピンク）
========================= */
.comparison-section{ margin: 52px 0 40px; }
.comp-table{
  width:100%;
  table-layout: fixed; /* 列幅が暴れない */
  border-collapse: collapse;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(2,60,123,.18);
  border-radius: 14px;
  overflow:hidden;
  box-shadow: var(--shadow-soft);
}
.comp-table th, .comp-table td{
  padding: 10px 8px;
  border: 1px solid rgba(2,60,123,.10);
  text-align:center;
  font-size: 12px;
  color: rgba(15,23,42,.82);
}

/* ここが“濃紺ヘッダー” */
.comp-table th{
  background: rgba(2,60,123,.96);
  color: rgba(255,255,255,.96);
  font-weight: 900;
}

/* “おすすめ度”とかの強調行：淡いピンク */
.best-row{
  background: rgba(250,226,224,.92);
  font-weight: 800;
}

/* 画像が入るセルだけ余白をゼロにする */
 .comp-table td.img-cell {
  padding: 0; 
}

 .comp-table img {
  width: 100%;    /* 枠幅いっぱい */
  display: block; /* 下に隙間ができないように */
  aspect-ratio: 1 / 1; /* 正方形で統一（必要に応じて） */
  object-fit: cover;   /* 画像が歪まないように調整 */
}

/* =========================
  RANK CARD（白ガラス）
========================= */
.job-card{
  background: rgba(255,255,255,.86);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(2,60,123,.16);
  margin-bottom: 56px;
  overflow:hidden;
  box-shadow: var(--shadow);
}
.job-header{
  padding: 16px 16px;
  background:
    linear-gradient(90deg, rgba(2,60,123,.14), rgba(255,255,255,0) 55%),
    rgba(255,255,255,.78);
  color: rgba(2,60,123,.96);
  display:flex;
  flex-direction: column;
  align-items:flex-start;
  gap: 10px;
  border-bottom: 1px solid rgba(2,60,123,.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.job-rank{
  font-weight: 900;
  font-size: 20px;
  letter-spacing:.02em;
  line-height: 1.2;
  color: rgba(2,60,123,.94);
}

.job-tags{ display:flex; gap: 8px; flex-wrap: wrap; }
.tag-white{
  font-size: 11px;
  background: rgba(2,60,123,.06);
  border: 1px solid rgba(2,60,123,.14);
  border-radius: 999px;
  padding: 6px 10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  line-height:1;
  color: rgba(2,60,123,.82);
}

.job-body{ padding: 16px; }

.job-title{
  font-size: 18px;
  color: rgba(2,60,123,.94);
  margin: 0 0 18px 0;
  font-weight: 900;
  border-left: 4px solid #FF773E;
  padding-left: 12px;
  letter-spacing:.01em;
}

.job-main-info{
  display:grid;
  grid-template-columns: 280px 1fr;
  gap: 22px;
  margin-bottom: 24px;
}
@media (max-width:768px){
  .job-main-info{ grid-template-columns: 1fr; }
}

/* 画像を潰さず正方形に寄せる（色だけ） */
.job-img{
  position: relative;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(2,60,123,.14);
  box-shadow: 0 10px 22px rgba(2,16,46,.10);
  background: rgba(255,255,255,.78);
  aspect-ratio: 1 / 1;
}
.job-img img{
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: center;
  display:block;
}

.spec-table{
  width:100%;
  border-collapse: collapse;
  margin-bottom: 14px;
  overflow:hidden;
  border-radius: 14px;
  border: 1px solid rgba(2,60,123,.14);
}
.spec-table th{
  width: 130px;
  background: rgba(2,60,123,.06);
  color: rgba(2,60,123,.78);
  text-align:left;
  padding: 9px 10px;
  border: 1px solid rgba(2,60,123,.10);
  font-size: 12px;
  font-weight: 800;
}
.spec-table td{
  padding: 10px 10px;
  border: 1px solid rgba(2,60,123,.10);
  font-size: 13px;
  font-weight: 500;
  color: rgba(15,23,42,.86);
  background: rgba(255,255,255,.72);
}

.analysis-deep{
  background: rgba(255,255,255,.78);
  border-radius: 14px;
  padding: 18px 16px;
  margin-top: 18px;
  border: 1px solid rgba(2,60,123,.14);
}
.analysis-deep h4{
  margin: 0 0 12px 0;
  font-size: 15px;
  color: rgba(2,60,123,.92);
  border-bottom: 1px solid rgba(2,60,123,.14);
  padding-bottom: 8px;
  font-weight: 900;
}
.analysis-list{ margin:0; padding:0; list-style:none; }
.analysis-list li{
  position: relative;
  padding-left: 18px;
  margin: 15px 0 15px;
  font-size: 14px;
  color: rgba(15,23,42,.82);
}
.analysis-list li::before{
  content:"●";
  position:absolute;
  left:0;
  color: rgba(242,140,58,.95);
  font-size: 10px;
  top: 4px;
}

.highlight-red{
  color: rgba(2,60,123,.94);
  font-weight: 800;
  background: linear-gradient(transparent 70%, rgba(250,226,224,.90) 70%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.voice-card{
  background: rgba(255,255,255,.82);
  padding: 16px;
  border-radius: 14px;
  margin: 18px 0;
  border: 1px solid rgba(2,60,123,.14);
}
.voice-card p{
  margin:0;
  font-size: 13.5px;
  color: rgba(15,23,42,.82);
  font-style: italic;
}
.voice-name{
  display:block;
  margin-top: 10px;
  font-size: 12px;
  color: rgba(15,23,42,.62);
  text-align:right;
}

/* CTA（青×オレンジの“押せる感”） */
.cta-container{ text-align:center; margin-top: 20px; }
.cta-btn{
  display:inline-block;
  width:100%;
  max-width: 520px;
  background: linear-gradient(180deg, #2B79E6, #023C7B);
  color:#fff;
  text-align:center;
  padding: 18px 18px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 900;
  font-size: 16px;
  box-shadow: 0 10px 24px rgba(2,60,123,.18);
  border: 1px solid rgba(2,60,123,.18);
  transition: .25s;
}
.cta-btn:hover{ transform: translateY(-1px); filter: brightness(1.02); }


/* STEP
========================= */
.step-section{
  background: rgba(255,255,255,.04);
  padding: 34px 18px;
  border-radius: var(--radius-lg);
  margin-top: 50px;
  margin-bottom: 50px;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow-soft);
}

/* スマホは縦並び（画像みたいに） */
.step-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 22px;
}

/* PCだけ3列にしたいならこれON（不要なら消してOK） */
@media (min-width: 980px){
  .step-grid{ grid-template-columns: repeat(3, 1fr); }
}

.step-item{
  position: relative;
  background: rgba(255,255,255,.04);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  padding: 22px 16px 16px; /* 上を少し厚め（番号の余白） */
}

/* 番号：カード中央上（画像と同じ） */
.step-num{
  position:absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,87,13,.92);
  color:#fff;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 10px 18px rgba(0,0,0,.25);
}

/* 左画像＋右テキスト（スマホでも横並び維持） */
.step-body{
  display:flex;
  align-items:center;
  gap: 14px;
}

/* 左画像枠：角丸＋長方形（画像の雰囲気） */
.step-img{
  flex: 0 0 120px;     /* スマホでも左に固定幅 */
  height: 86px;        /* 長方形 */
  border-radius: 25px;
  overflow:hidden;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
}

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

/* 右テキスト */
.step-text{ flex: 1; min-width: 0; }

.step-item h5{
  margin: 0 0 6px;
  font-size: 14px;
  color: rgba(2,60,123,.94);
  font-weight: 900;
  line-height: 1.35;
}

.step-item p{
  font-size: 13px;
  margin: 0;
  color: #222;
  line-height: 1.6;
}

/* さらに小さい端末だけ微調整 */
@media (max-width: 360px){
  .step-img{ flex-basis: 140px; height: 140px; }
  .step-item h5{ font-size: 15px; }
}

  FAQ
========================= */
.faq-section{ margin-bottom: 50px; }
.faq-title{
  text-align:center;
  color: rgba(2,60,123,.94);
  margin-bottom: 22px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing:.02em;
}
.faq-item{
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(2,60,123,.14);
  margin-bottom: 12px;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 10px 22px rgba(2,16,46,.10);
}
.faq-q{
  font-weight: 900;
  color: rgba(2,60,123,.92);
  display:flex;
  gap: 10px;
  font-size: 15px;
  margin-bottom: 10px;
}
.faq-q::before{ content:"Q."; color: #F28C3A; }
.faq-a{
  font-size: 13.5px;
  line-height: 1.9;
  color: rgba(15,23,42,.78);
  padding-left: 25px;
  border-top: 1px solid rgba(2,60,123,.12);
  padding-top: 10px;
}

.note{
  font-size: 12px;
}

/* =========================
  OFFER
========================= */
.offer-wrap{ margin: 22px 0 28px; padding: 0 10px; }
.offer-inner{
  background: #FFFFEE;
  border: 2px solid #FFFF99;
  border-radius: 14px;
  padding: 18px 16px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.offer-badge{
  position: relative;
  width: fit-content;
  margin: 0 auto 10px;
  font-size: 18px;
  font-weight: 900;
  color: rgba(2,60,123,.92);
  padding-bottom: 5px;
}


.offer-badge::after{
  box-shadow:
    0 0 0 1px rgba(2,60,123,.12),
    0 6px 18px rgba(2,60,123,.10),
    0 0 18px rgba(29,111,214,.10);
}

.offer-lead{
  margin: 0 0 14px 0;
  font-size: 13.5px;
  color: rgba(15,23,42,.78);
  line-height: 1.75;
}
.offer-media{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(2,60,123,.14);
  border-radius: 12px;
  padding: 10px;
  margin: 12px 0;
}
.offer-list{
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(15,23,42,.82);
  font-size: 13.5px;
  line-height: 1.7;
  font-weight: 700;
}
.offer-list li::marker{ color: #F28C3A; }

.offer-note{
  margin-top: 10px;
  font-size: 12px;
  color: rgba(15,23,42,.62);
  line-height: 1.6;
}
.offer-cta{ text-align:center; padding: 0 14px 16px; margin-top: 15px;}
.offer-cta a{
  display:block;
  width:100%;
  max-width: 520px;
  margin: 0 auto;
  background: linear-gradient(180deg, #2B79E6, #023C7B);
  color:#fff;
  text-decoration:none;
  font-weight: 900;
  border-radius: 999px;
  padding: 16px 18px;
  box-shadow: 0 10px 24px rgba(2,60,123,.16);
  border: 1px solid rgba(2,60,123,.18);
  transition: .25s;
}
.offer-cta a:hover{ transform: translateY(-1px); opacity:.98; }

/* =========================
  FOOTER / INFO
========================= */
footer{
  background: rgba(255,255,255,.86);
  color: rgba(15,23,42,.62);
  padding: 28px 20px;
  text-align:center;
  font-size: 12px;
  border-top: 1px solid rgba(2,60,123,.14);
}

.point{ color: #F28C3A; font-weight: 900; font-size: 16px;}

/* ===== Author Accordion（白ガラス＋ネイビー） ===== */
.author-acc{
  margin: 26px 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(2,60,123,.14);
  background: rgba(255,255,255,.78);
  box-shadow: 0 12px 30px rgba(2,16,46,.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.author-acc summary{
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 15px;
  background:
    linear-gradient(90deg, rgba(2,60,123,.14), rgba(255,255,255,0) 58%),
    rgba(255,255,255,.86);
  border-bottom: 1px solid rgba(2,60,123,.14);
  color: rgba(2,60,123,.92);
  font-weight: 900;
  letter-spacing: .02em;
}
.author-acc summary::-webkit-details-marker{ display:none; }

.author-chevron{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(2,60,123,.06);
  border: 1px solid rgba(2,60,123,.14);
  flex: 0 0 auto;
  transition: transform .18s ease, background .18s ease, border-color .18s ease
}
.author-acc[open] .author-chevron{
  transform: rotate(180deg);
  background: rgba(242,140,58,.12);
  border-color: rgba(242,140,58,.20);
}
.author-chevron svg{ width: 16px; height: 16px; opacity: .92; }

.author-body{ padding: 16px 14px 18px; }

.author-card{
  background:
    radial-gradient(900px 220px at 30% 0%, rgba(29,111,214,.10), rgba(0,0,0,0) 55%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
  border: 1px solid rgba(2,60,123,.14);
  border-radius: 16px;
  padding: 18px 16px 16px;
  box-shadow: 0 18px 38px rgba(2,16,46,.10);
  color: rgba(15,23,42,.86);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.author-top{
  display:flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.author-avatar{
  width: 86px;
  height: 86px;
  border-radius: 999px;
  border: 1px solid rgba(2,60,123,.14);
  background: rgba(2,60,123,.06);
  box-shadow: 0 14px 26px rgba(2,16,46,.10);
}

.author-avatar img{
  width:100%;
  height:100%;
  border-radius: 999px;
  object-fit: cover;
  display:block;
}

.author-label{
  margin-top: 10px;
  font-size: 12px;
  font-weight: 900;
  color: rgba(2,60,123,.62);
  letter-spacing: .02em;
}

.author-name{
  margin-top: 4px;
  font-size: 22px;
  font-weight: 900;
  color: rgba(2,60,123,.92);
  line-height: 1.2;
}

.author-meta{
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(15,23,42,.70);
  line-height: 1.7;
}

.author-text{
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(2,60,123,.12);
  font-size: 13.5px;
  line-height: 1.95;
  color: rgba(15,23,42,.78);
  text-align: left;
  white-space: pre-line;
}

.author-sum-title{
  font-size: 14px;
}

.author-text .t-accent{
  color: #F28C3A;
  font-weight: 900;
  background: linear-gradient(transparent 70%, rgba(250,226,224,.92) 70%);
}
.author-footnote{
  color: rgba(15,23,42,.62);
  border: 1px solid rgba(2,60,123,.12);
  background: rgba(255,255,255,.72);
}

@media (max-width:600px){
  .author-card{ padding: 16px 14px 14px; }
  .author-name{ font-size: 21px; }
  .author-text{ font-size: 13.5px; }
}
