.elementor-34024 .elementor-element.elementor-element-500702b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-34024 .elementor-element.elementor-element-07c0e77{--display:flex;}.elementor-34024 .elementor-element.elementor-element-21fe9ce{--display:flex;}.elementor-34024 .elementor-element.elementor-element-5dfa4cb{--display:flex;}/* Start custom CSS for container, class: .elementor-element-07c0e77 *//* ============================================================
   InvestSnips — ABBV Dividend Page CSS  (LIGHT MODE)
   Compatible with: Elementor Custom CSS widget
   Design: White/light-gray base + deep navy text + blue accents
   Font Stack: 'Inter', system-ui, sans-serif
   ============================================================ */

/* ===================== GOOGLE FONT IMPORT ===================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ===================== CSS CUSTOM PROPERTIES ===================== */
:root {
  /* ---- Surfaces ---- */
  --is-bg: #f5f7fa;
  /* light page background                */
  --is-surface: #ffffff;
  /* card / box background                */
  --is-surface-2: #eef2f8;
  /* alternate / table-head background    */
  --is-border: #d1daea;
  /* border / divider                     */

  /* ---- Brand Accents ---- */
  --is-accent: #1d4ed8;
  /* deep blue — primary accent           */
  --is-accent-hover: #2563eb;
  /* mid-blue — hover state               */
  --is-accent-light: #eff6ff;
  /* very light blue — tinted backgrounds */
  --is-accent-green: #059669;
  /* emerald — positive signal            */
  --is-accent-warn: #d97706;
  /* amber — caution                      */
  --is-accent-red: #dc2626;
  /* red — risk                           */

  /* ---- Text ---- */
  --is-text-primary: #1e293b;
  /* dark slate — main body text          */
  --is-text-secondary: #334155;
  /* slightly lighter body text           */
  --is-text-muted: #64748b;
  /* muted / caption text                 */
  --is-text-head: #0f172a;
  /* near-black heading text              */

  /* ---- Shape ---- */
  --is-radius: 10px;
  --is-radius-lg: 14px;
  --is-shadow: 0 1px 4px rgba(15, 23, 42, 0.08), 0 4px 16px rgba(15, 23, 42, 0.06);
  --is-shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.07);

  /* ---- Misc ---- */
  --is-font: 'Inter', system-ui, -apple-system, sans-serif;
  --is-transition: 0.22s ease;
}

/* ===================== BASE RESET ===================== */
.elementor-widget-text-editor *,
.elementor-widget-html * {
  box-sizing: border-box;
}

/* ===================== TYPOGRAPHY ===================== */
.elementor-widget-text-editor,
.elementor-widget-html {
  font-family: var(--is-font);
  font-size: 16px;
  line-height: 1.78;
  color: var(--is-text-primary);
  background: transparent;
}

/* --- Headings base --- */
h1,
h2,
h3,
h4 {
  font-family: var(--is-font);
  color: var(--is-text-head);
  line-height: 1.25;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

/* --- H1 --- */
h1 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  color: var(--is-text-head);
  /* Subtle gradient: dark navy → brand blue */
  background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 0.5rem;
  letter-spacing: -0.02em;
}

/* --- H2 --- */
h2 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  color: var(--is-text-head);
  border-left: 4px solid var(--is-accent);
  padding-left: 0.85rem;
  margin-top: 2.5rem;
}

/* --- H3 --- */
h3 {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--is-accent-hover);
  margin-top: 1.75rem;
}

/* --- Body text --- */
p {
  margin-bottom: 1.1rem;
  color: var(--is-text-secondary);
}

ul,
ol {
  padding-left: 1.5rem;
  margin-bottom: 1.1rem;
}

li {
  margin-bottom: 0.5rem;
  color: var(--is-text-secondary);
}

a {
  color: var(--is-accent);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--is-transition);
}

a:hover {
  color: var(--is-accent-hover);
  text-decoration: underline;
}

em {
  color: var(--is-text-muted);
  font-style: normal;
  font-size: 0.88rem;
}

strong {
  color: var(--is-text-head);
  font-weight: 600;
}

/* ===================== DISCLAIMER BOX ===================== */
.disclaimer {
  background: var(--is-accent-light);
  border: 1px solid #bfdbfe;
  border-left: 4px solid var(--is-accent);
  border-radius: var(--is-radius);
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.75rem;
  font-size: 0.83rem;
  color: #475569;
  line-height: 1.65;
}

.disclaimer strong {
  color: var(--is-accent);
  font-weight: 600;
}

/* ===================== TABLE OF CONTENTS ===================== */
#toc {
  background: var(--is-surface);
  border: 1px solid var(--is-border);
  border-radius: var(--is-radius-lg);
  padding: 1.4rem 1.75rem;
  margin: 2rem 0 2.25rem;
  box-shadow: var(--is-shadow-sm);
  position: relative;
  overflow: hidden;
}

#toc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--is-accent), var(--is-accent-green));
}

.toc-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--is-accent);
  margin: 0 0 1rem 0;
  border: none;
  padding: 0;
}

.toc-list {
  list-style: decimal;
  padding-left: 1.5rem;
  margin: 0;
  columns: 2;
  column-gap: 2rem;
}

.toc-list li {
  margin-bottom: 0.4rem;
  break-inside: avoid;
  color: var(--is-text-muted);
}

.toc-list a {
  font-size: 0.875rem;
  color: var(--is-text-muted);
  transition: color var(--is-transition);
}

.toc-list a:hover {
  color: var(--is-accent-hover);
  text-decoration: none;
}

@media (max-width: 640px) {
  .toc-list {
    columns: 1;
  }
}

/* ===================== DATA TABLES ===================== */
.data-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--is-radius-lg);
  overflow: hidden;
  margin: 1.5rem 0 2rem;
  box-shadow: var(--is-shadow);
  font-size: 0.875rem;
  background: var(--is-surface);
  border: 1px solid var(--is-border);
}

.data-table caption {
  caption-side: top;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--is-text-muted);
  padding: 0.4rem 0 0.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Table head — brand navy */
.data-table thead tr {
  background: #0f172a;
}

.data-table thead th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #93c5fd;
  /* sky-300 — readable on dark head */
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  border-bottom: 2px solid #1e3a5f;
  transition: background var(--is-transition);
}

.data-table thead th::after {
  content: ' ⇅';
  opacity: 0.4;
  font-size: 0.65rem;
}

.data-table thead th.sort-asc::after {
  content: ' ↑';
  opacity: 1;
  color: #60a5fa;
}

.data-table thead th.sort-desc::after {
  content: ' ↓';
  opacity: 1;
  color: #60a5fa;
}

.data-table thead th:hover {
  background: #1e3a5f;
}

/* Table body */
.data-table tbody tr {
  transition: background var(--is-transition);
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.data-table tbody tr:hover {
  background: #eff6ff;
}

.data-table tbody tr:nth-child(even) {
  background: #f8fafc;
}

.data-table td {
  padding: 0.7rem 1rem;
  color: var(--is-text-primary);
  border-bottom: 1px solid var(--is-border);
}

.data-table td strong {
  color: var(--is-text-head);
  font-weight: 600;
}

/* Responsive table wrapper */
.data-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--is-radius-lg);
  cursor: grab;
}

.data-table-wrapper:active {
  cursor: grabbing;
}

@media (max-width: 768px) {
  .data-table {
    min-width: 560px;
  }
}

/* ===================== CALLOUT BOXES ===================== */
.callout-box {
  border-radius: var(--is-radius);
  padding: 1rem 1.2rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  line-height: 1.7;
}

.callout-info {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-left: 4px solid var(--is-accent);
  color: var(--is-text-secondary);
}

.callout-info strong {
  color: var(--is-accent);
}

.callout-warn {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-left: 4px solid var(--is-accent-warn);
  color: #78350f;
}

/* ===================== SUMMARY BOX ===================== */
.summary-box {
  background: var(--is-surface);
  border: 1px solid var(--is-border);
  border-radius: var(--is-radius-lg);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
  box-shadow: var(--is-shadow);
  position: relative;
  overflow: hidden;
}

.summary-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--is-accent-green), var(--is-accent));
}

.summary-box h3 {
  color: var(--is-text-head);
  font-size: 1.05rem;
  margin-top: 0;
  margin-bottom: 1rem;
}

.summary-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.summary-box li {
  margin-bottom: 0.6rem;
  padding: 0.55rem 0.8rem;
  border-radius: 6px;
  font-size: 0.89rem;
  color: var(--is-text-secondary);
  background: #f8fafc;
  border: 1px solid var(--is-border);
  line-height: 1.55;
}

/* ===================== FAQ ACCORDION ===================== */
.faq {
  margin: 1.5rem 0 2rem;
}

.faq-item {
  background: var(--is-surface);
  border: 1px solid var(--is-border);
  border-radius: var(--is-radius);
  margin-bottom: 0.55rem;
  overflow: hidden;
  transition: box-shadow var(--is-transition),
    border-color var(--is-transition);
}

.faq-item:has(.faq-q[aria-expanded="true"]),
.faq-item.is-open {
  border-color: var(--is-accent);
  box-shadow: 0 0 0 2px rgba(29, 78, 216, 0.12),
    var(--is-shadow-sm);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  background: transparent;
  border: none;
  padding: 1rem 1.25rem;
  text-align: left;
  font-family: var(--is-font);
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--is-text-head);
  cursor: pointer;
  line-height: 1.4;
  transition: color var(--is-transition), background var(--is-transition);
}

.faq-q:hover {
  color: var(--is-accent-hover);
  background: #eff6ff;
}

.faq-q[aria-expanded="true"] {
  color: var(--is-accent);
  border-bottom: 1px solid var(--is-border);
  background: #eff6ff;
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #dbeafe;
  border: 1px solid #93c5fd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  color: var(--is-accent);
  transition: transform var(--is-transition),
    background var(--is-transition);
  font-style: normal;
  font-weight: 400;
}

.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: #bfdbfe;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.28s ease;
  opacity: 0;
}

.faq-a.is-open {
  max-height: 600px;
  opacity: 1;
}

.faq-a p {
  padding: 1rem 1.25rem;
  margin: 0;
  font-size: 0.88rem;
  color: var(--is-text-muted);
  line-height: 1.78;
}

.faq-a p strong {
  color: var(--is-text-primary);
}

/* ===================== READING PROGRESS BAR ===================== */
#reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--is-accent), var(--is-accent-green));
  z-index: 9999;
  transition: width 0.08s linear;
  pointer-events: none;
  border-radius: 0 2px 2px 0;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  h1 {
    font-size: 1.55rem;
  }

  h2 {
    font-size: 1.18rem;
  }

  h3 {
    font-size: 1rem;
  }

  #toc {
    padding: 1rem 1.1rem;
  }

  .disclaimer {
    font-size: 0.79rem;
  }

  .summary-box {
    padding: 1.1rem 1rem;
  }

  .faq-q {
    font-size: 0.86rem;
    padding: 0.85rem 1rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.3rem;
  }

  .data-table {
    font-size: 0.78rem;
  }

  .data-table td,
  .data-table th {
    padding: 0.5rem 0.7rem;
  }
}/* End custom CSS */