/* =========================
   新着予想記事（カード）
========================= */
.br-yoso-pickup{
  margin:18px 0 22px;
}

.br-yoso-pickup__list{
  display:flex;
  flex-direction:column;
  gap:12px;
}

/* card */
.br-yoso-card{
  border-radius:8px;
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  
  overflow:hidden;
}

.br-yoso-card__link{
  display:flex;
  gap:12px;
  padding:12px;
  text-decoration:none;
  color:inherit;
  align-items:stretch;
}

/* ★ サムネ50% */
.br-yoso-card__thumb{
  width:50%;
  flex:0 0 50%;
  border-radius:7px;
  overflow:hidden;
  background:rgba(15,23,42,.06);
}

.br-yoso-card__img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.br-yoso-card__ph{
  width:100%;
  height:100%;
  background:
    radial-gradient(80px 60px at 30% 30%, rgba(255,255,255,.55), rgba(255,255,255,0)),
    linear-gradient(135deg, rgba(15,23,42,.08), rgba(15,23,42,.02));
}

/* 本文側 */
.br-yoso-card__body{
  flex:1;
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:4px;
}

/* ★ 日付を先頭・右寄せ */
.br-yoso-card__d{
  font-size:12px;
  font-weight:800;
  color:rgba(15,23,42,.58);
  text-align:right;
}

/* ★ タイトル1行省略 */
.br-yoso-card__t{
  font-size:15px;
  font-weight:900;
  line-height:1.3;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* 本文2行 */
.br-yoso-card__x{
  font-size:13px;
  line-height:1.45;
  color:rgba(15,23,42,.78);
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  overflow:hidden;
}

.br-yoso-card:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 30px rgba(0,0,0,.10);
}

/* スマホ微調整 */
@media (max-width:768px){
  .br-yoso-card__link{
    padding:10px;
    gap:10px;
  }
  .br-yoso-card__t{
    font-size:14px;
  }
  .br-yoso-card__x{
    font-size:12px;
  }
}


/* 会員登録CTA */
/* 会員登録CTA（落ち着き版） */
.br-register-cta{
  margin:14px 0 18px; 
}

.br-register-cta__link{
  display:block;
  text-align:center;
  padding:13px 12px;
  border-radius:8px;              /* ←角丸控えめ */

  font-weight:700;                /* ←少しだけ軽く */
  font-size:14px;
  text-decoration:none;

  color:#383838;
  background:#bfd2fdbb;             /* ←単色で落ち着かせる */

  box-shadow:0 4px 12px rgba(15,23,42,.15); /* ←影弱め */
  transition:.15s;
}

.br-register-cta__link:hover{
  transform:translateY(-1px);
  box-shadow:0 6px 14px rgba(15,23,42,.18);
}

.br-register-cta__link:active{
  transform:translateY(0);
  box-shadow:0 3px 8px rgba(15,23,42,.18);
}
