@charset "UTF-8";
.gradient-text {
  background: linear-gradient(180deg, #FFB347 0%, #FF8C00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.btn, .btn-accent, .btn-ghost, .btn-secondary, .btn-primary, .dharma-menu-item.dharma-connect-btn .dharma-menu-link,
.dharma-connect-button,
.dharma-btn {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}
.btn:active, .btn-accent:active, .btn-ghost:active, .btn-secondary:active, .btn-primary:active, .dharma-menu-item.dharma-connect-btn .dharma-menu-link:active,
.dharma-connect-button:active,
.dharma-btn:active {
  transform: translateY(0);
}

.btn-primary, .dharma-menu-item.dharma-connect-btn .dharma-menu-link,
.dharma-connect-button {
  background: linear-gradient(180deg, #FFB347 0%, #FF8C00 100%);
  color: #ffffff;
  border-radius: 30px;
  padding: 12px 35px;
  font-size: 16px;
}
.btn-primary:hover, .dharma-menu-item.dharma-connect-btn .dharma-menu-link:hover,
.dharma-connect-button:hover {
  color: #ffffff;
}

.btn-secondary {
  background: transparent;
  color: #FFB347;
  border: 2px solid #FFB347;
  border-radius: 30px;
}
.btn-secondary:hover {
  background: #FFB347;
  color: #ffffff;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-accent {
  background: #DC143C;
  color: #ffffff;
  border-radius: 30px;
}

.btn-small {
  padding: 8px 20px;
  font-size: 0.875rem;
}

.btn-large {
  padding: 15px 40px;
  font-size: 1.125rem;
}

.btn-disabled,
.btn:disabled,
.btn-primary:disabled,
.dharma-menu-item.dharma-connect-btn .dharma-menu-link:disabled,
.dharma-connect-button:disabled,
.btn-secondary:disabled,
.btn-ghost:disabled,
.btn-accent:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.dharma-menu-item.dharma-connect-btn .dharma-menu-link {
  background: linear-gradient(180deg, #FFB347 0%, #FF8C00 100%);
  border-radius: 30px;
  padding: 12px 35px !important;
  color: #fff !important;
  flex-direction: row;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 3px solid #ffe8c7;
}

.dharma-menu-item.dharma-connect-btn {
  margin-left: 0;
}
.dharma-menu-item.dharma-connect-btn .dharma-menu-link {
  flex-direction: row !important;
}
.dharma-menu-item.dharma-connect-btn .dharma-letter {
  display: none;
}
.dharma-menu-item.dharma-connect-btn .dharma-description {
  color: #ffffff !important;
  max-width: none;
  font-size: 16px;
}

.dharma-nav-container {
  display: flex;
  align-items: center;
}

.dharma-nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  align-items: center;
}

.dharma-menu-item.dharma-top-level {
  position: relative;
  list-style: none;
}

.dharma-menu-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  color: inherit;
}
.dharma-menu-link:hover .dharma-letter {
  color: #FF8C00;
  transform: translateY(-3px);
  text-shadow: 0 4px 8px rgba(255, 179, 71, 0.3);
}
.dharma-letter {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1;
  color: #FFB347;
  margin-bottom: 0.25rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: -2px;
  transition: all 0.3s ease;
}

.dharma-description {
  font-size: 1rem;
  text-align: center;
  max-width: 150px;
  line-height: 1.3;
  color: #194560;
  font-weight: 600;
  display: block;
}

.dharma-menu-item.current-menu-item .dharma-letter, .dharma-menu-item.current-page-ancestor .dharma-letter {
  color: #DC143C;
}

.dharma-sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  list-style: none;
  padding: 1rem 0;
  margin: 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.dharma-sub-menu a {
  display: block;
  padding: 0.5rem 1.5rem;
  color: #2c3e50;
  text-decoration: none;
  transition: all 0.2s ease;
}
.dharma-sub-menu a:hover {
  background: rgba(255, 179, 71, 0.1);
  color: #DC143C;
  padding-left: 2rem;
}

.dharma-menu-item:hover > .dharma-sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#header-outer .dharma-nav-menu {
  align-items: center;
}
#header-outer.small-nav .dharma-letter {
  font-size: 2.5rem;
}
#header-outer.small-nav .dharma-description {
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .dharma-nav-menu {
    flex-direction: column;
    gap: 1rem;
  }
  .dharma-menu-link {
    flex-direction: row;
    gap: 1rem;
  }
  .dharma-letter {
    font-size: 2rem;
    margin-bottom: 0;
  }
  .dharma-description {
    text-align: center;
    max-width: none;
  }
  .dharma-sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-left: 3rem;
    margin-top: 0.5rem;
    background: transparent;
    box-shadow: none;
  }
}
/* Container + grid */
.biblio-archive-layout {
  margin: 0 0 2.5rem;
}

.biblio-page-title {
  margin: 0 0 1rem;
}

.biblio-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 2rem;
}

/* Sticky sidebar like all-resources */
.biblio-sidebar {
  position: sticky;
  top: 96px;
  /* adjust to your header height */
  align-self: start;
  max-height: calc(100vh - 120px);
  overflow: auto;
  padding-right: 0.25rem;
}

.biblio-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f9fa;
  border: 1px solid #e1e5e9;
  border-radius: 6px;
}

.biblio-nav-list li {
  margin: 0.2rem 0;
}

.biblio-nav-list a {
  display: block;
  padding: 0.35rem 0.25rem;
  text-decoration: none;
  border-radius: 4px;
}

.biblio-nav-list a:hover,
.biblio-nav-list a:focus {
  background: rgba(0, 0, 0, 0.05);
  text-decoration: underline;
}

/* Main column */
.biblio-heading {
  font-size: 1.35rem;
  margin: 1.5rem 0 0.5rem;
  scroll-margin-top: 110px;
  /* anchor offset under sticky header */
}

.biblio-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

/* Your item renderer controls the row markup & styling.
   We keep only minimal dividers here (optional). */
.biblio-items > * {
  padding: 0.5rem 0 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.biblio-items > *:last-child {
  border-bottom: 0;
}

/* Responsive */
@media (max-width: 1100px) {
  .biblio-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 1.5rem;
  }
  .biblio-sidebar {
    top: 84px;
  }
}
@media (max-width: 900px) {
  .biblio-layout {
    grid-template-columns: 1fr;
  }
  .biblio-sidebar {
    position: static;
    max-height: none;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
  }
  .biblio-heading {
    scroll-margin-top: 80px;
  }
}
/* --- BIBLIO ARCHIVE: sticky sidebar fixes --- */
/* 1) Ensure ancestors don’t block sticky */
.biblio-archive-layout,
.biblio-layout {
  overflow: visible !important;
}

/* 2) Grid + alignment so the sidebar can size itself */
.biblio-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  /* critical */
}

/* 3) Sticky element itself */
.biblio-sidebar {
  position: sticky;
  top: var(--biblio-sticky-top, 96px);
  /* adjust for your fixed header */
  height: fit-content;
  /* don’t stretch to grid row */
  align-self: start;
  /* critical inside CSS grid */
  overflow: visible;
  /* let it stick, no inner scroller */
  will-change: top;
  /* smoother repaint */
}

/* If your theme adds a transform to a wrapper (breaks sticky in some browsers), neutralize it here: */
.biblio-archive-layout,
.biblio-archive-layout *[style*=transform],
.biblio-layout {
  transform: none !important;
}

/* Optional: if WP admin bar is present, add more offset */
body.admin-bar .biblio-sidebar {
  --biblio-sticky-top: 169px;
}

/* Responsive keeps working */
@media (max-width: 900px) {
  .biblio-layout {
    grid-template-columns: 1fr;
  }
  .biblio-sidebar {
    position: static;
    /* no sticky on narrow screens */
    height: auto;
    top: auto;
  }
}
/* --- Bibliography Archive adjustments --- */
/* Center page title */
.biblio-page-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* Remove list bullets from sidebar nav */
.biblio-nav-list {
  list-style: none !important;
  padding-left: 20px;
  margin: 0;
}

/* Optional: tighten spacing for nav links */
.biblio-nav-list li {
  margin: 0.25rem 0;
  list-style: none;
}

/* Optional: make active hover state more subtle */
.biblio-nav-list a {
  text-decoration: none;
  color: inherit;
}

.biblio-nav-list a:hover {
  text-decoration: underline;
}

/* Only on Bibliography */
body.page-id-1202 {
  overflow: visible;
  /* keep full-bleed safety */
}

.dharma-menu-item:not(.dharma-connect-btn) .dharma-menu-link {
  flex-direction: column;
}

.sf-menu .dharma-menu-item:not(.dharma-connect-btn) .dharma-menu-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* horizontal centering */
  justify-content: flex-start;
  /* ⬅ anchor from the top */
  text-align: center;
  height: 100%;
  /* Equal letter box for alignment */
}
.sf-menu .dharma-menu-item:not(.dharma-connect-btn) .dharma-menu-link .dharma-letter {
  display: flex;
  align-items: flex-end;
  /* baseline aligned */
  justify-content: center;
  min-height: 80px;
  /* tweak until letters line up */
  line-height: 1;
  margin-bottom: 8px;
}
.sf-menu .dharma-menu-item:not(.dharma-connect-btn) .dharma-menu-link {
  /* Optional: control tagline wrapping */
}
.sf-menu .dharma-menu-item:not(.dharma-connect-btn) .dharma-menu-link .dharma-description {
  max-width: 20ch;
}

#top nav .dharma-menu-item .dharma-menu-link {
  padding-left: 15px;
  padding-right: 15px;
}

body.home #header-outer,
body.page-id-41 #header-outer,
body.page-id-161 #header-outer {
  background-color: transparent !important;
}

.connect-hero {
  color: white;
}
.connect-hero h2,
.connect-hero h3,
.connect-hero p,
.connect-hero a {
  color: white;
}

#load-more-container {
  text-align: center;
  margin-top: 30px;
}

#load-more-btn {
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  background: #f0f0f0;
  color: #333;
  transition: all 0.3s ease;
}

#load-more-btn:hover:not(.loading) {
  background: #e0e0e0;
}

#load-more-btn.loading {
  opacity: 0.6;
  cursor: not-allowed;
}

#ajax-content-wrap #slide-out-widget-area {
  background-color: #56575f;
}

/* Do NOT rely on .resource-bibliography + .bibliography-tags */
.resource-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.resource-tags .bib-tag {
  /* your existing pill styles */
}

/* Layout-only styles - inherits theme styling */
.care-page-wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.care-page-content {
  margin-bottom: 40px;
}

.care-layout {
  display: flex;
  gap: 40px;
}

.care-sidebar-wrapper {
  flex: 0 0 300px;
  width: 33vw;
}

.care-sidebar {
  position: sticky;
  top: 20px;
}

.theme-list {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: rgba(252, 214, 164, 0.2117647059);
  border: 1px solid #e1e5e9;
  border-radius: 6px;
}
.theme-list ul {
  list-style-type: none;
}

.theme-item {
  padding: 15px;
  margin-bottom: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-items: left;
  gap: 10px;
}

.care-content-wrapper {
  flex: 1;
  width: 67vw;
}

.care-content {
  min-height: 500px;
  padding: 0 40px;
  width: 97%;
}

.resource-item {
  margin-bottom: 40px;
  padding: 30px;
  position: relative;
}
.resource-item .resource-content,
.resource-item .resource-author {
  font-size: 1.3em;
  padding-bottom: 10px;
}
.resource-item .resource-content i {
  font-style: italic;
}
.resource-item .bibliography-item i {
  font-style: italic;
}
.resource-item .resource-themes {
  font-size: 0.8rem;
}
.resource-item .resource-author {
  padding-bottom: 0;
}
.resource-item .resource-title {
  text-align: right;
}
.resource-item .resource-bibliography {
  padding-top: 20px;
}
.resource-item .source-title {
  text-align: right;
}

.quote-number {
  position: absolute;
  top: -10px;
  left: 30px;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 18px;
}

.resource-item blockquote {
  margin: 20px 0;
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
}

.resource-item cite {
  font-style: normal;
  font-size: 14px;
}

.resource-link {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  transition: background 0.3s ease;
}

.loading-spinner {
  text-align: center;
  padding: 50px;
  font-size: 18px;
}

.error-message {
  text-align: center;
  padding: 50px;
  border-radius: 10px;
}

.retry-btn {
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 15px;
}

.care-footer {
  margin-top: 40px;
  padding: 30px;
  border-radius: 10px;
}

.thoughts-btn {
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  margin-right: 20px;
}

.related-themes {
  margin-top: 30px;
}

.related-themes ul {
  list-style: none;
  padding: 0;
}

.related-themes li {
  margin-bottom: 10px;
}

.related-themes a {
  text-decoration: none;
}

@media (max-width: 768px) {
  .care-layout {
    flex-direction: column;
  }
  .care-sidebar-wrapper {
    flex: none;
  }
  .care-sidebar {
    position: static;
  }
}
.theme-item.active > .theme-name {
  color: #FF8C00;
  /* or your theme color */
  border-color: #FF8C00;
}

ul.theme-item {
  list-style-type: none;
}
ul.theme-item li {
  list-style-type: none;
}

/* CARE Page Accordion Styles */
/* Parent theme with children styling */
.theme-item.has-children {
  position: relative;
}

/* Accordion toggle button */
.accordion-toggle {
  position: absolute;
  right: 10px;
  top: 15px;
  cursor: pointer;
  font-weight: bold;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 18px;
  transition: transform 0.2s ease;
}

/* Child themes container */
.child-themes {
  list-style: none !important;
  margin: 0;
  padding: 0;
  border-left: 2px solid #e0e0e0;
  margin-left: 20px;
  margin-top: 5px;
}

/* Individual child theme items */
.child-theme-item {
  padding: 8px 15px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease;
  position: relative;
}

.child-theme-item:last-child {
  border-bottom: none;
}

/* Child theme name styling */
.child-theme-name {
  font-size: 0.9em;
  display: block;
}

/* Hover effects */
.child-theme-item:hover,
.child-theme-item.hover {
  background-color: #f8f8f8;
  color: #2c3e50;
}

/* Active states */
.child-theme-item.active {
  color: #ff8c00;
}

/* Add some spacing for parent themes with children */
.theme-item.has-children .theme-name {
  padding-right: 30px;
  /* Make room for the toggle button */
}

/* Smooth transitions */
.child-themes {
  overflow: hidden;
  transition: all 0.3s ease;
}

li.theme-item::marker {
  display: none;
  content: "";
}

/* All Resources Filter Styles (Simplified) */
/* Center the sidebar content */
.all-resources-section .care-sidebar-wrapper {
  max-width: 280px;
  margin: 0 auto;
  padding: 20px;
  margin-right: 0;
}

.filter-section {
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f9fa;
  border: 1px solid #e1e5e9;
  border-radius: 6px;
}

.filter-section h4 {
  margin: 0 0 15px 0;
  font-size: 14px;
  font-weight: 600;
  color: #495057;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.search-section input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

/* Filter Checkboxes */
.filter-checkboxes label {
  display: block;
  margin-bottom: 8px;
  padding: 4px 0;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.4;
}

.filter-checkboxes input[type=checkbox] {
  margin-right: 8px;
}

.filter-checkboxes label:hover {
  background: rgba(0, 124, 186, 0.1);
  padding-left: 4px;
  margin-left: -4px;
  border-radius: 3px;
}

/* Hidden filters for "Show More" functionality */
.hidden-filter {
  display: none !important;
}

/* Show More buttons */
.show-more-filters {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 12px;
  background: #007cba;
  color: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-size: 12px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.show-more-filters:hover {
  background: #005a87;
}

/* Center the main content area */
.all-resources-section .care-content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
  margin-left: 0;
}

/* Results section */
.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e1e5e9;
}

.results-count {
  font-weight: 600;
  color: #495057;
}

.clear-filters-btn {
  padding: 8px 16px;
  background: #dc3545;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
}

.clear-filters-btn:hover {
  background: #c82333;
}

/* Resource items styling */
.resource-item {
  max-width: 700px;
  margin: 0 auto 30px auto;
  padding: 20px 0;
  border-bottom: 1px solid #e1e5e9;
}

/* Loading spinner */
.loading-spinner {
  text-align: center;
  padding: 40px 0;
  font-style: italic;
  color: #6c757d;
}

/* Load More button */
#load-more-btn {
  display: block;
  margin: 30px auto;
  padding: 12px 24px;
  background: #007cba;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

#load-more-btn:hover {
  background: #005a87;
}

#load-more-btn.loading {
  background: #6c757d;
  cursor: not-allowed;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .care-layout {
    flex-direction: column;
  }
  .care-sidebar-wrapper,
  .care-content-wrapper {
    width: 100%;
  }
  .all-resources-section .care-sidebar-wrapper {
    max-width: none;
    padding: 15px;
  }
  .all-resources-section .care-content-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
/* Filter Tags Styles */
.results-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e1e5e9;
}

.results-info {
  flex: 1;
}

.active-filters-tags {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-tag {
  display: inline-flex;
  align-items: center;
  background: #f1f1f1;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 4px 8px;
  font-size: 12px;
  color: #333;
}

.filter-tag-label {
  margin-right: 6px;
  font-weight: 500;
}

.filter-tag-value {
  margin-right: 6px;
}

.filter-tag-remove {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  padding: 0;
  margin-left: 4px;
}

.filter-tag-remove:hover {
  color: #dc3545;
}

/**
 * Recent Resources Shortcode Styles
 * Save as /css/recent-resources.css
 */
.recent-resources-section {
  margin: 40px 0;
  padding: 0;
}

/* Single Column Layout (default) */
.recent-resources-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

/* Individual Resource Item - Homepage Context */
.recent-resource-item {
  position: relative;
}

.resource-item-homepage {
  padding: 20px 0;
}

.resource-item-homepage:last-child {
  border-bottom: none;
}

/* Resource Title */
.resource-item-homepage .resource-title {
  font-size: 1.2em;
  line-height: 1.4;
  margin: 0 0 15px 0;
  font-weight: 600;
}

/* Resource Link */
.resource-item-homepage .resource-link {
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 15px;
  display: block;
  transition: color 0.3s ease;
}

.resource-item-homepage .resource-link:hover {
  text-decoration: underline;
}

/* Themes */
.resource-item-homepage .resource-themes {
  margin: 15px 0 10px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.resource-item-homepage .theme-tag {
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.85em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Author */
.resource-item-homepage .resource-author {
  font-size: 0.9em;
  font-style: italic;
  margin-top: auto;
  /* Push to bottom in flexbox */
  padding-top: 15px;
}

/* Footer with View All Button */
.recent-resources-footer {
  text-align: center;
  margin-top: 30px;
}

/* Error State */
.no-recent-resources {
  text-align: center;
  font-style: italic;
  padding: 40px 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .recent-resources-container {
    gap: 20px;
  }
  .resource-item-homepage {
    padding: 15px 0;
  }
  .resource-item-homepage .resource-title {
    font-size: 1.1em;
  }
  .view-all-resources-btn {
    padding: 12px 25px;
    font-size: 0.9em;
  }
}
@media (max-width: 480px) {
  .recent-resources-section {
    margin: 30px 0;
  }
  .resource-item-homepage {
    padding: 15px;
  }
  .resource-item-homepage .resource-themes {
    margin: 10px 0 8px 0;
  }
  .resource-item-homepage .theme-tag {
    font-size: 0.8em;
    padding: 3px 10px;
  }
}
/* Salient Theme Compatibility */
.nectar-slider-wrap + .recent-resources-section,
.full-width-section .recent-resources-section {
  margin-top: 60px;
}

.resource-author,
.source-title {
  text-align: right;
}

.care-video-section {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  margin-bottom: 60px;
  align-items: flex-start;
  border: 1px #e3d9d9 solid;
  padding: 50px;
}
@media (max-width: 968px) {
  .care-video-section {
    flex-direction: column;
  }
}
.care-video-section-1, .care-video-section-2 {
  flex: 1;
}
.care-video-section-1 {
  font-size: 1rem;
  line-height: 1.6;
}
.care-video-section-2 .video-wrapper {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 8px;
}
.care-video-section-2 .video-wrapper img,
.care-video-section-2 .video-wrapper iframe {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
}
.care-video-section-2 .video-wrapper .video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  opacity: 0.9;
  padding: 0;
}
.care-video-section-2 .video-wrapper .video-play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  opacity: 1;
}
.care-video-section-2 .video-wrapper .video-play-button svg {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.page-id-2 .dharma-description,
.page-id-41 .dharma-description {
  color: white;
}

.when-harm-arises.wpb_row {
  margin-top: 40px;
  margin-bottom: 80px;
}
.when-harm-arises.wpb_row h1.gradient-text {
  margin-top: 40px;
  font-size: 4.5rem;
  line-height: 6rem;
  text-align: center;
  margin-left: 5vw;
  margin-right: 5vw;
  text-transform: uppercase;
  font-weight: 400;
}

.purple-box p {
  color: #fff;
  font-family: "Alata", sans-serif;
  font-size: 1.3rem;
  line-height: 2rem;
}

/* Main section */
.community-section {
  background: #2c5f8d;
  padding: 60px 0px;
  text-align: center;
}

/* Heading */
.community-heading {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.community-heading .wpb_wrapper {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.community-heading h2 {
  font-size: 1.4em;
  line-height: 1.6em;
  font-weight: normal;
}

.community-section h5,
.community-heading h5 {
  color: #fff;
  font-weight: normal;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* Quote cards overlay */
.quote-card {
  background: rgba(44, 95, 141, 0.85);
  padding: 30px;
  border-radius: 8px;
  color: white;
  margin: 20px;
  backdrop-filter: blur(5px);
}

.quote-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.quote-attribution {
  font-style: italic;
  font-size: 0.9rem;
  color: #FFB347;
}

/* Negative margin to overlap image */
.quotes-row {
  margin-top: -150px;
  position: relative;
  z-index: 10;
}

.second-h5 {
  max-width: 67%;
  margin-left: auto;
  margin-right: auto;
}

.theme-item {
  cursor: pointer;
}

.theme-item.active > .theme-title {
  font-weight: 700;
  text-decoration: underline;
}

.community-quotes-row {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.community-quote-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 20px 0;
  border-radius: 4px;
  color: white;
  margin: 20px 0;
}

.quote-icon {
  font-size: 2rem;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 20px;
  left: 11px;
}

.quote-text {
  font-size: 1rem;
  line-height: 1.6;
  padding: 20px 40px 10px;
  margin-bottom: 10px;
}

.quote-attribution {
  font-style: italic;
  font-size: 0.9rem;
  color: #FFB347;
}

.care-page-content-bottom #care-bottom-section h5 {
  color: #fff;
}
.care-page-content-bottom .regular-button.btn-primary.dharma-menu-link, .care-page-content-bottom .dharma-menu-item.dharma-connect-btn .regular-button.dharma-menu-link, .dharma-menu-item.dharma-connect-btn .care-page-content-bottom .regular-button.dharma-menu-link {
  border: 3px solid #ffe8c7;
}

.footer-submenu-wrapper {
  display: inline;
}
.footer-submenu-wrapper .footer-submenu-nav {
  display: inline;
  text-align: right;
  float: right;
}
.footer-submenu-wrapper .footer-submenu-nav ul,
.footer-submenu-wrapper .footer-submenu-nav li {
  display: inline;
}
.footer-submenu-wrapper .footer-submenu-nav li {
  padding: 0 10px;
}

#footer-outer #menu-footer_submenu a {
  color: #6c6b6b;
}

.bibliography-item .bibliography-entry {
  font-size: 0.8rem;
}

.bibliography-tags {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.bib-tag {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 12px;
  background: #f2f2f2;
  color: #444;
}

.bibliography-tags {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.bib-tag {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 12px;
  background: #f2f2f2;
  color: #444;
}

/* Ensure inline formatting renders inside resource titles */
.resource-title em,
.resource-title i {
  font-style: italic !important;
}

.resource-title b,
.resource-title strong {
  font-weight: 700 !important;
}

.resource-title u {
  text-decoration: underline !important;
}

/* If the title is a link, Salient may normalize fonts on <a> */
.resource-title a em,
.resource-title a i {
  font-style: italic !important;
}

@media screen and (max-width: 776px) {
  #menu-main-navigation {
    display: none;
  }
}
@media screen and (max-width: 997px) {
  .footer-submenu-wrapper .footer-submenu-nav {
    float: none;
    text-align: center;
  }
  #footer-outer #footer-widgets {
    text-align: center;
  }
  #footer-outer[data-full-width="1"] .container .container {
    padding: 0;
  }
  .care-sidebar-wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }
}
#ajax-content-wrap li.theme-item {
  list-style: none;
}

span.yellow {
  color: rgb(255, 149, 16);
}

#footer-outer {
  background: #ffffff;
  border: none;
  padding: 0;
  margin: 20px auto;
  max-width: 1200px;
}
@media (max-width: 1240px) {
  #footer-outer {
    margin: 20px;
  }
}
#footer-outer .col:last-child {
  display: flex;
  align-items: center;
}
@media (max-width: 999px) {
  #footer-outer .col:last-child {
    justify-content: center;
    flex-wrap: wrap;
  }
}
#footer-outer .col:last-child nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (max-width: 768px) {
  #footer-outer .col:last-child nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}
#footer-outer .col:last-child nav ul li {
  margin: 0;
  padding: 0;
}
#footer-outer .col:last-child nav ul li:before {
  content: none;
}
#footer-outer .col:last-child nav ul li a {
  background: linear-gradient(180deg, #FFB347 0%, #FF8C00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}
#footer-outer .col:last-child nav ul li a:hover {
  background: linear-gradient(180deg, #FF8C00 0%, #DC143C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 768px) {
  #footer-outer .col:last-child nav ul li a {
    font-size: 20px;
  }
}
#footer-outer #footer-widgets .widget_nav_menu li a[href^=mailto] {
  position: relative;
  font-size: 0 !important;
  line-height: 0;
  width: auto;
  height: auto;
}
#footer-outer #footer-widgets .widget_nav_menu li a[href^=mailto]:before {
  content: "\f003";
  font-family: "FontAwesome";
  font-size: 28px !important;
  line-height: 1;
  display: inline-block;
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
  vertical-align: middle;
  background: linear-gradient(180deg, #FFB347 0%, #FF8C00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
#footer-outer #footer-widgets .widget_nav_menu li a[href^=mailto]:hover:before {
  background: linear-gradient(180deg, #FF8C00 0%, #DC143C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
#footer-outer #footer-widgets .widget_nav_menu li a[href^=mailto] * {
  display: none;
}

#footer-widgets {
  background: #ffffff;
  padding: 40px 0px;
}
@media (max-width: 768px) {
  #footer-widgets {
    padding: 30px 20px;
  }
}
#footer-widgets .container {
  max-width: 100%;
  padding: 0;
}
#footer-widgets .row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 999px) {
  #footer-widgets .row {
    flex-direction: column;
  }
}
#footer-widgets .col:first-child {
  display: flex;
  align-items: flex-start;
  flex: 0 0 50%;
  max-width: 50%;
}
@media (max-width: 999px) {
  #footer-widgets .col:first-child {
    margin-bottom: 30px;
    flex: 1 1 100%;
    max-width: 100%;
  }
}
#footer-widgets .col:first-child img {
  flex: 0 0 33%;
  max-width: 160px;
  height: auto;
  object-fit: contain;
}
#footer-widgets .col:first-child .mission-text {
  flex: 1 1 67%;
  font-size: 14px;
  line-height: 1.6;
  color: #2c3e50;
}
#footer-widgets .col:first-child .mission-text strong {
  color: #dc143c;
  font-weight: 600;
}
#footer-widgets .col:last-child {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  justify-content: flex-end;
}
@media (max-width: 999px) {
  #footer-widgets .col:last-child {
    justify-content: center;
    flex-wrap: wrap;
  }
}

#footer-outer #copyright.dharma-copyright-bar {
  background: #ffffff;
  border-top: 1px solid #FFB347;
  padding-top: 60px;
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  #footer-outer #copyright.dharma-copyright-bar {
    padding: 20px;
  }
}
#footer-outer #copyright.dharma-copyright-bar .container {
  max-width: 100%;
  padding: 0;
}
#footer-outer #copyright.dharma-copyright-bar .row {
  display: block;
}
#footer-outer #copyright.dharma-copyright-bar .copyright-content {
  width: 100%;
  display: block;
}
#footer-outer #copyright.dharma-copyright-bar .copyright-year {
  font-size: 16px;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 500;
}
#footer-outer #copyright.dharma-copyright-bar .copyright-bottom {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 999px) {
  #footer-outer #copyright.dharma-copyright-bar .copyright-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
#footer-outer #copyright.dharma-copyright-bar .disclaimer {
  flex: 0 0 67%;
  font-size: 13px;
  line-height: 1.8;
}
@media (max-width: 999px) {
  #footer-outer #copyright.dharma-copyright-bar .disclaimer {
    flex: 1 1 100%;
  }
}
#footer-outer #copyright.dharma-copyright-bar .disclaimer .disclaimer-label {
  color: #dc143c;
  font-weight: 600;
}
#footer-outer #copyright.dharma-copyright-bar .disclaimer .disclaimer-text {
  color: #2c3e50;
}
#footer-outer #copyright.dharma-copyright-bar .disclaimer a {
  color: #2874A6;
  text-decoration: none;
}
#footer-outer #copyright.dharma-copyright-bar .disclaimer a:hover {
  color: #FFB347;
  text-decoration: underline;
}
#footer-outer #copyright.dharma-copyright-bar .social-buttons {
  flex: 1 1 auto;
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 999px) {
  #footer-outer #copyright.dharma-copyright-bar .social-buttons {
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  #footer-outer #copyright.dharma-copyright-bar .social-buttons {
    justify-content: center;
  }
}
#footer-outer #copyright.dharma-copyright-bar ul.social {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
  display: flex;
  gap: 15px;
}
@media (max-width: 768px) {
  #footer-outer #copyright.dharma-copyright-bar ul.social {
    justify-content: center;
  }
}
#footer-outer #copyright.dharma-copyright-bar ul.social li {
  margin: 0;
  padding: 0;
}
#footer-outer #copyright.dharma-copyright-bar ul.social li:before {
  content: none;
}
#footer-outer #copyright.dharma-copyright-bar ul.social li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  background: #FFB347;
  color: #ffffff;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
#footer-outer #copyright.dharma-copyright-bar ul.social li a:hover {
  background: rgb(255, 157.9347826087, 20);
  transform: translateY(-2px);
}
#footer-outer #copyright.dharma-copyright-bar ul.social li a i {
  font-size: 16px;
  margin-right: 8px;
}

#footer-widgets .widget,
#copyright .widget {
  margin-bottom: 0;
}
#footer-widgets .widget .widget-title,
#copyright .widget .widget-title {
  display: none;
}
#footer-widgets .widget_text .textwidget,
#copyright .widget_text .textwidget {
  font-size: 14px;
  line-height: 1.8;
  color: #2c3e50;
}
#footer-widgets .widget_text .textwidget p,
#copyright .widget_text .textwidget p {
  margin-bottom: 10px;
}
#footer-widgets .widget_nav_menu ul,
#copyright .widget_nav_menu ul {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  #footer-widgets .widget_nav_menu ul,
  #copyright .widget_nav_menu ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}
#footer-widgets .widget_nav_menu ul li,
#copyright .widget_nav_menu ul li {
  margin: 0;
  padding: 0;
}
#footer-widgets .widget_nav_menu ul li:before,
#copyright .widget_nav_menu ul li:before {
  content: none;
}
#footer-widgets .widget_nav_menu ul li a,
#copyright .widget_nav_menu ul li a {
  color: #FFB347;
  text-decoration: none;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}
#footer-widgets .widget_nav_menu ul li a:hover,
#copyright .widget_nav_menu ul li a:hover {
  color: #2874A6;
}
#footer-widgets .widget_custom_html .textwidget,
#copyright .widget_custom_html .textwidget {
  font-size: 14px;
  line-height: 1.8;
}

#footer-widgets .dharma-footer-logo-section {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}
#footer-widgets .dharma-footer-logo-section img {
  width: 160px;
  height: auto;
  flex-shrink: 0;
}

#footer-widgets .dharma-footer-logo-section .mission-text {
  font-size: 14px;
  line-height: 1.6;
  color: #2c3e50;
  flex: 1;
  min-width: 0;
}
#footer-widgets .dharma-footer-logo-section .mission-text strong {
  color: #dc143c;
  font-weight: 600;
}

.dharma-footer-nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.dharma-footer-nav ul li a {
  color: #FFB347;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 2px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.dharma-footer-nav ul li a:hover {
  color: #2874A6;
}

#footer-outer * {
  box-sizing: border-box;
}
#footer-outer #footer-widgets,
#footer-outer #copyright,
#footer-outer .container,
#footer-outer .row {
  background: #ffffff !important;
}

.menu-footer-care-menu-container nav ul,
.menu-footer-care-menu-container .menu ul,
#menu-footer-care-menu nav ul,
#menu-footer-care-menu .menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
  align-items: center;
}
@media (max-width: 768px) {
  .menu-footer-care-menu-container nav ul,
  .menu-footer-care-menu-container .menu ul,
  #menu-footer-care-menu nav ul,
  #menu-footer-care-menu .menu ul {
    justify-content: center;
  }
}
.menu-footer-care-menu-container nav ul li,
.menu-footer-care-menu-container .menu ul li,
#menu-footer-care-menu nav ul li,
#menu-footer-care-menu .menu ul li {
  margin: 0;
  padding: 0;
}
.menu-footer-care-menu-container nav ul li:before,
.menu-footer-care-menu-container .menu ul li:before,
#menu-footer-care-menu nav ul li:before,
#menu-footer-care-menu .menu ul li:before {
  content: none;
}
.menu-footer-care-menu-container nav ul li a,
.menu-footer-care-menu-container .menu ul li a,
#menu-footer-care-menu nav ul li a,
#menu-footer-care-menu .menu ul li a {
  color: #FFB347;
  text-decoration: none;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 2px;
  transition: color 0.3s ease;
  padding: 0;
  display: inline-block;
}
.menu-footer-care-menu-container nav ul li a:hover,
.menu-footer-care-menu-container .menu ul li a:hover,
#menu-footer-care-menu nav ul li a:hover,
#menu-footer-care-menu .menu ul li a:hover {
  color: #2874A6;
}
@media (max-width: 768px) {
  .menu-footer-care-menu-container nav ul li a,
  .menu-footer-care-menu-container .menu ul li a,
  #menu-footer-care-menu nav ul li a,
  #menu-footer-care-menu .menu ul li a {
    font-size: 20px;
  }
}

#footer-widgets .widget_nav_menu ul {
  padding-top: 40px;
}
#footer-widgets .widget_nav_menu ul li {
  padding: 0 !important;
}
#footer-widgets .widget_nav_menu ul li a {
  padding: 0 !important;
}

#menu-footer_submenu li {
  display: block;
}

#footer-widgets .widget_nav_menu li a[href^=mailto] {
  position: relative;
  font-size: 0 !important;
  line-height: 0;
  width: auto;
  height: auto;
}
#footer-widgets .widget_nav_menu li a[href^=mailto]:before {
  content: "\f003";
  font-family: "FontAwesome";
  font-size: 28px !important;
  line-height: 1;
  display: inline-block;
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
  vertical-align: middle;
}
#footer-widgets .widget_nav_menu li a[href^=mailto] * {
  display: none;
}

#footer-outer #footer-widgets .widget_nav_menu ul#menu-footer-care-menu li.menu-item {
  position: relative;
}
#footer-outer #footer-widgets .widget_nav_menu ul#menu-footer-care-menu li.menu-item:not(:last-child) {
  padding-left: 10px !important;
  padding-right: 10px !important;
}
#footer-outer #footer-widgets .widget_nav_menu ul#menu-footer-care-menu li.menu-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 30px;
  background: linear-gradient(180deg, #FFB347 0%, #FF8C00 100%);
}

#copyright.row .container .copyright-year {
  width: 100% !important;
}

#copyright .copyright-bottom .social-buttons .btn.dharma-btn.dharma-connect-button,
#copyright .copyright-bottom .social-buttons .dharma-btn.dharma-connect-button {
  color: #fff;
}

.color-me-red {
  color: #DC143C;
}

@media only screen and (max-width: 999px) and (min-width: 690px) {
  .vc_column-inner .dharma-hero-section {
    margin-top: 24vh;
  }
}
@media only screen and (max-width: 690px) {
  .vc_column-inner .dharma-hero-section {
    margin-top: 0;
  }
}

/*# sourceMappingURL=dharma-compiled.css.map */
