/* pages.home.css — homepage-only styles extracted from index */

/* ===============================
       Home layout adjustments (inline)
    =============================== */

    /* Reduce vertical whitespace between rows/sections */
    .section{
      padding: 40px 0;
    }

    /* Titles */
    .home-section-title{ margin:6px 0 12px; }

    /* Wide cards span 2 columns on desktop */
    @media (min-width: 981px){
      .home-span-2{ grid-column: span 2; }
    }

    /* Vendors outreach */
    .home-vendors .card{
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .home-vendors .btn-row,
    .home-interviews .btn-row{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:10px;
    }

    /* News ticker */
    .home-news .newsTicker{
      position:relative;
      height:220px;
      overflow:hidden;
      border-radius:14px;
      border:1px solid var(--c-border);
      background:var(--c-surface);
      padding:14px 16px;
    }
    .home-news .newsTicker::after{
      content:"";
      position:absolute;
      left:0; right:0; bottom:0;
      height:28px;
      background: linear-gradient(to bottom, rgba(248,250,252,0), rgba(248,250,252,1));
      pointer-events:none;
    }
    .home-news .newsTicker ul{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:10px;
      animation: newsScroll 26s linear infinite;
    }
    .home-news .newsTicker:hover ul{ animation-play-state: paused; }

    .home-news .newsTicker a{
      display:block;
      padding:10px 12px;
      border-radius:12px;
      background:#fff;
      border:1px solid var(--c-border);
      box-shadow: 0 10px 24px rgba(0,0,0,.06);
      text-decoration:none;
      font-weight:700;
      color: var(--c-text);
    }
    .home-news .newsTicker a span{
      display:block;
      margin-top:4px;
      font-weight:500;
      font-size:.9rem;
      color: var(--c-muted);
    }
    .home-news .newsTicker a:hover{ text-decoration:none; filter:brightness(.99); }

    @keyframes newsScroll{
      0%   { transform: translateY(0); }
      100% { transform: translateY(-50%); }
    }

    /* Interviews list (Latest Conversations) */
    .home-interviews .interview-card{
      display:flex;
      gap:14px;
      align-items:flex-start;
    }
    .home-interviews .avatar{
      width:52px;
      height:52px;
      border-radius:14px;
      border:1px solid var(--c-border);
      background:var(--c-surface);
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:900;
      color: var(--c-ink);
      flex:0 0 auto;
    }
    .home-interviews .meta{
      display:flex;
      flex-direction:column;
      gap:4px;
    }
    .home-interviews .meta .name{
      font-weight:800;
      color: var(--c-text);
      margin:0;
    }
    .home-interviews .meta .role{
      font-size:.9rem;
      color: var(--c-muted);
      margin:0;
    }
    .home-interviews .meta .topic{
      font-size:.95rem;
      color: var(--c-text);
      margin-top:6px;
    }
    .home-interviews .meta a{
      font-weight:800;
      text-decoration:none;
    }
    .home-interviews .meta a:hover{ text-decoration:underline; }

    @media (max-width: 560px){
      .home-interviews .interview-card{ gap:12px; }
      .home-interviews .avatar{ width:48px; height:48px; }
    }
  
    /* Row 3 stack spacing — force separation even if flex gap is ignored/overridden */
    .home-stack{ display:flex; flex-direction:column; height:100%; gap:24px !important; }
    .home-stack > .card + .card{ margin-top:24px !important; }
    .home-stack .home-vendors-top{ margin-bottom:0 !important; } /* explicit, but gap/margin handles spacing */
