/* =============================
   BASE
============================= */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #e9edf2;
}

/* =============================
   CV WRAPPER
============================= */

.cvb-cv.cvb-modern {
  max-width: 794px;
  margin: 40px auto;
  background: #fff;
}

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

.cvb-modern-grid {
  display: grid;
  grid-template-columns: 4fr 1.5fr;
}

/* PRIMARY COLUMN (HEADER + MAIN) */
.cvb-modern-primary {
  display: grid;
  grid-template-columns: 4fr 1.5fr;
  grid-template-rows: auto auto;
}

/* =============================
   TOP BLUE BAND
============================= */

.cvb-modern-top-left,
.cvb-modern-top-right {
  background: #4a6fa5;
  color: #fff;
}

/* LEFT: TITLE BLOCK */
.cvb-modern-top-left {
  padding: 28px;
  text-align: center;
}

.cvb-modern-top-left h1 {
  margin: 0;
  font-size: 30px;
}

.cvb-modern-title {
  margin-top: 6px;
  font-size: 16px;
  color: #e6eef7;
}

/* CONTACT DETAILS */
.cvb-modern-contact {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.cvb-modern-contact li {
  font-size: 14px;
  margin-bottom: 4px;
}

/* IMAGE */
.cvb-modern-top-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

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

.cvb-modern-main {
  padding: 30px;
  text-align: left;
  grid-column: 1 / -1; /* span full primary width */
}

.cvb-modern-main section {
  margin-bottom: 28px;
}

/* MAIN HEADINGS */
.cvb-modern-main h3 {
  text-align: center;
}

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

.cvb-modern-side {
  background: #4a6fa5;
  color: #fff;
  padding: 20px 10px;
  text-align: left;
}

/* SIDEBAR CARDS */
.cvb-modern-side .cvb-card {
  margin-bottom: 20px;
}

/* SIDEBAR HEADINGS */
.cvb-modern-side h4 {
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 6px;
  text-align: center;
}

/* =============================
   SKILLS
============================= */

.cvb-skills-list {
  margin: 0;
}

.cvb-skills-list div {
  margin-bottom: 6px;
}

/* =============================
   ACTIONS
============================= */

.cvb-actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

/* =============================
   PRINT (STABLE & SAFE)
============================= */

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

  body {
    background: #fff;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  /* Hide buttons */
  .cvb-actions {
    display: none !important;
  }

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

  /* KEEP PRIMARY CONTENT TOGETHER */
  .cvb-modern-primary {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .cvb-modern-top-left,
  .cvb-modern-top-right,
  .cvb-modern-main {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}
