@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;600;700&display=swap");

/* ─── Variables ─────────────────────────────────────────────── */
:root {
  --accent:       #0f766e;
  --accent-light: #ccfbf1;
  --dark:         #1e2a2a;
  --gray:         #3e3e3e;
  --text:         #4a4a4a;
  --text-light:   #666766;
  --border:       #e0e0e0;
  --bg-subtle:    #f8fffe;
}

/* ─── Reset / Base ──────────────────────────────────────────── */
* {
  font-family: Raleway, sans-serif;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  outline: none !important;
}

html {
  font-size: 62.5%;
}

.container-fluid {
  padding: 0 8% !important;
  max-width: 100%;
  overflow-x: hidden;
}

ul {
  list-style: circle;
}

li::marker {
  color: var(--accent);
}

p {
  font-size: 2.3rem;
  letter-spacing: 0.08rem;
  color: var(--text-light);
  word-break: break-word;
  hyphens: auto;
  margin-bottom: 0.5rem;
}

/* ─── Header ────────────────────────────────────────────────── */
.header {
  padding-top: 14rem;
  padding-bottom: 8rem;
  direction: ltr;
  margin-bottom: 3rem;
  border-top: 5px solid var(--accent);
}

.headLine {
  width: 0.225693rem;
  top: 5px;           /* debajo del borde de acento */
  left: 1rem;
  height: 11.9617rem;
  background-color: var(--accent);
}

.middleLine {
  width: 0.225693rem;
  bottom: 3.1597rem;
  left: 1rem;
  height: 5.64232rem;
  background-color: var(--accent);
}

.firstName {
  font-weight: 300;
  text-transform: uppercase;
  word-break: break-word;
  color: var(--gray);
  font-size: 6.65793rem;
  line-height: 1.68;
  letter-spacing: 3.5rem;
  margin-bottom: 1rem;
  direction: ltr;
}

.lastName {
  font-weight: 700;
  font-size: 9rem;
  text-transform: uppercase;
  word-break: break-word;
  padding-right: 4rem;
  color: var(--dark);
  line-height: 1.09;
  letter-spacing: 3.8rem;
  direction: ltr;
}

.jobTitle {
  padding-right: 0;
  margin-top: 3.5rem;
  color: var(--accent);
}

.jobTitle .bi-circle-fill {
  color: var(--accent);
  font-size: 1.2rem;
}

.jobTitle span {
  padding-left: 1rem;
  letter-spacing: 0.6rem;
  text-transform: uppercase;
  word-break: break-word;
  direction: ltr;
  color: var(--accent);
  font-size: 2.8rem;
  font-weight: 600;
}

/* ─── Foto ──────────────────────────────────────────────────── */
.photo-wrapper {
  width: 27.2rem;
  height: 27.2rem;
  border-radius: 50%;
  background: linear-gradient(110deg, #e0f2f1 30%, #f0fdfa 50%, #e0f2f1 70%);
  background-size: 200% 100%;
  animation: photo-skeleton 1.4s ease infinite;
}

@keyframes photo-skeleton {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.photo {
  width: 27.2rem;
  height: 27.2rem;
  max-height: 270px;
  -o-object-fit: cover;
     object-fit: cover;
  border-color: var(--accent) !important;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.photo.photo-loaded {
  opacity: 1;
}

/* ─── Iconos de contacto ────────────────────────────────────── */
.icon {
  width: 5rem;
  height: 5rem;
  font-size: 2.3rem;
  color: white;
  background-color: var(--accent);
  border-radius: 50%;
  padding: 0.7rem;
}

a p {
  word-break: break-all;
  color: var(--text-light);
}

.list-item {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.list-item:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

/* ─── Títulos de sección ────────────────────────────────────── */
.title {
  width: 100%;
  font-weight: 700;
  font-size: 3.6rem;
  text-transform: uppercase;
  line-height: 4rem;
  border-bottom: 3px solid var(--accent);
  padding-bottom: 1.2rem;
  color: var(--dark);
  letter-spacing: 0.8rem;
  margin-bottom: 2rem;
}

.personal-details .title {
  padding-top: 4rem;
}

/* ─── Links ─────────────────────────────────────────────────── */
.links-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1rem 1.4rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-subtle);
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

.link-card:hover {
  border-color: var(--accent);
  background: var(--accent-light);
  transform: translateX(4px);
}

.link-card-icon {
  width: 4.2rem;
  height: 4.2rem;
  min-width: 4.2rem;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.link-card-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  overflow: hidden;
}

.link-card-label {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.05rem;
}

.link-card-url {
  font-size: 1.7rem;
  color: var(--text-light);
  word-break: break-all;
  font-weight: 400;
  letter-spacing: 0;
}

/* ─── Skills (pill tags) ────────────────────────────────────── */
.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.skill-item {
  background: var(--accent-light);
  border: 1px solid var(--accent);
  border-radius: 20px;
  padding: 0.5rem 1.4rem;
  transition: all 0.2s ease;
}

.skill-item:hover {
  background: var(--accent);
}

.skill-item:hover p {
  color: white;
}

.skill-item p {
  margin: 0;
  font-size: 1.8rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.02rem;
  white-space: nowrap;
}

/* ─── Bullets / Timeline ────────────────────────────────────── */
.bullet {
  position: relative;
}

.bullet i {
  font-size: 2.4rem;
  color: var(--accent);
}

.bullet:before {
  content: "";
  position: absolute;
  left: 1.9rem;
  width: 0.3rem;
  height: 70%;
  background-color: var(--border);
  margin-top: 4rem;
}

.record {
  padding-top: 2rem;
}

.record p {
  width: 100%;
  font-size: 2.4rem;
  line-height: 1.5;
  color: var(--text-light);
  word-break: break-word;
  display: block;
}

/* ─── Experiencia laboral ───────────────────────────────────── */
.job-header {
  border-left: 3px solid var(--accent);
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.job-title-text {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

.job-dates {
  font-size: 1.9rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0;
}

.job-employer {
  font-size: 2.1rem;
  font-style: italic;
  color: var(--text-light);
  font-weight: 600;
}

/* ─── Cursos ────────────────────────────────────────────────── */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 1rem;
}

.course-item {
  background: #fff;
  padding: 1.2rem 1.4rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  transition: all 0.2s ease;
}

.course-item:hover {
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.12);
  transform: translateY(-2px);
}

.course-name {
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.course-company {
  font-size: 1.7rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.course-date {
  font-size: 1.5rem;
  color: #999;
  font-style: italic;
}

/* ─── Stats bar (header) ────────────────────────────────────── */
.stats-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

.stat-value {
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: 0.05rem;
}

.stat-label {
  font-size: 1.6rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .stats-bar {
    justify-content: center;
    gap: 1.5rem 2.5rem;
    margin-top: 2rem;
  }
  .stat-item {
    align-items: center;
  }
  .stat-value {
    font-size: 3.2rem;
  }
  .stat-label {
    font-size: 1.4rem;
  }
}

/* ─── Notable Clients ───────────────────────────────────────── */
.notable-clients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.notable-client-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.4rem;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--bg-subtle) 0%, var(--accent-light) 100%);
  border: 1px solid rgba(15, 118, 110, 0.2);
  transition: all 0.2s ease;
}

.notable-client-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.15);
  transform: translateY(-2px);
}

.client-icon {
  font-size: 2.8rem;
  color: var(--accent);
  min-width: 2.8rem;
}

.client-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  overflow: hidden;
}

.client-name {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
}

.client-desc {
  font-size: 1.6rem;
  color: var(--text-light);
  line-height: 1.3;
}

@media (max-width: 768px) {
  .notable-clients-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Certifications ────────────────────────────────────────── */
.certifications-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.cert-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.4rem;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  transition: all 0.2s ease;
  break-inside: avoid;
}

.cert-card:hover {
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.12);
  transform: translateY(-2px);
}

.cert-icon {
  font-size: 2.8rem;
  color: var(--accent);
  min-width: 2.8rem;
  margin-top: 0.2rem;
}

.cert-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.cert-name {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.cert-issuer {
  font-size: 1.6rem;
  color: var(--accent);
  font-weight: 600;
}

.cert-date {
  font-size: 1.4rem;
  color: #999;
  font-style: italic;
}

@media (max-width: 768px) {
  .certifications-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Achievement bullets ───────────────────────────────────── */
.achievement-line {
  padding-left: 1.5rem;
  text-indent: -1.5rem;
  margin-bottom: 0.6rem !important;
  line-height: 1.6;
}

/* ─── Li / Span base ────────────────────────────────────────── */
li {
  font-family: Raleway, sans-serif;
  line-height: 1.5;
  font-size: 2.6rem;
  color: var(--text-light);
}

span {
  color: var(--text-light);
  font-size: 2.2rem;
  line-height: 1.2;
  letter-spacing: 0.3rem;
}

/* ─── Botón imprimir ────────────────────────────────────────── */
.btn-group-fab {
  position: fixed;
  width: 50px;
  height: auto;
  right: 20px;
  bottom: 20px;
}

.btn-group-fab div {
  position: relative;
  width: 100%;
  height: auto;
}

.btn-group-fab .btn {
  position: absolute;
  bottom: 0;
  border-radius: 50%;
  display: block;
  width: 50px;
  height: 50px;
  margin: 4px auto;
  background-color: var(--accent) !important;
  border-color: var(--accent) !important;
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.35);
}

/* ─── Separador entre columnas (desktop) ────────────────────── */
@media (min-width: 992px) {
  .personal-details {
    border-right: 1px solid var(--border);
    padding-right: 3.5rem;
  }

  .main-content {
    padding-left: 3.5rem;
  }
}

/* ─── Responsive 1200px ─────────────────────────────────────── */
@media (max-width: 1200px) {
  .container-fluid {
    padding: 0 5% !important;
  }

  .firstName {
    font-size: 5rem;
    letter-spacing: 2rem;
  }

  .lastName {
    font-size: 7rem;
    letter-spacing: 2.8rem;
  }
}

/* ─── Responsive 992px ──────────────────────────────────────── */
@media (max-width: 992px) {
  .container-fluid {
    padding: 0 3% !important;
  }

  .header {
    padding-top: 10rem;
    padding-bottom: 5rem;
  }

  .firstName {
    font-size: 4rem;
    letter-spacing: 1.5rem;
  }

  .lastName {
    font-size: 5.5rem;
    letter-spacing: 2rem;
  }

  .jobTitle span {
    font-size: 2.4rem;
    letter-spacing: 0.5rem;
  }

  .photo-wrapper {
    width: 20rem;
    height: 20rem;
  }

  .photo {
    width: 20rem;
    height: 20rem;
    max-height: 200px;
  }

  .title {
    font-size: 3.2rem;
    letter-spacing: 0.6rem;
  }

  p {
    font-size: 2.1rem;
  }

  li {
    font-size: 2.4rem;
  }

  .courses-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Responsive 768px ──────────────────────────────────────── */
@media (max-width: 768px) {
  .container-fluid {
    padding: 0 4% !important;
  }

  .header {
    padding-top: 6rem;
    padding-bottom: 4rem;
    text-align: center;
  }

  .firstName {
    font-size: 3.5rem;
    letter-spacing: 1rem;
    text-align: center;
  }

  .lastName {
    font-size: 4.5rem;
    letter-spacing: 1.2rem;
    text-align: center;
    padding-right: 0 !important;
  }

  .jobTitle {
    text-align: center;
    margin-top: 2rem;
  }

  .jobTitle span {
    font-size: 2rem;
    letter-spacing: 0.3rem;
  }

  .photo-wrapper {
    width: 15rem;
    height: 15rem;
    margin: 2rem auto;
  }

  .photo {
    width: 15rem;
    height: 15rem;
    max-height: 150px;
    display: block !important;
  }

  .personal-details {
    margin-right: 0 !important;
    margin-bottom: 3rem;
    border-right: none !important;
    padding-right: 0 !important;
    border-bottom: 1px solid var(--border);
    padding-bottom: 3rem;
  }

  .main-content {
    padding-left: 0 !important;
    margin-top: 2rem;
  }

  .title {
    font-size: 2.8rem;
    letter-spacing: 0.4rem;
    line-height: 3.5rem;
  }

  p {
    font-size: 2rem;
  }

  li {
    font-size: 2.2rem;
  }

  .record p {
    font-size: 2.1rem;
  }

  .list-item {
    margin-right: 0;
  }

  .headLine, .middleLine {
    display: none;
  }

  .bullet:before {
    display: none;
  }

  .skills-grid {
    gap: 0.6rem;
  }

  .skill-item p {
    font-size: 1.7rem;
  }
}

/* ─── Responsive 576px ──────────────────────────────────────── */
@media (max-width: 576px) {
  .container-fluid {
    padding: 0 3% !important;
  }

  .firstName {
    font-size: 2.8rem;
    letter-spacing: 0.7rem;
  }

  .lastName {
    font-size: 3.5rem;
    letter-spacing: 0.8rem;
  }

  .jobTitle span {
    font-size: 1.8rem;
    letter-spacing: 0.2rem;
  }

  .title {
    font-size: 2.4rem;
    letter-spacing: 0.3rem;
    line-height: 3rem;
  }

  p {
    font-size: 1.9rem;
  }

  li {
    font-size: 2rem;
  }

  .record p {
    font-size: 1.9rem;
  }

  .icon {
    width: 4rem;
    height: 4rem;
    font-size: 2rem;
  }

  .photo-wrapper {
    width: 12rem;
    height: 12rem;
  }

  .photo {
    width: 12rem;
    height: 12rem;
    max-height: 120px;
  }

  .link-card-label {
    font-size: 1.8rem;
  }

  .link-card-url {
    font-size: 1.4rem;
  }

  .link-card-icon {
    width: 3.6rem;
    height: 3.6rem;
    min-width: 3.6rem;
    font-size: 1.8rem;
  }

  .courses-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── IMPRESIÓN ─────────────────────────────────────────────── */
@media print {
  /*
   * margin: 0mm elimina el área donde el navegador
   * imprime la URL, fecha y número de página.
   * Los márgenes del contenido se manejan con padding.
   */
  @page {
    size: A4;
    margin: 0mm;
  }

  html {
    font-size: 26%;
  }

  /* Márgenes reales del contenido */
  .container-fluid {
    padding: 12mm 15mm !important;
  }

  /* Header */
  .header {
    padding-top: 6rem;
    padding-bottom: 5rem;
    border-top: 4px solid var(--accent);
    margin-bottom: 2rem;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .headLine, .middleLine {
    display: block;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  /* Columnas */
  .personal-details {
    border-right: 1px solid var(--border) !important;
    padding-right: 2.5rem !important;
    border-bottom: none !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .main-content {
    padding-left: 2.5rem !important;
  }

  /* Títulos */
  .title {
    font-size: 2.8rem;
    letter-spacing: 0.5rem;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 0.8rem;
    margin-bottom: 1.2rem;
    break-after: avoid;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  /* Evitar cortes en bloques importantes */
  .record {
    break-inside: avoid;
  }

  .course-item {
    break-inside: avoid;
  }

  .job-header {
    break-after: avoid;
  }

  /* Achievements: indentación con sangría francesa */
  .achievement-line {
    padding-left: 2rem;
    text-indent: -1.5rem;
    line-height: 1.6;
    margin-bottom: 0.4rem !important;
  }

  /* Skills: pills compactos */
  .skills-grid {
    gap: 0.5rem;
  }

  .skill-item {
    padding: 0.3rem 1rem;
    border-radius: 12px;
    background: #f0fdfa !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .skill-item p {
    font-size: 1.6rem;
    color: var(--accent) !important;
    white-space: normal;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  /* Cursos: 2 columnas */
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .course-item {
    padding: 0.8rem 1rem;
    box-shadow: none;
    border-top: 2px solid var(--accent);
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .course-item:hover {
    transform: none;
    box-shadow: none;
  }

  .course-name {
    font-size: 1.8rem;
  }

  .course-company {
    font-size: 1.5rem;
  }

  .course-date {
    font-size: 1.3rem;
  }

  /* Links */
  .link-card {
    padding: 0.7rem 1rem;
    background: #f0fdfa !important;
    border-color: var(--accent) !important;
    break-inside: avoid;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .link-card:hover {
    transform: none;
  }

  .link-card-icon {
    background: var(--accent) !important;
    width: 3.2rem;
    height: 3.2rem;
    min-width: 3.2rem;
    font-size: 1.6rem;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .link-card-label {
    font-size: 1.7rem;
  }

  .link-card-url {
    font-size: 1.4rem;
  }

  /* Bullets */
  .bullet i {
    color: var(--accent) !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .bullet:before {
    background-color: var(--border) !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  /* Ícono de contacto */
  .icon {
    background-color: var(--accent) !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  /* job-header */
  .job-header {
    border-left-color: var(--accent) !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  /* Stats bar */
  .stats-bar {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }
  .stat-value {
    font-size: 3.5rem;
    color: var(--accent) !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .stat-label {
    font-size: 1.4rem;
  }

  /* Notable Clients */
  .notable-clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
  }
  .notable-client-card {
    padding: 0.8rem 1rem;
    background: #f0fdfa !important;
    border-color: rgba(15,118,110,0.3) !important;
    break-inside: avoid;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .notable-client-card:hover {
    transform: none;
    box-shadow: none;
  }
  .client-icon {
    font-size: 2.2rem;
    color: var(--accent) !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .client-name {
    font-size: 1.8rem;
  }
  .client-desc {
    font-size: 1.4rem;
  }

  /* Certifications */
  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
  }
  .cert-card {
    padding: 0.8rem 1rem;
    border-left-color: var(--accent) !important;
    break-inside: avoid;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .cert-card:hover {
    transform: none;
    box-shadow: none;
  }
  .cert-icon {
    font-size: 2.2rem;
    color: var(--accent) !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .cert-name {
    font-size: 1.7rem;
  }
  .cert-issuer {
    font-size: 1.4rem;
    color: var(--accent) !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .cert-date {
    font-size: 1.2rem;
  }

  /* Ocultar botón imprimir */
  .btn-group-fab {
    display: none !important;
  }

  ul li {
    margin-left: 1.5rem;
  }

  p {
    font-size: 2.2rem;
    line-height: 1.5;
  }

  .record p {
    font-size: 2.1rem;
  }

  li {
    font-size: 2.3rem;
    line-height: 1.5;
  }

  span {
    letter-spacing: 0.1rem;
  }
}
