/* =========================================================
   Corporate (cr-)
   File: /css/pages/corporate.css
   ========================================================= */

.cr-section{ padding:70px 0; }
.cr-grid2{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:start;
}
@media(max-width:980px){ .cr-grid2{ grid-template-columns:1fr; } }

.cr-h2{ margin:0; font-size:28px; font-weight:950; letter-spacing:-.3px; }
.cr-p{ color:var(--muted); line-height:1.75; margin-top:10px; max-width:860px; }

.cr-list{ display:grid; gap:10px; margin-top:14px; }
.cr-item{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:14px;
  box-shadow:0 1px 0 rgba(15,23,42,.04);
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}
.cr-item strong{ font-weight:950; }
.cr-item span{ color:var(--muted); font-weight:800; }

.cr-box{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
  box-shadow: var(--shadow);
}
.cr-box__t{ font-weight:950; }
.cr-ul{ margin:10px 0 0; padding-left:18px; color:var(--muted); line-height:1.7; }

.cr-pillRow{ display:flex; gap:8px; flex-wrap:wrap; margin-top:10px; }
.cr-pill{
  background:#fff;
  border:1px solid var(--border);
  border-radius:999px;
  padding:6px 10px;
  font-weight:900;
  color:var(--muted);
  font-size:.85rem;
}

/* =========================
   Corporate Page Side Media
========================= */
.cr-side{
  display:grid;
  gap:14px;
}

.cr-photo{
  background:#fff;
  border:1px solid var(--border, #e6eaf2);
  border-radius:18px;
  overflow:hidden;
  box-shadow: 0 18px 60px rgba(15,23,42,.08);
}

.cr-photo img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}

@media(max-width:980px){
  .cr-photo img{ height:220px; }
}

/* =========================
   Corporate Results Band
========================= */
.cr-resultsBand{
  padding:70px 0;
  background:#f6f8fb;
  border-top:1px solid #e6eaf2;
}

.cr-resultsGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:center;
}

@media(max-width:980px){
  .cr-resultsGrid{
    grid-template-columns:1fr;
  }
}

/* =========================
   Corporate: hero image support
========================= */
.sv-hero--img{
  position:relative;
  color:#fff;
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
}
.sv-hero--img::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(rgba(0,0,0,.62), rgba(0,0,0,.62));
}
.sv-hero--img .wrap{ position:relative; z-index:2; }

/* =========================
   Corporate: right-side images
========================= */
.cr-photo{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  overflow:hidden;
  box-shadow: var(--shadow);
}
.cr-photo img{
  width:100%;
  height:320px;
  object-fit:cover;
  display:block;
}
.cr-photo--lg img{ height:360px; }
@media(max-width:980px){
  .cr-photo img{ height:260px; }
  .cr-photo--lg img{ height:280px; }
}

/* =========================
   Corporate Results Band
========================= */
.cr-resultsBand{
  padding:70px 0;
  background:var(--bg);
  border-top:1px solid var(--border);
}
.cr-resultsGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:center;
}
@media(max-width:980px){
  .cr-resultsGrid{ grid-template-columns:1fr; }
}