/* =========================
    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); }

.container{ max-width: 960px; margin-top: -40px; padding: 20px 10px; }

/* =========================
  HERO（背景画像はそのまま／被せ色を白寄りに）
========================= */
.hero{
  position: relative;
  overflow: hidden;
  padding: 20px 15px;
  text-align: center;
}

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

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

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


/* =========================
  見出し装飾
========================= */
.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; /* これで4列を完全に等倍にします */
  border-collapse: collapse;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(2,60,123,.96);
  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: 13px;
  font-weight: 700;
  color: rgba(15,23,42,.82);
}

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

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

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

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

/* =========================
  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-ribbon-header {
  display: flex;
  align-items: center;
  height: 54px;
  margin: 0;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(90deg, #061d4f, #001947);
}

.job-ribbon-rank {
  position: relative;
  width: 150px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-weight: 900;
  clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
  text-shadow: 0 1px 0 rgba(255, 255, 255, .45);
}

/* --- ランク別カラー設定 --- */

/* 1位：ゴールド（元の色を維持） */
.rank-1 .job-ribbon-rank {
  background: linear-gradient(135deg, #fff1a6 0%, #f6c343 40%, #b87900 100%);
  color: #4a2800;
}

/* 2位：シルバー */
.rank-2 .job-ribbon-rank {
  background: linear-gradient(135deg, #ffffff 0%, #d1d1d1 40%, #8e8e8e 100%);
  color: #333;
}

/* 3位：ブロンズ */
.rank-3 .job-ribbon-rank {
  background: linear-gradient(135deg, #ffd1b3 0%, #e89b6b 40%, #a05a2c 100%);
  color: #3d1f00;
}

/* 4位以下：ブルーグレー（落ち着いた色） */
.rank-4 .job-ribbon-rank {
  background: linear-gradient(135deg, #e0e6ed 0%, #b0bbc9 40%, #788699 100%);
  color: #2c3e50;
}

/* --- テキスト・その他パーツ --- */
.job-ribbon-rank span { font-size: 18px; }
.job-ribbon-rank strong { font-size: 42px; line-height: 1; }

.job-ribbon-text {
  flex: 1;
  color: #fff;
  font-weight: 900;
  font-size: 20px;
  padding-left: 14px;
  letter-spacing: .02em;
  white-space: nowrap;
}

.job-ribbon-text span { color: #ffe100; }
.crown { margin-right: 5px; }
.sparkle { margin-left: 8px; }

/* レスポンシブ */
@media(max-width:480px) {
  .job-ribbon-header { height: 46px; border-radius: 16px 16px 0 0; }
  .job-ribbon-rank { width: 118px; height: 46px; }
  .job-ribbon-rank span { font-size: 15px; }
  .job-ribbon-rank strong { font-size: 34px; }
  .job-ribbon-text { font-size: 14px; padding-left: 8px; }
}

.job-body{
  padding: 0 16px 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: 0 0 24px;
}

.job-specs{
  padding: 0;
}

@media (max-width:768px){
  .job-main-info{
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 0 0 24px;
  }
}
/* 画像を潰さず正方形に寄せる（色だけ） */
/* 画像ラッパー：上左右ピッタリに張り付ける */
.job-img{
  margin-left: -16px;
  margin-right: -16px;
  margin-top: 0px;
  width: calc(100% + 32px);
  border-radius: 14px 14px 0 0; /* 上だけ角丸 */
  overflow: hidden;
  background: transparent;
}

/* 画像：余白を出さずに面いっぱい */
.job-img img{
  width:100%;
  height:100%;
  object-fit: cover;   /* ← contain → 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;
  position: relative;
  padding-left: 34px; /* アイコン分の余白 */
}

.spec-table th::before{
  position:absolute;
  left:10px;
  top:50%;
  transform: translateY(-50%);
  font-size: 14px;
}

.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);
}

/* ジャンル */
.spec-table tr:nth-child(1) th::before{
  content:"📊";
}

/* タイパ */
.spec-table tr:nth-child(2) th::before{
  content:"⭐";
}

/* 作業時間 */
.spec-table tr:nth-child(3) th::before{
  content:"⏱";
}

/* 収入 */
.spec-table tr:nth-child(4) th::before{
  content:"💰";
}

/* サポート */
.spec-table tr:nth-child(5) th::before{
  content:"💬";
}

.analysis-deep{
  position: relative;
  background:
    radial-gradient(circle at 0% 100%, rgba(255,221,80,.22), transparent 34%),
    radial-gradient(circle at 100% 0%, rgba(255,221,80,.18), transparent 30%),
    linear-gradient(180deg,#fffdf5,#fff);
  border: 2px solid #f4c21f;
  border-radius: 16px;
  padding: 18px 14px 18px;
  margin-top: 0px;
  overflow: hidden;
}

.analysis-deep h4{
  position: relative;
  width: fit-content;
  margin: -8px auto 18px;
  padding: 9px 34px;
  background: linear-gradient(135deg,#2B79E6,#023C7B);
  color:#fff;
  font-size: 17px;
  font-weight: 900;
  text-align:center;
  line-height:1.3;
  box-shadow: 0 4px 10px rgba(7,139,52,.24);
}

.analysis-deep h4::before,
.analysis-deep h4::after{
  content:"";
  position:absolute;
  top:0;
  width:22px;
  height:100%;
  background:inherit;
}

.analysis-deep h4::before{
  left:-14px;
  clip-path:polygon(100% 0,0 50%,100% 100%);
}

.analysis-deep h4::after{
  right:-14px;
  clip-path:polygon(0 0,100% 50%,0 100%);
}

.analysis-list{
  margin:0;
  padding:0;
  list-style:none;
}

.analysis-item{
  position: relative;
  display:flex;
  align-items:center;
  gap:14px;
  background:#fff;
  border-radius:18px;
  padding:16px 16px 16px 58px;
  margin:14px 0;
  border:1px solid rgba(244,194,31,.35);
  box-shadow: 0 8px 18px rgba(2,16,46,.07);
}

.analysis-num{
  position:absolute;
  left:14px;
  top:50%;
  transform:translateY(-50%);
  width:38px;
  height:38px;
  border-radius:50%;
  background:linear-gradient(135deg,#2B79E6,#023C7B);
  color:#fff;
  font-weight:900;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  box-shadow:0 4px 9px rgba(7,139,52,.28);
  flex-shrink:0;
}

.analysis-text{
  flex:1;
}

.analysis-text h5{
  display:inline;
  margin:0;
  font-size:16px;
  line-height:1.45;
  font-weight:900;

  /* ここ重要 */
  color:#0f2a44;

  /* 軽く強調 */
  background: linear-gradient(transparent 65%, rgba(255,215,0,.45) 65%);
}

.analysis-text p{
  margin:8px 0 0;
  font-size:13px;
  line-height:1.75;
  color:rgba(15,23,42,.82);
  font-weight:500;
}

.highlight-red{
  color:rgba(15,23,42,.82);
  font-weight:500;
  background:none;
}

@media(max-width:480px){
  .analysis-deep{
    padding:16px 10px;
  }

  .analysis-deep h4{
    font-size:16px;
    padding:8px 24px;
  }

  .analysis-item{
    padding:14px 12px 14px 54px;
    border-radius:16px;
  }

  .analysis-num{
    left:10px;
    width:34px;
    height:34px;
    font-size:13px;
  }

  .analysis-text h5{
    font-size:14.5px;
  }

  .analysis-text p{
    font-size:12.5px;
  }
}

.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: 24px;
}

.cta-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  width:100%;
  max-width: 520px;
  margin: 0 auto;
  background: linear-gradient(180deg, #19D766, #06A943);
  color:#fff !important;
  text-align:center;
  padding: 18px 18px;
  border-radius: 999px;
  text-decoration:none !important;
  font-weight: 900;
  font-size: 18px;
  box-shadow: 0 8px 0 #078536, 0 14px 24px rgba(6,169,67,.22);
  border: 2px solid rgba(255,255,255,.75);
  transition: .25s;
}

.cta-btn::before{
  content:"▶";
  font-size: 14px;
  background:#fff;
  color:#06A943;
  width:26px;
  height:26px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.cta-btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.03);
}

/* 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: 14px;
}

/* =========================
  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; }
}
