/* ── SIDEBAR & WIDGET CARDS ── */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 20px;
  align-self: start;
}

.card {
  border-radius: 18px;
  overflow: hidden;
  background: var(--ivory);
  border: 1px solid var(--r30);
  animation: up 0.4s cubic-bezier(.22,.68,0,1.1) both;
}

@keyframes up {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.card:nth-child(1) { animation-delay: 0.04s; }
.card:nth-child(2) { animation-delay: 0.11s; }
.card:nth-child(3) { animation-delay: 0.18s; }
.card:nth-child(4) { animation-delay: 0.25s; }
.card:nth-child(5) { animation-delay: 0.32s; }

.author-band {
  background: var(--eerie);
  padding: 22px 22px 20px;
}

.author-top {
  display: flex;
  gap: 13px;
  align-items: center;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--rosy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
  outline: 3px solid rgba(196,151,151,0.3);
  outline-offset: 3px;
}

.author-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 600;
  color: var(--ivory);
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.author-role {
  font-size: 10px;
  color: var(--rosy);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  margin-top: 4px;
  font-weight: 400;
}

.author-body {
  padding: 18px 22px 20px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 9.5px;
  font-weight: 500;
  padding: 3px 11px;
  border-radius: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.tag--dark { background: var(--eerie); color: var(--rosy); }
.tag--rosy { background: var(--blush); color: var(--cord); border: 1px solid var(--r30); }

.author-bio {
  font-size: 13px;
  font-weight: 300;
  color: #5A4040;
  line-height: 1.75;
  margin-bottom: 16px;
}

.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  color: var(--ivory);
  text-decoration: none;
  font-weight: 400;
  background: var(--cord);
  border-radius: 8px;
  padding: 9px 18px;
  letter-spacing: 0.03em;
  transition: background 0.18s, transform 0.15s;
}

.linkedin-btn:hover { background: var(--rosy); transform: translateY(-1px); }

/* Widget Headers & Bodies */
.wh { padding: 18px 22px 15px; }
.wh--rosy  { background: var(--rosy); }
.wh--cord  { background: var(--cord); }
.wh--olive { background: var(--olive); }
.wh--eerie { background: var(--eerie); }

.wh-label {
  font-size: 9px;
  font-weight: 500;
  color: rgba(248,246,227,0.5);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 5px;
}

.wh-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--ivory);
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.wh-sub {
  font-size: 11px;
  font-weight: 300;
  color: rgba(248,246,227,0.6);
  margin-top: 4px;
  line-height: 1.4;
}

.wb { padding: 18px 22px 20px; background: var(--ivory); }

.pdf-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--blush);
  border: 1px solid var(--r30);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 16px;
}

.pdf-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--cord);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  flex-shrink: 0;
}

.pdf-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--cord);
  line-height: 1.3;
}

.pdf-meta {
  font-size: 10px;
  font-weight: 400;
  color: var(--rosy);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.perks { list-style: none; margin: 0 0 16px; padding: 0; }
.perks li {
  font-size: 12.5px;
  font-weight: 300;
  color: #5A4040;
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
  border-bottom: 1px solid var(--r15);
}

.perks li:last-child { border-bottom: none; }
.perks li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--rosy);
  flex-shrink: 0;
  margin-top: 7px;
}

.btn {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  padding: 11px 16px;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  width: 100%;
  transition: opacity 0.18s, transform 0.14s;
  letter-spacing: 0.04em;
  box-sizing: border-box;
}

.btn:hover  { opacity: 0.87; transform: translateY(-1px); }
.btn:active { transform: scale(0.97); }
.btn--cord  { background: var(--cord);  color: var(--ivory); }
.btn--rosy  { background: var(--rosy);  color: var(--ivory); }
.btn--olive { background: var(--olive); color: var(--ivory); }
.btn--eerie { background: var(--eerie); color: var(--ivory); }

.nl-input {
  width: 100%;
  border: 1px solid var(--r55);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 12.5px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: var(--eerie);
  background: var(--blush);
  margin-bottom: 10px;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.nl-input:focus { border-color: var(--cord); }
.nl-input::placeholder { color: var(--r55); }

.desc {
  font-size: 12.5px;
  font-weight: 300;
  color: #5A4040;
  line-height: 1.7;
  margin-bottom: 16px;
}

.section-lbl {
  font-size: 9.5px;
  color: var(--cord);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

.note {
  font-size: 10.5px;
  font-weight: 300;
  color: var(--rosy);
  text-align: center;
  margin-top: 10px;
  line-height: 1.4;
}

  .divider {
    height: 1px; background: var(--r30); margin: 14px 0;
  }
 
/* Insight Card Styling */
.insight-card {
    background-color: #fffdfc;
    border: 1px solid #f2e9e7;
    border-radius: 8px;
    padding: 20px;
}

.insight-title {
    font-family: 'Arial', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #b07d4a; /* Golden brown color */
    margin-bottom: 15px;
    font-weight: bold;
}

.insight-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444 !important; 
    margin: 0;
}


.badge {
    position: absolute;
    top: -15px;
    left: 51%;
    transform: translateX(-50%);
    background-color: #824741;
    color: white;
    padding: 5px 17px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-family: sans-serif;
    font-weight: bold;
    line-height: 1.5;
    width: 70%;
}

/* Text Styling */
.plan-name {
    font-size: 13px;
    letter-spacing: 1.5px;
    color: #444;
    margin-bottom: 20px;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111;
    margin-bottom: 30px;
}

.currency {
    font-size: 1rem;
    vertical-align: top;
    margin-right: 2px;
}

.period {
    display: block;
    font-size: 0.9rem;
    color: #888;
    font-weight: normal;
    margin-top: -5px;
    text-decoration: underline;
    text-decoration-color: #3b71ca; /* Blue underline as seen in image */
}