:root {
  --brand: #0d6efd;
  --brand-2: #20c997;
}

body {
  background: #f6f9fc;
}

.cv-card {
  border: 0;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.cv-header {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  border-radius: 1rem 1rem 0 0;
  padding: 2.2rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.badge-pill {
  border-radius: 50rem;
}

.avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #ffffff22;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.75rem;
  border: 2px solid #ffffff55;
}

.section-title {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #0f172a;
}

.divider {
  height: 2px;
  background: linear-gradient(90deg, var(--brand), transparent);
  opacity: .4;
}

.tag {
  background: #eef4ff;
  color: #0d47a1;
  border: 1px solid #e2e8ff;
  padding: .25rem .6rem;
  border-radius: 50rem;
  font-size: .85rem;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e8eef7;
}

.timeline-item {
  position: relative;
  padding-left: 2.25rem;
  margin-bottom: 1rem;
}

.timeline-item .dot {
  position: absolute;
  left: 2px;
  top: .2rem;
  width: .9rem;
  height: .9rem;
  background: var(--brand);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px #e8eef7;
}

.list-compact li {
  margin-bottom: .35rem;
}

.btn-print {
  border-radius: 50rem;
}

@media print {
  body {
    background: #fff;
  }

  .cv-card {
    box-shadow: none;
  }

  .btn-toolbar,
  .navbar,
  footer {
    display: none !important;
  }

  a[href]::after {
    content: "";
  }
}