/* ============================================================
   FinHub Blog Redesign — Match Service Page Design System
   Target: WordPress blog pages (single posts + archive)
   Theme: Hello Elementor with Elementor templates
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── Global Blog Overrides ─────────────────────────────────── */
body.single-post,
body.blog,
body.archive,
body.search,
body.category {
  background: #f8fafc !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

body.single-post *,
body.blog *,
body.archive *,
body.search *,
body.category * {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

/* ── Top Contact Bar (injected via JS) ─────────────────────── */
#finhub-top-bar {
  background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 100%);
  padding: 8px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  z-index: 10000;
  position: relative;
}

#finhub-top-bar .top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

#finhub-top-bar .top-bar-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

#finhub-top-bar .top-bar-links a {
  color: rgba(255,255,255,0.8) !important;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}

#finhub-top-bar .top-bar-links a:hover {
  color: #48bb78 !important;
}

#finhub-top-bar .top-bar-contact {
  display: flex;
  gap: 20px;
  align-items: center;
}

#finhub-top-bar .top-bar-contact a {
  color: rgba(255,255,255,0.8) !important;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}

#finhub-top-bar .top-bar-contact a:hover {
  color: #48bb78 !important;
}

@media (max-width: 767px) {
  #finhub-top-bar .top-bar-links {
    display: none;
  }
  #finhub-top-bar .top-bar-inner {
    justify-content: center;
  }
}

/* ── Header / Navigation Overrides ─────────────────────────── */
body.single-post .elementor-location-header,
body.blog .elementor-location-header,
body.archive .elementor-location-header,
body.category .elementor-location-header {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08) !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 9999 !important;
  border-bottom: 1px solid rgba(0,0,0,0.06) !important;
}

/* Navigation links styling */
body.single-post .elementor-location-header .elementor-nav-menu > li > a,
body.blog .elementor-location-header .elementor-nav-menu > li > a,
body.archive .elementor-location-header .elementor-nav-menu > li > a,
body.category .elementor-location-header .elementor-nav-menu > li > a {
  color: #1a202c !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  letter-spacing: 0.5px !important;
  transition: color 0.3s !important;
}

body.single-post .elementor-location-header .elementor-nav-menu > li > a:hover,
body.blog .elementor-location-header .elementor-nav-menu > li > a:hover,
body.archive .elementor-location-header .elementor-nav-menu > li > a:hover,
body.category .elementor-location-header .elementor-nav-menu > li > a:hover {
  color: #48bb78 !important;
}

/* Green CTA button in nav */
body.single-post .elementor-location-header .elementor-button,
body.blog .elementor-location-header .elementor-button,
body.archive .elementor-location-header .elementor-button,
body.category .elementor-location-header .elementor-button {
  background: linear-gradient(135deg, #48bb78, #38a169) !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 12px 28px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: 0.5px !important;
  transition: all 0.3s !important;
  box-shadow: 0 4px 15px rgba(72, 187, 120, 0.3) !important;
}

body.single-post .elementor-location-header .elementor-button:hover,
body.blog .elementor-location-header .elementor-button:hover,
body.archive .elementor-location-header .elementor-button:hover,
body.category .elementor-location-header .elementor-button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(72, 187, 120, 0.4) !important;
}

/* ── Single Post: Hero Title Section ───────────────────────── */
body.single-post .elementor-location-single > section:first-child {
  background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 50%, #2c5282 100%) !important;
  padding: 80px 0 60px !important;
  position: relative;
  overflow: hidden;
}

body.single-post .elementor-location-single > section:first-child::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(72, 187, 120, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Title styling */
body.single-post .elementor-location-single > section:first-child h1.elementor-heading-title {
  color: #ffffff !important;
  font-size: 42px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  max-width: 800px !important;
  margin: 0 auto !important;
  text-align: center !important;
  letter-spacing: -0.5px !important;
}

body.single-post .elementor-location-single > section:first-child .headingdot {
  color: #48bb78 !important;
}

/* Date styling */
body.single-post .elementor-location-single > section:first-child .elementor-post-info {
  justify-content: center !important;
}

body.single-post .elementor-location-single > section:first-child .elementor-post-info__item--type-date {
  color: rgba(255,255,255,0.7) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
}

body.single-post .elementor-location-single > section:first-child .elementor-icon-list-item a {
  color: rgba(255,255,255,0.7) !important;
}

/* Featured Image in hero */
body.single-post .elementor-location-single > section:first-child .elementor-widget-image img,
body.single-post .elementor-location-single > section:first-child .elementor-widget-theme-post-featured-image img {
  border-radius: 16px !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3) !important;
  max-width: 800px !important;
  margin: 30px auto 0 !important;
  display: block !important;
}

/* Category tags in hero */
body.single-post .elementor-location-single > section:first-child .elementor-post-info__terms-list a {
  color: #48bb78 !important;
  font-weight: 600 !important;
}

/* ── Content Area ──────────────────────────────────────────── */
body.single-post .elementor-location-single > section:nth-child(2) {
  background: #ffffff !important;
  max-width: 800px !important;
  margin: -40px auto 40px !important;
  border-radius: 20px !important;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06) !important;
  padding: 50px !important;
  position: relative;
  z-index: 10;
}

body.single-post .elementor-location-single .elementor-widget-theme-post-content {
  font-size: 17px !important;
  line-height: 1.8 !important;
  color: #334155 !important;
}

body.single-post .elementor-location-single .elementor-widget-theme-post-content h2 {
  color: #0f172a !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  margin-top: 40px !important;
  margin-bottom: 16px !important;
  padding-bottom: 12px !important;
  border-bottom: 2px solid #f1f5f9 !important;
}

body.single-post .elementor-location-single .elementor-widget-theme-post-content h3 {
  color: #1e293b !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  margin-top: 32px !important;
  margin-bottom: 12px !important;
}

body.single-post .elementor-location-single .elementor-widget-theme-post-content p {
  margin-bottom: 20px !important;
  color: #475569 !important;
  line-height: 1.8 !important;
}

body.single-post .elementor-location-single .elementor-widget-theme-post-content a {
  color: #2563eb !important;
  font-weight: 500 !important;
  text-decoration: underline !important;
  text-decoration-color: rgba(37, 99, 235, 0.3) !important;
  text-underline-offset: 2px !important;
  transition: all 0.3s !important;
}

body.single-post .elementor-location-single .elementor-widget-theme-post-content a:hover {
  color: #1d4ed8 !important;
  text-decoration-color: rgba(37, 99, 235, 0.8) !important;
}

body.single-post .elementor-location-single .elementor-widget-theme-post-content ul,
body.single-post .elementor-location-single .elementor-widget-theme-post-content ol {
  margin-bottom: 20px !important;
  padding-left: 24px !important;
}

body.single-post .elementor-location-single .elementor-widget-theme-post-content li {
  margin-bottom: 10px !important;
  line-height: 1.7 !important;
  color: #475569 !important;
}

body.single-post .elementor-location-single .elementor-widget-theme-post-content strong {
  color: #1e293b !important;
  font-weight: 600 !important;
}

body.single-post .elementor-location-single .elementor-widget-theme-post-content blockquote {
  border-left: 4px solid #48bb78 !important;
  background: #f0fdf4 !important;
  padding: 20px 24px !important;
  margin: 24px 0 !important;
  border-radius: 0 12px 12px 0 !important;
  font-style: italic !important;
  color: #166534 !important;
}

body.single-post .elementor-location-single .elementor-widget-theme-post-content table {
  width: 100% !important;
  border-collapse: collapse !important;
  margin: 24px 0 !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
}

body.single-post .elementor-location-single .elementor-widget-theme-post-content th {
  background: linear-gradient(135deg, #0a1628, #1e3a5f) !important;
  color: #ffffff !important;
  padding: 14px 18px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  text-align: left !important;
}

body.single-post .elementor-location-single .elementor-widget-theme-post-content td {
  padding: 12px 18px !important;
  border-bottom: 1px solid #f1f5f9 !important;
  font-size: 15px !important;
}

body.single-post .elementor-location-single .elementor-widget-theme-post-content tr:nth-child(even) td {
  background: #f8fafc !important;
}

/* ── Share / Social Buttons ────────────────────────────────── */
body.single-post .elementor-location-single .elementor-share-btn {
  border-radius: 50px !important;
}

/* ── Author Box ────────────────────────────────────────────── */
body.single-post .elementor-location-single .elementor-author-box {
  background: #f8fafc !important;
  border-radius: 16px !important;
  padding: 30px !important;
  border: 1px solid #e2e8f0 !important;
}

body.single-post .elementor-location-single .elementor-author-box__name {
  color: #0f172a !important;
  font-weight: 700 !important;
  font-size: 18px !important;
}

body.single-post .elementor-location-single .elementor-author-box__bio {
  color: #64748b !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
}

body.single-post .elementor-location-single .elementor-author-box__avatar img {
  border-radius: 50% !important;
  border: 3px solid #48bb78 !important;
}

/* ── Related Posts Section ─────────────────────────────────── */
body.single-post .elementor-location-single .elementor-posts {
  gap: 24px !important;
}

body.single-post .elementor-location-single .elementor-posts .elementor-post {
  background: #ffffff !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  border: 1px solid rgba(0,0,0,0.04) !important;
}

body.single-post .elementor-location-single .elementor-posts .elementor-post:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12) !important;
}

body.single-post .elementor-location-single .elementor-posts .elementor-post img {
  transition: transform 0.4s !important;
}

body.single-post .elementor-location-single .elementor-posts .elementor-post:hover img {
  transform: scale(1.05) !important;
}

body.single-post .elementor-location-single .elementor-posts .elementor-post__title a {
  color: #0f172a !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  line-height: 1.4 !important;
  text-decoration: none !important;
  transition: color 0.3s !important;
}

body.single-post .elementor-location-single .elementor-posts .elementor-post__title a:hover {
  color: #2563eb !important;
}

body.single-post .elementor-location-single .elementor-posts .elementor-post__excerpt {
  color: #64748b !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
}

body.single-post .elementor-location-single .elementor-posts .elementor-post__read-more {
  color: #48bb78 !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  text-decoration: none !important;
  transition: all 0.3s !important;
}

body.single-post .elementor-location-single .elementor-posts .elementor-post__read-more:hover {
  color: #38a169 !important;
  letter-spacing: 1px !important;
}

/* Related posts category tags */
body.single-post .elementor-location-single .elementor-post__badge {
  background: linear-gradient(135deg, #48bb78, #38a169) !important;
  color: #fff !important;
  border-radius: 20px !important;
  padding: 4px 12px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

/* "Related Posts" heading */
body.single-post .elementor-location-single .elementor-widget-heading h2 {
  color: #0f172a !important;
  font-size: 32px !important;
  font-weight: 800 !important;
  text-align: center !important;
  margin-bottom: 12px !important;
}

body.single-post .elementor-location-single .elementor-widget-heading h2 .headingdot {
  color: #48bb78 !important;
}

/* ── Pagination ────────────────────────────────────────────── */
body.single-post .elementor-pagination,
body.blog .elementor-pagination,
body.archive .elementor-pagination {
  display: flex !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 40px 0 !important;
}

body.single-post .elementor-pagination .page-numbers,
body.blog .elementor-pagination .page-numbers,
body.archive .elementor-pagination .page-numbers {
  background: #ffffff !important;
  color: #475569 !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 10px !important;
  padding: 10px 16px !important;
  font-weight: 600 !important;
  transition: all 0.3s !important;
}

body.single-post .elementor-pagination .page-numbers.current,
body.blog .elementor-pagination .page-numbers.current,
body.archive .elementor-pagination .page-numbers.current,
body.single-post .elementor-pagination .page-numbers:hover,
body.blog .elementor-pagination .page-numbers:hover,
body.archive .elementor-pagination .page-numbers:hover {
  background: linear-gradient(135deg, #0a1628, #1e3a5f) !important;
  color: #ffffff !important;
  border-color: transparent !important;
}

/* ── Blog Archive / Listing Page ───────────────────────────── */
body.blog .elementor-location-archive > section:first-child,
body.archive .elementor-location-archive > section:first-child,
body.category .elementor-location-archive > section:first-child,
body.page-id-925 .elementor-section:first-child {
  background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 50%, #2c5282 100%) !important;
  padding: 80px 0 60px !important;
}

body.blog .elementor-location-archive > section:first-child h1,
body.archive .elementor-location-archive > section:first-child h1,
body.category .elementor-location-archive > section:first-child h1,
body.blog .elementor-location-archive > section:first-child .elementor-heading-title,
body.archive .elementor-location-archive > section:first-child .elementor-heading-title,
body.category .elementor-location-archive > section:first-child .elementor-heading-title,
body.page-id-925 .elementor-section:first-child h1,
body.page-id-925 .elementor-section:first-child .elementor-heading-title {
  color: #ffffff !important;
  font-size: 48px !important;
  font-weight: 800 !important;
}

body.blog .elementor-location-archive > section:first-child .headingdot,
body.archive .elementor-location-archive > section:first-child .headingdot,
body.category .elementor-location-archive > section:first-child .headingdot,
body.page-id-925 .elementor-section:first-child .headingdot {
  color: #48bb78 !important;
}

/* Blog listing page (page-id-925) specific */
body.page-id-925 {
  background: #f8fafc !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

body.page-id-925 * {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

/* Override AE Slider background gallery on Blog listing hero */
body.page-id-925 .elementor-element-788ab31,
body.page-id-925 .elementor-element-788ab31.has_ae_slider {
  background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 50%, #2c5282 100%) !important;
  background-image: linear-gradient(135deg, #0a1628 0%, #1e3a5f 50%, #2c5282 100%) !important;
  padding: 80px 0 60px !important;
}

body.page-id-925 .elementor-element-788ab31 .elementor-background-overlay,
body.page-id-925 .elementor-element-788ab31 .ae-bg-gallery,
body.page-id-925 .elementor-element-788ab31 .ae-bg-wrapper,
body.page-id-925 .elementor-element-788ab31 .ae-bg-gallery-wrapper,
body.page-id-925 .elementor-element-788ab31 .ae-bg-slider,
body.page-id-925 .elementor-element-788ab31 [class*="ae-bg"] {
  display: none !important;
  opacity: 0 !important;
}

body.page-id-925 .elementor-element-788ab31 .elementor-heading-title,
body.page-id-925 .elementor-element-788ab31 h1,
body.page-id-925 .elementor-element-788ab31 h2 {
  color: #ffffff !important;
}

body.page-id-925 .elementor-element-788ab31 .headingdot {
  color: #48bb78 !important;
}

/* Also style the "Recent Posts" heading */
body.page-id-925 .elementor-element-cf28e91 .elementor-heading-title,
body.page-id-925 .elementor-element-cf28e91 h2 {
  color: #0a1628 !important;
  font-weight: 800 !important;
}

body.page-id-925 .elementor-element-cf28e91 .headingdot {
  color: #48bb78 !important;
}

/* Blog listing cards */
body.blog .elementor-posts .elementor-post,
body.archive .elementor-posts .elementor-post,
body.category .elementor-posts .elementor-post,
body.page-id-925 .elementor-posts .elementor-post {
  background: #ffffff !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  border: 1px solid rgba(0,0,0,0.04) !important;
}

body.blog .elementor-posts .elementor-post:hover,
body.archive .elementor-posts .elementor-post:hover,
body.category .elementor-posts .elementor-post:hover,
body.page-id-925 .elementor-posts .elementor-post:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12) !important;
}

body.blog .elementor-posts .elementor-post img,
body.archive .elementor-posts .elementor-post img,
body.category .elementor-posts .elementor-post img,
body.page-id-925 .elementor-posts .elementor-post img {
  transition: transform 0.4s !important;
}

body.blog .elementor-posts .elementor-post:hover img,
body.archive .elementor-posts .elementor-post:hover img,
body.category .elementor-posts .elementor-post:hover img,
body.page-id-925 .elementor-posts .elementor-post:hover img {
  transform: scale(1.05) !important;
}

body.blog .elementor-posts .elementor-post__title a,
body.archive .elementor-posts .elementor-post__title a,
body.category .elementor-posts .elementor-post__title a,
body.page-id-925 .elementor-posts .elementor-post__title a {
  color: #0f172a !important;
  font-weight: 700 !important;
  transition: color 0.3s !important;
  text-decoration: none !important;
}

body.blog .elementor-posts .elementor-post__title a:hover,
body.archive .elementor-posts .elementor-post__title a:hover,
body.category .elementor-posts .elementor-post__title a:hover,
body.page-id-925 .elementor-posts .elementor-post__title a:hover {
  color: #2563eb !important;
}

body.blog .elementor-posts .elementor-post__read-more,
body.archive .elementor-posts .elementor-post__read-more,
body.category .elementor-posts .elementor-post__read-more,
body.page-id-925 .elementor-posts .elementor-post__read-more {
  color: #48bb78 !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  font-size: 13px !important;
  transition: all 0.3s !important;
}

body.blog .elementor-posts .elementor-post__badge,
body.archive .elementor-posts .elementor-post__badge,
body.category .elementor-posts .elementor-post__badge,
body.page-id-925 .elementor-posts .elementor-post__badge {
  background: linear-gradient(135deg, #48bb78, #38a169) !important;
  color: #fff !important;
  border-radius: 20px !important;
  padding: 4px 12px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
}

/* ── Footer Overrides ──────────────────────────────────────── */
body.single-post .elementor-location-footer,
body.blog .elementor-location-footer,
body.archive .elementor-location-footer,
body.category .elementor-location-footer {
  background: linear-gradient(135deg, #0a1628 0%, #1a2d47 100%) !important;
}

body.single-post .elementor-location-footer .elementor-widget-text-editor,
body.blog .elementor-location-footer .elementor-widget-text-editor {
  color: rgba(255,255,255,0.7) !important;
}

body.single-post .elementor-location-footer a,
body.blog .elementor-location-footer a,
body.archive .elementor-location-footer a {
  transition: color 0.3s !important;
}

body.single-post .elementor-location-footer a:hover,
body.blog .elementor-location-footer a:hover,
body.archive .elementor-location-footer a:hover {
  color: #48bb78 !important;
}

/* ── Mobile Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
  body.single-post .elementor-location-single > section:first-child h1.elementor-heading-title {
    font-size: 32px !important;
    padding: 0 20px !important;
  }
  
  body.single-post .elementor-location-single > section:nth-child(2) {
    margin: -20px 16px 30px !important;
    padding: 30px 24px !important;
    border-radius: 16px !important;
  }
}

@media (max-width: 767px) {
  body.single-post .elementor-location-single > section:first-child {
    padding: 50px 0 40px !important;
  }
  
  body.single-post .elementor-location-single > section:first-child h1.elementor-heading-title {
    font-size: 26px !important;
  }
  
  body.single-post .elementor-location-single > section:nth-child(2) {
    margin: -15px 12px 24px !important;
    padding: 24px 18px !important;
    border-radius: 12px !important;
  }
  
  body.single-post .elementor-location-single .elementor-widget-theme-post-content {
    font-size: 16px !important;
  }
  
  body.single-post .elementor-location-single .elementor-widget-theme-post-content h2 {
    font-size: 22px !important;
  }
  
  body.blog .elementor-location-archive > section:first-child h1,
  body.blog .elementor-location-archive > section:first-child .elementor-heading-title {
    font-size: 32px !important;
  }
}

/* ── Scroll Animations ─────────────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.single-post .elementor-location-single > section:nth-child(2) {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* ── Mobile Sticky CTA ─────────────────────────────────────── */
#finhub-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 100%);
  padding: 12px 20px;
  z-index: 99998;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

#finhub-mobile-cta .cta-inner {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

#finhub-mobile-cta a {
  flex: 1;
  text-align: center;
  padding: 12px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
}

#finhub-mobile-cta .cta-call {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: #ffffff;
}

#finhub-mobile-cta .cta-book {
  background: linear-gradient(135deg, #48bb78, #38a169);
  color: #ffffff;
  border: none;
}

@media (max-width: 767px) {
  #finhub-mobile-cta {
    display: block;
  }
  
  /* Add padding at bottom for mobile CTA */
  body.single-post .elementor-location-footer,
  body.blog .elementor-location-footer {
    padding-bottom: 70px !important;
  }
}

/* ── "Recent Posts" / Archive heading subtitle ─────────────── */
body.blog .elementor-location-archive .elementor-widget-heading h2,
body.archive .elementor-location-archive .elementor-widget-heading h2 {
  color: #0f172a !important;
  font-weight: 800 !important;
}

body.blog .elementor-location-archive .elementor-widget-heading h2 .headingdot,
body.archive .elementor-location-archive .elementor-widget-heading h2 .headingdot {
  color: #48bb78 !important;
}

/* ── Loading indicator ─────────────────────────────────────── */
body.blog .elementor-posts-loader,
body.archive .elementor-posts-loader {
  border-color: #48bb78 !important;
  border-top-color: transparent !important;
}

/* ── Comments section ──────────────────────────────────────── */
body.single-post #comments {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  max-width: 800px;
  margin: 0 auto 40px;
}

body.single-post #comments h3 {
  color: #0f172a;
  font-weight: 700;
}

body.single-post #comments .comment-form input[type="text"],
body.single-post #comments .comment-form input[type="email"],
body.single-post #comments .comment-form textarea {
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s;
}

body.single-post #comments .comment-form input:focus,
body.single-post #comments .comment-form textarea:focus {
  border-color: #48bb78;
  outline: none;
}

body.single-post #comments .comment-form .submit {
  background: linear-gradient(135deg, #48bb78, #38a169);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 32px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

body.single-post #comments .comment-form .submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(72, 187, 120, 0.4);
}
