/* ══════════════════════════════════════════════════════════════
   CancunToGo — advisor CTA ("Plan with me")
   The Fora path is the one that actually earns, so it gets the
   loudest block on the page: deep-blue panel, Georgia headline,
   amber button.

   Promoted from the variant already in use on
   guides/best-cancun-resorts-honeymoon.html — it was the strongest
   treatment on the site and was sitting on one page. Every other
   page had a quiet white card with a left rule.

   Markup is unchanged from the old card, so this is a pure swap:
     <div class="advisor">
       <div><div class="t">…</div><div class="s">…</div></div>
       <a class="advisor-btn" href="/contact">…</a>
     </div>
   ══════════════════════════════════════════════════════════════ */

.advisor {
  background: linear-gradient(135deg, #00496a, #005F87);
  color: #fff;
  border-radius: 16px;
  padding: 32px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 10px 30px rgba(0, 30, 45, .13);
}

.advisor .t {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.advisor .s {
  font-size: 15px;
  color: rgba(255, 255, 255, .85);
  max-width: 60ch;
}

.advisor-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #E8A838;
  color: #181F26;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 7px;
  white-space: nowrap;
  transition: background .15s, transform .15s;
}
.advisor-btn:hover { background: #f0b030; transform: translateY(-1px); }

@media (max-width: 560px) {
  .advisor { padding: 26px 22px; }
  .advisor .t { font-size: 21px; }
  .advisor-btn { width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) { .advisor-btn { transition: none; } }
