/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.0
 Text Domain:  bricks
*/



.hero{
      padding:5px 0 18px;
    }
    .hero-card{
      position:relative;
      overflow:hidden;
      border:1px solid var(--line);
     /* background:
        radial-gradient(circle at top left, rgba(255,255,255,.07), transparent 32%),
        radial-gradient(circle at bottom right, rgba(231,220,194,.10), transparent 24%),
        linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
      box-shadow:var(--shadow);
      border-radius:34px;
      padding:28px;*/
    }
    .eyebrow{
      margin:0 0 10px;
      color:var(--muted);
      text-transform:uppercase;
      letter-spacing:.24em;
      font-size:12px;
      font-weight:700;
    }
    h1{
      margin:0;
      font-size:clamp(38px,8vw,84px);
      line-height:.95;
      letter-spacing:-.04em;
      font-weight:500;
    }
    .subtitle{
      max-width:760px;
      color:var(--muted);
      font-size:clamp(15px,2.4vw,18px);
      margin:18px 0 0;
    }
    .meta{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin-top:20px;
    }
    .chip{
      border:1px solid var(--line);
      background:rgba(255,255,255,.04);
      padding:10px 14px;
      border-radius:999px;
      color:#deded6;
      font-size:13px;
    }
    .featured{
      margin-top:22px;
      border:1px solid var(--line);
      background:var(--panel);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
      padding:26px;
    }
    .featured blockquote{
      margin:0;
      font-size:clamp(24px,4vw,40px);
      line-height:1.15;
      letter-spacing:-.03em;
      font-weight:400;
      max-width:760px;
    }
    .featured .source{
      margin-top:16px;
      color:var(--muted);
      font-size:14px;
    }
    .section{
      margin-top:26px;
    }
    .section-title{
      margin:0 0 14px;
      font-size:12px;
      color:var(--muted);
      text-transform:uppercase;
      letter-spacing:.24em;
      font-weight:700;
    }
    .quote-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:16px;
    }
    .quote-card{
      padding:20px;
      border:1px solid #222;
      border-radius:24px;
      
      min-height:100%;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .quote-card blockquote{
      margin:0;
      font-size:22px;
      line-height:1.25;
      letter-spacing:-.02em;
    }
    .quote-card .summary{
      margin:0;
      color:#e9e9e2;
      font-size:15px;
      line-height:1.65;
    }
    .quote-card .source{
      margin-top:14px;
      color:#fff;
      font-size:13px;
    }
    .footer-note{
      margin-top:22px;
      border:1px solid var(--line);
      background:var(--panel-2);
      border-radius:22px;
      padding:18px;
      color:var(--muted);
      font-size:13px;
    }

    @media (max-width: 980px){
      .quote-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
      }
    }
    @media (max-width: 640px){
      .wrap{padding:16px}
      .hero-card{padding:22px}
      .featured{padding:20px}
      .quote-grid{
        grid-template-columns:1fr;
      }
      .quote-card{
        padding:18px;
        border-radius:20px;
      }
      .quote-card blockquote{
        font-size:20px;
      }
      .quote-card .summary{
        font-size:14px;
      }
    }
 


    /*Custom */
    
    .quote-card p {
    color: #eee;
}