/* =========================================
   CDI minimal styling (Quarto)
   ========================================= */

:root{
  --accent: #036281;   /* CDI teal */
  --ink:    #0f172a;   /* deep slate */
  --muted:  #475569;   /* slate */
  --bg:     #f4f8ff;   /* soft blue */
}

/* Base */
body{
  color: var(--ink);
  background: var(--bg);
}

a{ color: var(--accent); }

/* Quarto callouts */
.callout{
  border-radius: 14px;
}

/* =========================================
   Title block (centered, no underline)
   ========================================= */

#title-block-header{
  text-align: center;
  padding-top: 1.2rem;
  padding-bottom: 0.4rem;
  margin-bottom: 0.8rem;
}

#title-block-header .title{
  font-size: 2.7rem;
  font-weight: 750;
  letter-spacing: -0.6px;
  line-height: 1.08;
  color: var(--ink);
}

/* =========================================
   CDI "Next" box
   ========================================= */

.next{
  margin-top: 2rem;
  padding: 1.2rem 1.5rem;
  background: #f5faff;
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
}

.next a{
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.next a:hover{
  text-decoration: underline;
}

/* =========================================
   CDI message box
   ========================================= */

.cdi-message{
  background: #f5f9fc;
  border-left: 5px solid var(--accent);
  padding: 1.6rem 1.8rem;
  margin: 2.2rem 0;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.035);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
}

.cdi-message ul{
  margin-top: 0.8rem;
}

.cdi-message a{
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.cdi-message a:hover{
  text-decoration: underline;
}