@charset "utf-8";  
 
:root { 
  --purple-deep: #301334;
  --purple-main: #702277;
  --purple-soft: #f7f0fb;
  --gold: #d4af37;
  --gold-soft: #f8f1dd;
  --white: #ffffff;
  --text: #3f3745;
  --text-soft: #655d6d;
  --border: rgba(112, 34, 119, 0.14);
  --shadow: 0 14px 34px rgba(35, 15, 40, 0.08);
  --shadow-soft: 0 8px 24px rgba(35, 15, 40, 0.07);
  --radius: 24px;
  --radius-sm: 18px;
  --max-width: 1200px; 
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  padding-top: 68px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

.section { padding: 52px 0; }
.section-soft {
  background: linear-gradient(180deg, #fcf8fe 0%, var(--purple-soft) 100%);
}
.section-dark {
  background: linear-gradient(180deg, var(--purple-deep) 0%, #4a2252 100%);
  color: var(--white);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(48, 19, 52, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.18);
}
.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 9px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
}
.logo span {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.logo-img { width: 34px; height: 34px; object-fit: contain; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-links a {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), #f6df8f);
  transition: width 0.2s ease;
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after { width: 100%; }

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-cta:hover,
.btn:hover { transform: translateY(-1px); }

.nav-cta {
  background: linear-gradient(to right, var(--gold), #f1d77a);
  color: var(--purple-deep);
  padding: 10px 16px;
  font-size: 0.92rem;
  box-shadow: var(--shadow-soft);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  padding: 8px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.7);
  background: transparent;
  cursor: pointer;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
}

/* Hero */
.hero {
  padding-top: 12px;
  padding-bottom: 24px;
  background:
    radial-gradient(circle at top left, rgba(112,34,119,0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(212,175,55,0.14), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #faf7fd 100%);
}
.hero-intro {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 22px;
}
.hero-kicker {
  color: var(--purple-main);
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 0.95rem;
  margin: 0 auto 8px;
}
.hero h1,
.section-title,
.section-heading h2,
.membership-card-top,
.site-footer h3,
.course-card h3,
.resource-card h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
}
.hero h1 {
  font-size: clamp(1.7rem, 3.4vw, 3rem);
  line-height: 1.16;
  max-width: 1080px;
  margin: 0 auto 14px;
  color: var(--purple-deep);
  text-wrap: balance;
}
.hero-lead {
  max-width: 900px;
  margin: 0 auto 12px;
  font-size: 1.06rem;
  color: var(--text-soft);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin: 18px auto 0;
}

.btn {
  padding: 13px 22px;
  font-size: 0.97rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--purple-main), #8f3598);
  color: var(--white);
}
.btn-secondary {
  background: var(--white);
  color: var(--purple-main);
  border: 1px solid rgba(112,34,119,0.24);
}
.btn-light {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.22);
}
.btn-block { width: 100%; }

.hero-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 18px;
}
.hero-quote-card,
.hero-image-card,
.resource-card,
.course-card,
.membership-card,
.media-image-card,
.qr-card,
.about-photo-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}

/* make image of Beverly smaller */
.about-photo {
  width: 100%;
  max-width: 340px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #d4af37;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}


.hero-quote-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-quote-card p {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--purple-deep);
  margin: 0 0 12px;
}
.hero-quote-card span {
  color: var(--text-soft);
  font-weight: 700;
}
.hero-image-card {
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #fcf8fe 0%, #f7f0fb 100%);
} 
.hero-image {
  max-width: 86%;
  max-height: 420px;
  object-fit: contain;
}

.path-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.path-ribbon-item {
  text-align: center;
  padding: 4px 6px;
}
.step-title {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.25;
  color: var(--purple-deep);
  margin-bottom: 4px;
}
.step-sub {
  font-size: 0.94rem;
  line-height: 1.34;
  color: var(--text-soft);
}

/* Generic sections */
.section-heading.centered {
  text-align: center;
}
.section-heading.narrow {
  max-width: 780px;
  margin: 0 auto 26px;
}
.section-title,
.section-heading h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin: 0 0 10px;
  color: var(--purple-deep);
}
.section-subtitle,
.section-heading p,
.body-copy {
  font-size: 1rem;
  color: var(--text-soft);
  margin: 0 0 18px;
}
.section-dark .section-title,
.section-dark .section-heading h2 { color: var(--white); }
.section-dark .section-subtitle,
.section-dark .section-heading p,
.section-dark .body-copy { color: rgba(255,255,255,0.84); }

/* Cards / grids */
.resource-grid,
.course-grid {
  display: grid;
  gap: 20px;
}
.resource-grid.compact-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
/*  changed size from 1120 to 900 so it fits on a laptop */
.framework-spiral-wrap {
  max-width: 900px;
  margin: 24px auto 28px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}

/* changed max width & margin 0 so image is smaller  */
.framework-spiral-image {
  width: 100%;
  max-width: 650px;
  height: auto;
  border-radius: 14px;
  display: block;
  margin: 0 auto;
}

.course-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.course-grid.compact-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
/* add more columns to the grid */
.assessment-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.resource-card,
.course-card {
  padding: 20px;
}


.resource-thumb,
.course-icon {
  width: 100%;
  max-width: 150px;
  height: auto;
  display: block;
  margin: 0 auto 14px;
  border-radius: 14px;
}

/* changed from 150 to 350 for wu-shen image */
.capacities-image {
    max-width: 250px;
}


.course-icon.small-icon { max-width: 120px; }

.resource-card h3,
.course-card h3 {
  font-size: 1.26rem;
  margin: 0 0 8px;
  color: var(--purple-main);
}
.resource-card p,
.course-card p {
  margin: 0 0 14px;
}
.pill-label {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  background-color: #f2e7c9;
  color: var(--purple-main);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.pill-label.muted {
  background: #eee6f2;
}
.text-link {
  color: var(--purple-main);
  font-weight: 700;
  text-decoration: underline;
}
.button-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.button-stack.left {
  align-items: flex-start;
}

/* Membership */
.membership-band {
  display: grid;
  grid-template-columns: 1.8fr 0.95fr;
  gap: 26px;
  background: linear-gradient(180deg, #f4ecdf 0%, #f8f1dd 100%);
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 28px;
}
.membership-main .section-heading { margin-bottom: 14px; }
.membership-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 12px 18px;
  align-items: start;
}
.mem-label {
  font-weight: 700;
  color: var(--purple-deep);
}
.mem-desc {
  color: var(--text);
}
.membership-card {
  padding: 24px;
  align-self: start;
}
.membership-card-top {
  color: var(--purple-main);
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.membership-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--purple-main);
  margin-bottom: 10px;
}
.membership-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-soft);
}
.membership-copy {
  margin: 0 0 14px;
}

/* Questions Band */
.question-band {
  grid-template-columns: 1fr;
}
.question-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-points {
  margin: 16px 0 0;
  padding-left: 18px;
}
.price-points li { margin-bottom: 6px; }

/* Feature rows */
.two-column.feature-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}
.media-image-card,
.about-photo-card,
.qr-card {
  padding: 18px;
}
.section-image,
.about-photo {
  border-radius: 18px;
}
.app-side-stack {
  display: grid;
  gap: 18px;
}
.qr-card h3 {
  margin: 0 0 8px;
  color: var(--purple-main);
}
.qr-image {
  max-width: 180px;
  margin-top: 12px;
}
.store-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.store-badge {
  max-width: 180px;
}
.events-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 18px;
}
.events-list li { margin-bottom: 8px; }

/* Footer 2026 07 22 new footer */
/* Footer */
.site-footer {
  clear: both;
  display: block;
  width: 100%;
  background-color: var(--purple-deep);
  color: var(--white);
  padding: 36px 0 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 34px 58px;
  align-items: start;
}

.site-footer .container.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

.footer-grid > div {
  min-width: 0;
}

.site-footer h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.05rem;
  line-height: 1.25;
  margin: 0 0 10px;
  color: var(--white);
}

.site-footer p {
  margin: 0 0 10px;
  color: #f0e9ff;
  line-height: 1.55;
}

.footer-links {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #f0e9ff;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 20px auto 0;
  padding: 0 16px;
  display: block;
  width: 100%;
  text-align: center;
  font-size: 0.85rem;
  color: #d4cae0;
}

/*  footer code for 3 columns deleted 7/22/2026 */






.site-footer h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.05rem;
  line-height: 1.25;
  margin: 0 0 10px;
  color: var(--white);
}

.site-footer p {
  margin: 0 0 10px;
  color: #f0e9ff;
  line-height: 1.55;
}

.footer-links {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #f0e9ff;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 20px auto 0;
  padding: 0 16px;
  display: block;
  width: 100%;
  text-align: center;
  font-size: 0.85rem;
  color: #d4cae0;
}


/* Sitemap */
.sitemap-hero {
  padding-bottom: 42px;
}

.sitemap-card {
  max-width: 680px;
  margin: 0 auto;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}

.sitemap-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sitemap-list li + li {
  margin-top: 10px;
}

.sitemap-list a {
  display: block;
  padding: 12px 14px;
  color: var(--purple-main);
  font-weight: 700;
  background: #fbf7fd;
  border: 1px solid rgba(112, 34, 119, .16);
  border-radius: 12px;
}

.sitemap-list a:hover,
.sitemap-list a:focus-visible {
  background: #f8eef9;
}


/* ===== ADBO HERO ===== */
.adbo-hero-card{
background:#fff;border:1px solid rgba(112,34,119,.16);border-radius:28px;
padding:54px 42px 48px;box-shadow:var(--shadow-soft);}
.adbo-hero-heading{text-align:center;margin:0 auto 30px;max-width:980px;}
.adbo-hero-heading h1{text-align:center;margin:20px auto 0;max-width:980px;}
.adbo-hero-content{display:grid;grid-template-columns:3fr 1fr;gap:36px;align-items:center;}
.adbo-hero-text{text-align:left;}
.adbo-hero-text p{text-align:left;}
.adbo-hero-image{display:flex;justify-content:center;align-items:center;}
.adbo-hero-image img{max-width:320px;width:100%;height:auto;}
@media(max-width:760px){
.adbo-hero-content{grid-template-columns:1fr;}
}

/* Responsive */
@media (max-width: 1100px) {
  .resource-grid.compact-four,
  .course-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .course-grid.compact-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  body { padding-top: 64px; }
  .section { padding: 44px 0; }

  .hamburger { display: flex; }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(48, 19, 52, 0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 16px;
    gap: 10px;
    display: none;
  }
  .main-nav.open { display: flex; }

  .nav-links {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .nav-cta { width: 100%; text-align: center; }

  .hero h1 { font-size: 1.6rem; }
  .hero-stage,
  .membership-band,
  .two-column.feature-row,
  .course-grid.compact-cards,
  .membership-grid {
    grid-template-columns: 1fr;
  }
  .path-ribbon {
    grid-template-columns: repeat(2, 1fr);
  }
  .membership-band { padding: 22px; }
}

@media (max-width: 640px) {
  body { padding-top: 62px; }
  .container { padding: 0 14px; }

  .hero h1 { font-size: 1.32rem; }
  .hero-lead { font-size: 0.98rem; }
  .hero-actions { gap: 10px; }
  .btn,
  .nav-cta { width: 100%; }

  .hero-stage,
  .resource-grid.compact-four,
  .course-grid,
  .path-ribbon {
    grid-template-columns: 1fr;
  }

  .hero-quote-card,
  .resource-card,
  .course-card,
  .membership-card,
  .media-image-card,
  .about-photo-card,
  .qr-card { padding: 18px; }

  .hero-image { max-width: 78%; }
}


/* ===== About section balance fix ===== */
#about .two-column.feature-row {
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: center;
}

#about .about-photo-card {
  max-width: 420px;
  margin: 0 auto;
  padding: 10px;
}

#about .about-photo {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #d4af37;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  margin: 0 auto;
}

#about .section-title,
#about .section-heading h2 {
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  line-height: 1.15;
  margin-bottom: 14px;
}

#about .section-subtitle,
#about .body-copy {
  font-size: 1.16rem;
  line-height: 1.65;
  max-width: 720px;
}

#about .button-stack.left {
  margin-top: 6px;
}

@media (max-width: 980px) {
  #about .two-column.feature-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #about .about-photo-card {
    max-width: 360px;
  }

  #about .section-title,
  #about .section-heading h2 {
    font-size: 2rem;
  }

  #about .section-subtitle,
  #about .body-copy {
    font-size: 1.06rem;
    max-width: none;
  }
}

@media (max-width: 640px) {
  #about .about-photo-card {
    max-width: 320px;
    padding: 8px;
  }

  #about .about-photo {
    max-width: 260px;
  }

  #about .section-title,
  #about .section-heading h2 {
    font-size: 1.7rem;
  }

  #about .section-subtitle,
  #about .body-copy {
    font-size: 1rem;
  }
}

/* Resource library page */
.catalog-intro {
  max-width: 860px;
  margin: 0 auto 28px;
  text-align: center;
}
.catalog-section {
  margin-top: 26px;
}
.catalog-heading {
  font-family: "Playfair Display", "Times New Roman", serif;
  color: var(--purple-deep);
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 0 0 16px;
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.catalog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.catalog-card h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  color: var(--purple-main);
  font-size: 1.28rem;
  margin: 0 0 8px;
}
.catalog-card p {
  margin: 0 0 12px;
  color: var(--text-soft);
}
.catalog-meta {
  font-weight: 700;
  color: var(--purple-deep);
  margin-bottom: 12px;
}
.catalog-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.notice-card {
  background: linear-gradient(180deg, #fcf8fe 0%, #f7f0fb 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}
.notice-card p {
  margin: 0;
  color: var(--text-soft);
}
@media (max-width: 980px) {
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .catalog-grid {
    grid-template-columns: 1fr;
  }
}






/* Resources Library */
.resources-nav-section {
  padding: 20px 0;
}

.resources-intro-section {
  padding-top: 34px;
  padding-bottom: 34px;
}

/* additional resources for the DBEA app page  */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.resources-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.app-store-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.app-store-buttons img {
  max-width: 180px;
  height: auto;
  display: block;
}

.app-qr img {
    max-width: 220px;
    width: auto;
    height: auto;
    display: block;
    margin: 16px auto 0;
}

.app-preview-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

@media (max-width: 800px) {
  .resources-grid,
  .resources-grid-3 {
    grid-template-columns: 1fr;
  }
}

/*  end of new resources */



.section-jump-nav,
.section-next-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.section-jump-nav a,
.section-next-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(112, 34, 119, 0.18);
  color: var(--purple-main);
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.section-next-links {
  margin-top: 28px;
}

.catalog-grid-wide {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.single-card-grid {
  grid-template-columns: 1fr;
  max-width: 880px;
  margin: 0 auto;
}

.catalog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  padding: 20px;
}

.catalog-card-with-image {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.catalog-thumb-button {
  width: 128px;
  height: 128px;
  border: 1px solid rgba(112, 34, 119, 0.16);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  background: var(--purple-soft);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.catalog-thumb {
  width: 128px;
  height: 128px;
  object-fit: cover;
  display: block;
}

.catalog-content h3 {
  margin-top: 0;
  color: var(--purple-main);
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.32rem;
  line-height: 1.2;
}

.catalog-content p {
  margin: 0 0 10px;
}

.catalog-meta {
  font-weight: 700;
  color: var(--purple-deep);
  margin: 12px 0;
}

.catalog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
}

.image-modal {
  display: none;
  position: fixed;
  z-index: 4000;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 82px 20px 30px;
  background: rgba(0, 0, 0, 0.86);
}

.image-modal.open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-modal-content {
  max-width: min(92vw, 980px);
  max-height: 82vh;
  object-fit: contain;
  border-radius: 18px;
  background: var(--white);
}

.image-close {
  position: absolute;
  top: 20px;
  right: 28px;
  border: none;
  background: transparent;
  color: var(--white);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 980px) {
  .catalog-grid-wide {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .catalog-card-with-image {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
  }

  .catalog-thumb-button,
  .catalog-thumb {
    width: 96px;
    height: 96px;
  }

  .catalog-card {
    padding: 16px;
  }

  .catalog-content h3 {
    font-size: 1.15rem;
  }

  .section-jump-nav a,
  .section-next-links a {
    width: 100%;
  }
}


/* Consolidated ADBO navigation and resource pages */
.site-header,
.nav-container,
.main-nav,
.nav-links,
.nav-dropdown {
  overflow: visible;
}

.site-header {
  z-index: 3000;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  color: var(--white);
  font: inherit;
  font-size: .95rem;
  font-weight: 700;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 6px 0 14px; /* extra bottom padding keeps hover active while moving into dropdown */
}

.dropdown-menu {
  position: absolute;
  top: 100%; /* no hover-breaking gap between button and dropdown */
  left: 0;
  min-width: 240px;
  list-style: none;
  margin: 0;
  padding: 10px;
  background: #fff;
  border: 1px solid rgba(112,34,119,.18);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  display: none;
  z-index: 3001;
  pointer-events: auto;
}

.dropdown-menu a {
  display: block;
  color: var(--purple-deep);
  padding: 9px 10px;
  border-radius: 6px;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: #f8eef9;
}

.dropdown-label {
  margin: 8px 8px 4px;
  padding-top: 8px;
  border-top: 1px solid rgba(112,34,119,.16);
  color: var(--text-soft);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-dropdown:hover > .dropdown-menu,
.nav-dropdown:focus-within > .dropdown-menu,
.nav-dropdown.open > .dropdown-menu {
  display: block;
}
.resources-hero {
  padding: 38px 0 50px;
  background:
    radial-gradient(circle at top left, rgba(112,34,119,.08), transparent 30%),
    radial-gradient(circle at top right, rgba(212,175,55,.18), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fbf7fd 100%);
}
.resources-container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.resources-hero-card {
  background: #fff;
  border: 1px solid rgba(112,34,119,.16);
  border-radius: 28px;
  padding: 54px 42px 48px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

/* 2026 07 26 add left align text  */
/* Left-aligned body text inside centered hero */
.hero-left {
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

.hero-left p {
    text-align: left;
}






.resources-kicker,
.section-kicker {
  color: var(--purple-main);
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.resources-hero-card h1 {
  font-family: "Playfair Display", "Times New Roman", serif;
  color: var(--purple-deep);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
  max-width: 980px;
  margin: 20px auto 22px;
}
.resources-lead {
  color: var(--text-soft);
  font-size: 1.08rem;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.resources-top-nav {
  background: #fff;
  border-top: 1px solid rgba(112,34,119,.08);
  border-bottom: 1px solid rgba(112,34,119,.08);
  padding: 16px 0;
}
.resources-nav-box {
  background: #fff;
  border: 1px solid rgba(112,34,119,.16);
  border-radius: 18px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.resources-nav-title {
  color: var(--purple-deep);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.resources-nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.resources-nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 16px;
  color: var(--purple-main);
  border: 1px solid rgba(112,34,119,.22);
  border-radius: 999px;
  font-weight: 800;
  background: #fff;
}
.resources-intro-section {
  padding: 24px 0 4px;
}
.resources-orientation {
  max-width: 920px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.7;
  text-align: center;
}
.resources-section {
  padding: 24px 0 54px;
}
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.resource-card {
  background: #fff;
  border: 1px solid rgba(112,34,119,.16);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.resource-card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.resource-thumb,
.resource-thumb-link img {
  width: 100%;
  height: 145px;
  object-fit: cover;
  background: #f8eef9;
  padding: 0;
}
.affiliate-grid .resource-thumb {
  width: min(100%, 280px);
  height: 150px;
  margin: 22px auto 8px;
  object-fit: contain;
  background: #fff;
}
.resource-card h3 {
  margin: 0;
}
.resource-card p {
  margin: 0;
  line-height: 1.55;
}
.resource-card .btn {
  align-self: flex-start;
  margin-top: auto;
}
.notice-card p + p {
  margin-top: 10px;
}
.testimonials-content .card,
.testimonials-content .bio-col {
  background: #fff;
  border: 1px solid rgba(112,34,119,.16);
  border-radius: 8px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 20px;
}
.testimonials-content .bio-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.testimonials-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.testimonial-image-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 12px;
}
.testimonial-images {
  display: grid;
  gap: 12px;
}
.resource-detail {
  max-width: 980px;
}
.resource-detail-card {
  background: #fff;
  border: 1px solid rgba(112,34,119,.16);
  border-radius: 8px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 18px;
}
.resource-detail-card h2 {
  margin-top: 0;
}
.readable-list {
  line-height: 1.75;
}
.readable-list li + li {
  margin-top: 8px;
}
.subnav {
  background: #fbf7fd;
  border-bottom: 1px solid rgba(112,34,119,.14);
}
.subnav-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.subnav a {
  color: var(--purple-main);
  background: #fff;
  border: 1px solid rgba(112,34,119,.18);
  border-radius: 999px;
  padding: 8px 13px;
  font-weight: 800;
}
.wu-detail {
  max-width: 1080px;
}

/* replace to change width 
.wu-feature {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  background: #fff;
  border: 1px solid rgba(112,34,119,.16);
  border-radius: 8px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 18px;
}

.wu-feature img {
  width: 280px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
}

     */

/*  new css code */
.wu-feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: flex-start;
  gap: 32px;
  background: #fff;
  border: 1px solid rgba(112,34,119,.16);
  border-radius: 8px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 18px;
}

/* 2026 07 28 replace, makes image an oval
.wu-feature img {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  border-radius: 50%;
  justify-self: center;
} */

/* makes the image round  */
/* Keep feature images naturally round */
.wu-feature img {
  width: 360px;
  height: 360px;
  max-width: 100%;
  object-fit: contain;
  border-radius: 50%;
  justify-self: center;
}





/*  less space between text lines  */
.wu-feature .readable-list {
    margin: 12px 0 18px 22px;
    padding: 0;
    line-height: 1.25;
}

.wu-feature .readable-list li {
    margin: 0;
    padding: 0;
}

.wu-feature .readable-list li + li {
    margin-top: 2px;
}


/* 2026 07 26 make image take up less of the feature page  */
/* About Holistic Health Assessments image and text layout */
.about-assessment-feature {
  display: grid;
  grid-template-columns: minmax(220px, 28%) minmax(0, 72%);
  gap: 36px;
  align-items: center;

  background: #fff;
  border: 1px solid rgba(112,34,119,.16);
  border-radius: 8px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 18px;
}

/* 2026 07 26 changed about so images are round
.about-assessment-feature img {
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
  justify-self: center;
}

new code */
.about-assessment-feature img {
  width: 360px;
  height: 360px;
  max-width: 100%;
  object-fit: contain;
  border-radius: 50%;
  justify-self: center;
}





@media (max-width: 800px) {
  .about-assessment-feature {
    grid-template-columns: 1fr;
    gap: 24px;
  }

/* 2026 07 26 change image to round
  .about-assessment-feature img {
    max-width: 280px;
  }
}
new code here */
.about-assessment-feature img {
  width: 280px;
  height: 280px;
  }
}
	
	
	





.wu-bio-text {
  flex: 1;
  min-width: 0;
  max-width: 850px;
}
.wu-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.wu-card-grid article {
  border: 1px solid rgba(112,34,119,.14);
  border-radius: 8px;
  padding: 16px;
  background: #fbf7fd;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wu-card-grid h3 {
  margin: 0;
}

/* center image in header on the page   */
.wu-image-card {
  text-align: center;
}

.wu-image-card img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}



.topic-thumb {
  width: 100%;
  height: 128px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(112,34,119,.12);
  border-radius: 8px;
  overflow: hidden;
}
.topic-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

/* Square card images on the Holistic Health Assessments index page */
.hh-assessment-card-grid .topic-thumb {
  height: auto;
  aspect-ratio: 1 / 1;
}

.hh-assessment-card-grid .topic-thumb img {
  padding: 0;
  object-fit: contain;
}

/* Medical Astrology index page: equal feature circles and square card images */
.wu-feature,
.about-assessment-feature {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wu-feature > img,
.about-assessment-feature > img {
  display: block;
  width: min(360px, 100%);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  justify-self: center;
}

.ma-card-grid .topic-thumb {
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 32px;
  overflow: hidden;
}

.ma-card-grid .topic-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
  border-radius: 32px;
}

@media (max-width: 900px) {
  .wu-feature,
  .about-assessment-feature {
    grid-template-columns: 1fr;
  }

  .wu-feature > img,
  .about-assessment-feature > img {
    width: min(280px, 100%);
  }
}
.wu-card-grid article p {
  margin: 0;
}
.wu-card-grid article .btn {
  align-self: flex-start;
  margin-top: auto;
}
.wu-image-card {
  background: #fff;
  border: 1px solid rgba(112,34,119,.16);
  border-radius: 8px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
  margin: 0 0 18px;
  text-align: center;
}
.wu-image-card img {
  width: min(100%, 620px);
  max-height: 320px;
  object-fit: contain;
  border-radius: 8px;
}
.wu-image-card figcaption {
  margin-top: 10px;
  color: var(--text-soft);
  line-height: 1.5;
}
@media (max-width: 980px) {
  .nav-dropdown {
    width: 100%;
  }
  .nav-dropdown-toggle {
    width: 100%;
    text-align: left;
  }
  .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    margin-top: 6px;
  }
  .resources-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .testimonials-content .bio-columns {
    grid-template-columns: 1fr;
  }
  .wu-card-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .resources-grid {
    grid-template-columns: 1fr;
  }
}


/* 2026 07 28 EO About page image and text layout */
.eo-about-feature {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 32px;
    align-items: center;
}

.eo-about-image {
    width: 240px;
    justify-self: start;
}

.eo-about-feature .eo-about-image img {
    width: 240px;
    height: 240px;
    max-width: 240px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0;
}

.eo-about-text {
    min-width: 0;
}

@media (max-width: 800px) {
    .eo-about-feature {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .eo-about-image {
        width: 220px;
        justify-self: center;
    }

    .eo-about-feature .eo-about-image img {
        width: 220px;
        height: 220px;
        max-width: 220px;
    }
}









/* Footer responsive layout 2026 07 22 change footer */
/* Footer responsive layout */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}



/* Wu Shen profile responsive behavior - replaced
@media (max-width: 900px) {
  .wu-feature {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .wu-feature img {
    width: min(320px, 85vw);
  }

  .wu-bio-text {
    width: 100%;
    max-width: none;
  }
}
   */

/* replaced the above with this */
@media (max-width: 900px) {
  .wu-feature {
    grid-template-columns: 1fr;
    gap: 24px;
  }

	/* 2026 07 28 changed to make images round */
  .wu-feature img {
    width: 280px;
    height: 280px;
    max-width: 100%;
    object-fit: contain;
    border-radius: 50%;
    justify-self: center;
  }

  .wu-bio-text {
    width: 100%;
    max-width: none;
  }
}


/* code to keep the bear logo small in the about the bear link on the adbo index page   */
.bear-thumb {
    width: 40px !important;
    height: auto !important;
    flex: 0 0 40px;
    margin-left: 10px;
}

/* css to create spacer code in the html  */

.hero-divider {
    margin: 30px auto 20px;
    width: 140px;
    border-top: 2px solid #7b2c8e;
    opacity: .35;
}

.hero-subheading {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #7b2c8e;
    margin-bottom: 8px;
}


/* Make image on wu-shen philosophy page larger   */
.philosophy-image img {
    max-height: 350px;
}

/* for wu-shen area removed height: 128px; and changed to 50% below height: 50%;  */
/* Make the three Wu-Shen card images fill the available image area */
.topic-thumb-large {
  width: 100%;
  height: 190px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(112, 34, 119, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.topic-thumb-large img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}


/* added to fix tools image on wu-shen index.html 5 tools   */
/* Size the Five Parts overview image without changing other Wu-Shen images */
.five-parts-overview-image {
  width: auto;
  max-width: 400px;
  height: auto;
  max-height: none;
  object-fit: contain;
  display: block;
  margin: 20px auto 28px;
}

/* stacks links on the about.html page */
.button-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 12px 16px;
    margin-top: 20px;
}

.button-grid .btn {
    width: 100%;
}

@media (max-width: 800px) {
    .button-grid {
        grid-template-columns: 1fr;
    }
}


/*  add small images to each small card on about.html   */
.card-thumb {
    width: 80px;
    height: 80px;
    object-fit: contain;
    float: left;
    margin: 0 16px 12px 0;
}

/* add a box to the disclaimer page  */
.policy-card {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
    text-align: left;
}


/* Podcast page text and button alignment */
.podcast-intro {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.podcast-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}



/* ===== 2026-07-28 MEDICAL ASTROLOGY FEATURE ROWS =====
   One layout for all alternating sections. The image box is always square,
   so left and right images render at the same size and remain circular. */
.assessment-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(112, 34, 119, .16);
  border-radius: 8px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 18px;
}

.assessment-feature-image {
  width: min(100%, 360px);
  aspect-ratio: 1 / 1;
  justify-self: center;
  align-self: center;
  overflow: hidden;
  border-radius: 50%;
}

.assessment-feature-image img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 0 !important;
}

.assessment-feature-image-right > .assessment-feature-image {
  grid-column: 2;
  grid-row: 1;
}

.assessment-feature-image-right > div:not(.assessment-feature-image) {
  grid-column: 1;
  grid-row: 1;
}

.assessment-feature-image-left > .assessment-feature-image {
  grid-column: 1;
  grid-row: 1;
}

.assessment-feature-image-left > div:not(.assessment-feature-image) {
  grid-column: 2;
  grid-row: 1;
}

@media (max-width: 800px) {
  .assessment-feature {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .assessment-feature-image,
  .assessment-feature-image-right > .assessment-feature-image,
  .assessment-feature-image-left > .assessment-feature-image,
  .assessment-feature-image-right > div:not(.assessment-feature-image),
  .assessment-feature-image-left > div:not(.assessment-feature-image) {
    grid-column: 1;
    grid-row: auto;
  }

  .assessment-feature-image {
    width: min(100%, 320px);
  }
}
/* ===== END MEDICAL ASTROLOGY FEATURE ROWS ===== */


/* 2026 07 28 new philosophy css code */
/* Philosophy page hero */
.philosophy-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    align-items: center;
    gap: 3rem;
}

.philosophy-hero-text {
    min-width: 0;
    text-align: left;
}

.philosophy-hero-text .resources-kicker,
.philosophy-hero-text h1 {
    text-align: center;
}

.philosophy-hero-text .lead,
.philosophy-hero-text p,
.philosophy-hero-text .note {
    text-align: left;
}

.philosophy-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.philosophy-hero-image img {
    display: block;
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 50%;
}

@media (max-width: 800px) {
    .philosophy-hero-layout {
        grid-template-columns: 1fr;
    }

    .philosophy-hero-image {
        margin-top: 1.5rem;
    }

    .philosophy-hero-image img {
        max-width: 360px;
    }
}


/* 2026 07 28 fix OM text to image spacing   */
/* 2026 07 28 OM foundation image and text layout */
.om-foundation-feature {
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 36px;
    align-items: center;
}

.om-foundation-text {
    min-width: 0;
}

.om-foundation-image {
    width: 260px;
    justify-self: end;
}

.om-foundation-feature .om-foundation-image img {
    display: block;
    width: 260px;
    height: 260px;
    max-width: 260px;
    object-fit: contain;
    margin: 0;
}

/* 2026 07 28 resize the image to allow more room for text   */
/* OM remaining OM program cards */
/* OM program cards: framework, philosophy, and legacy */
.om-program-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 20px;
}

@media (max-width: 980px) {
    .om-program-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .om-program-card-grid {
        grid-template-columns: 1fr;
    }
}

/* OM alternating program sections */
.om-program-feature.assessment-feature-image-left {
    grid-template-columns: 300px minmax(0, 1fr);
}

.om-program-feature.assessment-feature-image-right {
    grid-template-columns: minmax(0, 1fr) 300px;
}

.om-program-feature .assessment-feature-image {
    width: 300px;
}

@media (max-width: 800px) {
    .om-program-feature.assessment-feature-image-left,
    .om-program-feature.assessment-feature-image-right {
        grid-template-columns: 1fr;
    }

    .om-program-feature .assessment-feature-image {
        width: min(100%, 260px);
    }
}











@media (max-width: 800px) {
    .om-foundation-feature {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .om-foundation-image {
        width: 220px;
        justify-self: center;
    }

    .om-foundation-feature .om-foundation-image img {
        width: 220px;
        height: 220px;
        max-width: 220px;
    }
}

/* 2026 07 28 Integration Circle page hero image balance
   Scoped to this page only; does not change other ADBO hero layouts. */
.integration-circle-page .adbo-hero-content {
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 44px;
    align-items: center;
}

.integration-circle-page .adbo-hero-image {
    width: 430px;
    max-width: 100%;
    justify-self: end;
}

.integration-circle-page .adbo-hero-image img {
    display: block;
    width: 100%;
    max-width: 430px;
    height: auto;
    margin: 0;
}

@media (max-width: 900px) {
    .integration-circle-page .adbo-hero-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .integration-circle-page .adbo-hero-image {
        width: min(100%, 380px);
        justify-self: center;
    }

    .integration-circle-page .adbo-hero-image img {
        max-width: 380px;
    }
}

/* 2026 07 29 added spacing to section links in Resources/Classes.html    */
.section-nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding-top: 1rem;
}

/* 2026 08 02 Diamond Source Light page */
.dsl-page {
  --dsl-soft: #f7f1fa;
}

.dsl-page .dsl-hero {
  padding-top: 38px;
  padding-bottom: 50px;
}

.dsl-page .resources-hero-card h1 {
  margin-top: 10px;
}

.dsl-page .dsl-browse {
  padding: 16px 0;
}

.dsl-page .resource-detail-card h2 {
  color: var(--purple-deep);
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  line-height: 1.2;
  margin: 0 0 12px;
}

.dsl-page .resource-detail-card p,
.dsl-page .resource-detail-card li {
  font-size: 1.02rem;
}

.dsl-page .catalog-actions {
  flex-direction: row;
  flex-wrap: wrap;
}

.dsl-page .readable-list {
  padding-left: 1.4rem;
}

.dsl-page .readable-list li {
  margin-bottom: 8px;
}

.dsl-page .mb-0 {
  margin-bottom: 0;
}

.dsl-page section {
  scroll-margin-top: 92px;
}

.dsl-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 2rem;
  align-items: center;
}

.dsl-about-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

@media (max-width: 760px) {
  .dsl-about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .dsl-page .catalog-actions .btn {
    width: 100%;
  }
}










