/* HN_SAVED_REPORTS_V1 */

.hn-saved-reports{
  margin-top:38px;
  padding-top:34px;
  border-top:1px solid var(--line);
}

.hn-saved-reports-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:24px;
  margin-bottom:18px;
}

.hn-saved-reports-head h3{
  margin:5px 0 7px;
  color:var(--navy);
  font-family:Georgia,"Times New Roman",serif;
  font-size:28px;
  letter-spacing:-.025em;
}

.hn-saved-reports-head p{
  max-width:650px;
  margin:0;
}

.hn-saved-reports-list{
  display:grid;
  gap:12px;
}

.hn-saved-report-card{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  align-items:center;
  gap:22px;
  padding:20px 22px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.82);
  box-shadow:0 8px 24px rgba(20,42,52,.04);
}

.hn-saved-report-copy{
  min-width:0;
}

.hn-saved-report-copy h4{
  margin:0 0 7px;
  color:var(--navy);
  font-size:17px;
  line-height:1.25;
}

.hn-saved-report-meta{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:7px 12px;
  color:var(--muted);
  font-size:13px;
}

.hn-saved-report-type{
  display:inline-flex;
  align-items:center;
  min-height:26px;
  padding:4px 9px;
  border-radius:999px;
  background:#edf5f1;
  color:var(--forest);
  font-size:11px;
  font-weight:800;
  letter-spacing:.035em;
}

.hn-saved-reports-message{
  padding:15px 0;
}

.hn-saved-report-banner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  margin:0 0 22px;
  padding:14px 18px;
  border:1px solid #d7e5df;
  border-radius:14px;
  background:#f1f7f4;
  color:var(--navy);
}

.hn-saved-report-banner strong{
  display:block;
  margin-bottom:3px;
}

.hn-saved-report-banner span{
  font-size:12px;
}

.hn-saved-report-lock{
  flex:0 0 auto;
  padding:5px 9px;
  border-radius:999px;
  background:#fff;
  color:var(--forest);
  font-weight:800;
}

@media(max-width:700px){
  .hn-saved-report-card{
    grid-template-columns:1fr;
  }

  .hn-saved-report-card .btn{
    width:100%;
  }

  .hn-saved-report-banner{
    align-items:flex-start;
    flex-direction:column;
  }
}

@media print{
  .hn-saved-report-banner{
    display:none!important;
  }
}


/* ==========================================================
   HN_SAVED_REPORTS_VISUAL_V2
   Match the unified Harbour North visual system.
   ========================================================== */

.hn-saved-reports{
  border-color:rgba(11,48,72,.13);
}

.hn-saved-reports-head h3{
  color:#0b3048;
}

.hn-saved-report-card{
  border:1px solid rgba(11,48,72,.12);
  border-radius:18px;

  background:
    linear-gradient(
      145deg,
      rgba(255,250,242,.98),
      rgba(238,244,245,.72)
    );

  box-shadow:
    0 10px 28px rgba(11,48,72,.045);
}

.hn-saved-report-copy h4{
  color:#0b3048;
  font-family:Georgia,"Times New Roman",serif;
  font-size:18px;
}

.hn-saved-report-meta{
  color:#617783;
}

.hn-saved-report-type{
  border:1px solid rgba(50,104,121,.13);
  background:#e2edf0;
  color:#326879;
}

.hn-saved-report-banner{
  border:1px solid rgba(50,104,121,.16);
  border-left:4px solid #d49a32;
  border-radius:14px;

  background:
    linear-gradient(
      135deg,
      rgba(226,237,240,.72),
      rgba(255,250,242,.94)
    );

  color:#0b3048;
}

.hn-saved-report-lock{
  border:1px solid rgba(212,154,50,.18);
  background:#fffaf2;
  color:#8a651e;
}

