/* =============================
   HIGHLIGHT CV (PORTRAIT)
============================= */

.cvb-cv.cvb-highlight {
  max-width: 794px; /* A4 portrait */
  margin: 40px auto;
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
}

/* =============================
   LAYOUT
============================= */

.cvb-highlight-body {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  min-height: 1120px; /* A4 feel */
}

/* =============================
   MAIN
============================= */

.cvb-highlight-main {
  padding: 40px;
  text-align: left;
}

.cvb-highlight-main h1 {
  margin: 0;
  font-size: 34px;
  text-align: center;
}

.cvb-highlight-main h2 {
  margin: 6px 0 18px;
  font-size: 18px;
  font-weight: normal;
  text-align: center;
}

.cvb-highlight-contact {
  font-size: 14px;
  margin-bottom: 16px;
  text-align: center;
}

/* Separator under contact */
.cvb-highlight-contact::after {
  content: "";
  display: block;
  width: 60%;
  height: 1px;
  background: #ccc;
  margin: 16px auto 24px auto;
}

/* Personal Statement heading */
.cvb-highlight-main .cvb-highlight-summary::before {
  content: "Personal Statement";
  display: block;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-align: center;
  margin-bottom: 12px;
}

.cvb-highlight-summary {
  margin-bottom: 30px;
  line-height: 1.2;
}

.cvb-highlight-main h3 {
  margin-top: 30px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 6px;
  text-align: center;
}

/* =============================
   SIDEBAR
============================= */

.cvb-highlight-side {
  background: #5b3a8e;
  color: #fff;

  /* IMPORTANT */
  padding: 0; /* no padding on container */
}

/* PHOTO — FLUSH */
.cvb-highlight-photo img {
  display: block;
  width: 100%;
  border-radius: 0;
  margin: 0;
}

/* =============================
   SIDEBAR BLOCKS (10px padding)
============================= */

.cvb-highlight-block {
  padding: 15px;
  margin-bottom: 20px;
  text-align: left;
}

.cvb-highlight-block h4 {
  margin-bottom: 12px;
  font-size: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 6px;
  text-align: center;
}

/* REMOVE BULLETS */
.cvb-highlight-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cvb-highlight-block li {
  margin-bottom: 6px;
  text-align: left;
}
.cvb-actions {
  display: flex;
  justify-content: flex-start; /* force LEFT */
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}
.cvb-highlight-photo img {
  filter: grayscale(100%);
}
/* =============================
   PRINT
============================= */

@media print {
  @page {
    size: A4 portrait;
    margin: 15mm;
  }

  body {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .cvb-cv.cvb-highlight {
    margin: 0;
  }
}
