/* Base styles and variables */
:root {
  --font-serif: "Rubik", serif;
  --font-sans: "Parkinsans", sans-serif;
  --font-logo: "Rubik", sans-serif;
  --font-writing: "Caveat", cursive;
  --font-heading: "Rubik", serif;

  --color-cod-50: #fffcfd;
  --color-cod-100: #f5e9eb;
  --color-cod-200: #e9ced5;
  --color-cod-300: #d7a2b1;
  --color-cod-400: #c07087;
  --color-cod-500: #a94e69;
  --color-cod-600: #8d3c52;
  --color-cod-700: #733142;
  --color-cod-800: #602c39;
  --color-cod-900: #512932;
  --color-cod-950: #0a0506;

  --color-amaranth-50: #fef2f2;
  --color-amaranth-100: #fde7e6;
  --color-amaranth-200: #fbd0d2;
  --color-amaranth-300: #f7aaad;
  --color-amaranth-400: #f27a81;
  --color-amaranth-500: #e74150;
  --color-amaranth-600: #d42a41;
  --color-amaranth-700: #b31d36;
  --color-amaranth-800: #961b33;
  --color-amaranth-900: #801b32;
  --color-amaranth-950: #470a16;

  --color-pelorous-50: #f0fafb;
  --color-pelorous-100: #daf1f3;
  --color-pelorous-200: #b9e4e8;
  --color-pelorous-300: #89cfd7;
  --color-pelorous-400: #52b2be;
  --color-pelorous-500: #3ca6b6;
  --color-pelorous-600: #307a8a;
  --color-pelorous-700: #2c6472;
  --color-pelorous-800: #2b535f;
  --color-pelorous-900: #284751;
  --color-pelorous-950: #162d36;

  --color-fall-50: #faf9f0;
  --color-fall-100: #ebe6be;
  --color-fall-200: #e3dca4;
  --color-fall-300: #d5c774;
  --color-fall-400: #cab455;
  --color-fall-500: #c09b40;
  --color-fall-600: #a97e36;
  --color-fall-700: #8d6030;
  --color-fall-800: #744d2c;
  --color-fall-900: #604127;
  --color-fall-950: #362212;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  line-height: 1.5;
  color: #000;
  min-height: 100vh;
  overflow-x: hidden;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--color-cod-50);
}

/* Tailwind-like utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.min-h-screen {
  min-height: 100vh;
  overflow-x: hidden;
}

.bg-cod-50 {
  background-color: var(--color-cod-50);
}

.bg-secondary-50 {
  background-color: var(--color-pelorous-50);
}

.bg-fall-50 {
  background-color: var(--color-fall-50);
}

.font-serif {
  font-family: var(--font-heading);
}

.font-logo {
  font-family: var(--font-logo);
}

.section-title {
  font-size: 2.0rem;
  text-transform: uppercase;
  font-family: var(--font-heading);
  font-weight: 500;
  margin-bottom: 3rem;
  line-height: 1.2;
}

/* Component styles */
header {
  width: 100%;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-2 {
  gap: 0.5rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.h-8 {
  height: 2rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.6;
}

.font-bold {
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}

.btn-primary {
  background-color: var(--color-amaranth-500);
  color: white;
  border: none;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--color-amaranth-600);
  box-shadow: 0 0 0 3px rgba(231, 65, 80, 0.2);
}

/* Promo banner (mirrors live event urgent styling) */
#marketing-event-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #fff;
  background-color: rgb(79 70 229);
  border-top: 1px solid rgb(79 70 229);
  border-bottom: 1px solid rgb(79 70 229);
  padding: 0.75rem 1.25rem;
  width: 100%;
  box-sizing: border-box;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: filter 0.15s ease;
  font-size: 1.05rem;
}

#marketing-event-banner:hover {
  text-decoration: none;
  color: #fff;
  background-color: rgb(79 70 229);
  filter: brightness(1.05);
}

#marketing-event-banner .marketing-event-banner__label {
  font-size: 1rem;
  color: inherit;
  font-weight: 700;
}

#marketing-event-banner .marketing-event-banner__divider {
  opacity: 0.75;
  color: inherit;
  font-weight: 400;
  font-size: 1.1em;
}

#marketing-event-banner .marketing-event-banner__message {
  color: inherit;
  font-size: 1rem;
}

@media (min-width: 768px) {
  #marketing-event-banner {
    font-size: 1.15rem;
  }

  #marketing-event-banner .marketing-event-banner__label {
    font-size: 1.1rem;
  }

  #marketing-event-banner .marketing-event-banner__message {
    font-size: 1.05rem;
  }
}

.btn-outline {
  background-color: transparent;
  color: black;
  border: 2px solid var(--color-amaranth-500);
  font-weight: 600;
}

.btn-outline:hover {
  background-color: rgba(231, 65, 80, 0.05);
  box-shadow: 0 0 0 3px rgba(231, 65, 80, 0.1);
}

.btn-link {
  background: transparent;
  color: black;
  padding: 0;
}

.btn-link:hover {
  text-decoration: underline;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 1.2;
  letter-spacing: -1px;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.5;
}

.leading-relaxed {
  line-height: 1.7;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.uppercase {
  text-transform: uppercase;
}

.h-12 {
  height: 3rem;
}

.relative {
  position: relative;
}

.bg-transparent {
  background-color: transparent;
}

.absolute {
  position: absolute;
}

.h-25 {
  height: 6.25rem;
}

.w-full {
  width: 100%;
}

.border-t {
  border-top-width: 1px;
  border-top-style: solid;
}

.border-secondary-200 {
  border-color: var(--color-pelorous-200);
}

.-rotate-3 {
  transform: rotate(-3deg);
}

.w-120vw {
  width: 120vw;
}

.-left-20 {
  left: -5rem;
}

.top-0 {
  top: 0;
}

.pt-20 {
  padding-top: 5rem;
}

.pb-40 {
  padding-bottom: 10rem;
}

.bg-secondary-200 {
  background-color: var(--color-pelorous-200);
}

.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.break-inside-avoid {
  break-inside: avoid;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.font-medium {
  font-weight: 600;
}

.text-gray-700 {
  color: #374151;
}

.text-center {
  text-align: center;
}

.mt-8 {
  margin-top: 2rem;
}

.btn-subtle {
  background-color: rgba(231, 65, 80, 0.1);
  color: var(--color-amaranth-700);
  font-weight: 600;
}

.btn-subtle:hover {
  background-color: rgba(231, 65, 80, 0.15);
  box-shadow: 0 0 0 2px rgba(231, 65, 80, 0.2);
}

.overflow-hidden {
  overflow: hidden;
}

.max-h-800 {
  max-height: 800px;
}

.transition-max-height {
  transition: max-height 0.5s ease-in-out;
}

/* Responsive utilities */
@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
    line-height: 1.1;
  }
  
  .text-4xl {
    font-size: 3rem;
    line-height: 1.1;
  }
  
  .text-xl {
    font-size: 1.85rem;
  }
  
  .py-16 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .md\:columns-2 {
    columns: 2;
  }

  .md\:text-2xl {
    font-size: 1.5rem;
  }

  /* Divider adjustments for medium screens */
  .divider {
    height: 4rem;
  }
  
  .divider-fill {
    height: 8rem;
  }
}

@media (min-width: 1024px) {
  .text-4xl {
    font-size: 4.5rem;
    line-height: 1;
  }

  .lg\:columns-3 {
    columns: 3;
  }
  
  /* Divider adjustments for large screens */
  .divider {
    height: 5rem;
  }
  
  .divider-fill {
    height: 10rem;
  }
}

/* Additional styles for courses and pricing sections */
.bg-primary-200 {
  background-color: var(--color-amaranth-200);
}

.inline-block {
  display: inline-block;
}

.-rotate-1 {
  transform: rotate(-1deg);
}

.rotate-1 {
  transform: rotate(1deg);
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.lg\:grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gap-1 {
  gap: 0.25rem;
}

.ring-2 {
  box-shadow: 0 0 0 2px var(--color-pelorous-400);
}

.text-secondary-900 {
  color: var(--color-pelorous-900);
}

.pt-1 {
  padding-top: 0.25rem;
}

.space-x-1 > * + * {
  margin-left: 0.25rem;
}

.space-x-2 > * + * {
  margin-left: 0.5rem;
}

.bg-fall-200 {
  background-color: var(--color-fall-200);
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1.0rem;
  padding-right: 1.0rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.gap-2 {
  gap: 0.5rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.w-full {
  width: 100%;
}

.text-sm {
  font-size: 0.875rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .md\:w-auto {
    width: auto;
  }
}

/* Completely new approach for dividers to match original exactly */
.divider {
  position: relative;
  height: 3rem;
  background: transparent;
  z-index: 5;
}

/* The actual slanted divider element */
.divider::before {
  content: "";
  position: absolute;
  height: 120px;
  width: 120%;
  left: -10%;
  top: -40px;
  border-top: 1px solid;
  transform: rotate(-3deg);
  transform-origin: center;
  box-shadow: 0 -1px 2px rgba(0,0,0,0.03);
}

/* Each divider type */
.divider-secondary::before {
  background-color: var(--color-cod-50);
  border-color: var(--color-cod-200);
}

.divider-cod::before {
  background-color: var(--color-cod-50);
  border-color: var(--color-cod-200);
}

.divider-white-to-fall {
  position: relative;
  height: 60px;
  margin-top: -30px;
  margin-bottom: -30px;
  z-index: 5;
  overflow: visible;
}

.divider-white-to-fall::before {
  content: "";
  position: absolute;
  width: 4000px;
  height: 100px;
  left: 50%;
  top: calc(50% - 50px);
  background-image: linear-gradient(
    to bottom,
    var(--color-cod-50) 50%,
    var(--color-fall-50) 50%
  );
  border: none;
  box-shadow: none;
  transform: translateX(-50%) rotate(-3deg);
  transform-origin: center;
  z-index: -1;
}

.divider-white-to-fall::after {
  content: "";
  position: absolute;
  width: 4000px;
  height: 0;
  left: 50%;
  top: 50%;
  border-top: 1px solid var(--color-fall-400);
  transform: translateX(-50%) rotate(-3deg);
  transform-origin: center;
  z-index: 1;
}

.divider-fall-to-white {
  position: relative;
  height: 60px;
  margin-top: -30px;
  margin-bottom: -30px;
  z-index: 5;
  overflow: visible;
}

.divider-fall-to-white::before {
  content: "";
  position: absolute;
  width: 4000px;
  height: 100px;
  left: 50%;
  top: calc(50% - 50px);
  background-image: linear-gradient(
    to bottom,
    var(--color-fall-50) 50%,
    var(--color-cod-50) 50%
  );
  border: none;
  box-shadow: none;
  transform: translateX(-50%) rotate(-3deg);
  transform-origin: center;
  z-index: -1;
}

.divider-fall-to-white::after {
  content: "";
  position: absolute;
  width: 4000px;
  height: 0;
  left: 50%;
  top: 50%;
  border-top: 1px solid var(--color-fall-400);
  transform: translateX(-50%) rotate(-3deg);
  transform-origin: center;
  z-index: 1;
}

.size-20 {
  width: 4rem;
  height: 4rem;
}

@media (min-width: 768px) {
  .md\:size-24 {
    width: 6rem;
    height: 6rem;
  }
}

@media (min-width: 1024px) {
  .lg\:size-36 {
    width: 9rem;
    height: 9rem;
  }
}

.bg-secondary-100\/70 {
  background-color: rgba(218, 241, 243, 0.7);
}

.rounded-xl {
  border-radius: 0.75rem;
}

.border {
  border-width: 1px;
  border-style: solid;
}

.border-secondary-300 {
  border-color: var(--color-pelorous-300);
}

.md\:flex-col {
  flex-direction: column;
}

.sm\:grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.md\:grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lg\:grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.md\:gap-6 {
  gap: 1.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.p-2 {
  padding: 0.5rem;
}

.md\:py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.text-secondary-950 {
  color: var(--color-pelorous-950);
}

.text-secondary-700 {
  color: var(--color-pelorous-700);
}

.text-md {
  font-size: 1rem;
  line-height: 1.5;
}

.max-w-3xl {
  max-width: 48rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.pt-12 {
  padding-top: 3rem;
}

.pb-16 {
  padding-bottom: 4rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.w-5 {
  width: 1.25rem;
}

.h-5 {
  height: 1.25rem;
}

.pricing-list span {
  font-size: 1.125rem;
  line-height: 1.5;
}

.pricing-list svg {
  color: var(--color-fall-600);
  width: 1.25rem;
  height: 1.25rem;
}

.pricing-section svg {
  color: var(--color-fall-600);
}

@media (min-width: 768px) {
  .pricing-list span {
    font-size: 1.25rem;
  }
}

/* Video Library Grid */
.library-pills-wrapper {
  position: relative;
  margin-bottom: 2rem;
}

.library-pills-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60px;
  background: linear-gradient(to right, transparent, white);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.2s ease;
}

.library-pills-wrapper.library-pills-wrapper--scrolled-end::after {
  opacity: 0;
}

.library-pills {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
  padding-right: 40px;
}

.library-pills::-webkit-scrollbar {
  display: none;
}

.library-pill {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid var(--color-cod-200);
  background: transparent;
  color: var(--color-cod-950);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: var(--font-sans);
  white-space: nowrap;
}

.library-pill:hover {
  background: var(--color-amaranth-50);
  border-color: var(--color-amaranth-300);
}

.library-pill--active {
  background: var(--color-amaranth-500);
  color: white;
  border-color: var(--color-amaranth-500);
}

.library-pill--active:hover {
  background: var(--color-amaranth-600);
  border-color: var(--color-amaranth-600);
}

.library-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .library-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .library-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.library-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: white;
  border: 1px solid var(--color-cod-100);
}

.library-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  color: inherit;
}

.library-card__thumbnail {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-cod-950) 0%, var(--color-cod-800) 100%);
}

.library-card__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.library-card__placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-cod-950) 0%, var(--color-cod-800) 100%);
}

.library-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.library-card:hover .library-card__overlay {
  opacity: 1;
}

.library-card__lock {
  color: white;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.library-card__info {
  padding: 0.75rem 1rem 1rem;
}

.library-card__title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.25rem;
  color: var(--color-cod-950);
}

.library-card__creator {
  font-size: 0.875rem;
  color: var(--color-cod-600);
  margin-bottom: 0.5rem;
}

.library-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.library-card__tag {
  font-size: 0.75rem;
  padding: 0.125rem 0.5rem;
  background: var(--color-pelorous-100);
  color: var(--color-pelorous-800);
  border-radius: 9999px;
  font-weight: 500;
}

/* Grid collapse: show 4 rows then fade */
.library-grid--collapsed {
  max-height: calc(4 * (56.25vw + 120px)); /* rough estimate for 1-col mobile */
  overflow: hidden;
  position: relative;
}

.library-grid--collapsed::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 250px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), white);
  pointer-events: none;
  z-index: 1;
}

.library-grid--expanded {
  max-height: none;
  overflow: visible;
}

.library-grid--expanded::after {
  display: none;
}

@media (min-width: 640px) {
  .library-grid--collapsed {
    /* 2-col: 4 rows × (card height + gap), cut partway into 5th row for visual hint */
    max-height: 1240px;
  }
}

@media (min-width: 1024px) {
  .library-grid--collapsed {
    /* 3-col: 4 rows × (card height + gap), cut partway into 5th row */
    max-height: 1400px;
  }
}

.library-grid__show-all-wrapper {
  text-align: center;
  margin-top: 1.5rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .library-grid__show-all-wrapper {
    margin-top: 0.5rem;
  }
}

.library-grid__show-all {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid var(--color-cod-200);
  background: white;
  color: var(--color-cod-950);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: var(--font-sans);
}

@media (min-width: 1024px) {
  .library-grid__show-all {
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }
}

.library-grid__show-all:hover {
  background: var(--color-cod-50);
  border-color: var(--color-cod-300);
}

.library-grid__show-all-wrapper--hidden {
  display: none;
}

/* Responsive adjustments for dividers */
@media (min-width: 768px) {
  .divider-white-to-fall,
  .divider-fall-to-white {
    height: 80px;
    margin-top: -40px;
    margin-bottom: -40px;
  }
  
  .divider-white-to-fall::before,
  .divider-fall-to-white::before {
    height: 140px;
    top: calc(50% - 70px);
  }
}

@media (min-width: 1024px) {
  .divider-white-to-fall,
  .divider-fall-to-white {
    height: 100px;
    margin-top: -50px;
    margin-bottom: -50px;
  }
  
  .divider-white-to-fall::before,
  .divider-fall-to-white::before {
    height: 180px;
    top: calc(50% - 90px);
  }
}

/* Avatar styles copied from application/avatars.css */
.avatar {
  --avatar-border-radius: 50%;

  aspect-ratio: 1;
  border-radius: var(--avatar-border-radius);
  display: grid;
  /* Size is controlled by --avatar-size variable, set inline in the HTML */
  inline-size: var(--avatar-size, 5ch);
  margin: 0;
  place-items: center;

  /* Override default button styles if .avatar is also a .btn */
  &.btn {
    padding: 0; /* Remove button padding */
    border: none; /* Remove button border */
    background: none; /* Remove button background */
    box-shadow: none; /* Remove button shadow */
  }
}

/* Removed the solid black border from #community .avatar to avoid double/offset borders */
/* #community .avatar {
  border: 2px solid black;
} */

.avatar > img {
  aspect-ratio: 1;
  block-size: auto;
  border-radius: var(--avatar-border-radius);
  grid-area: 1/1;
  inline-size: var(--avatar-size, 5ch);
  max-inline-size: 100%;
  object-fit: cover;
  border: 2px solid black;
  border-radius: 50%;
  box-sizing: border-box;
}

/* Flexbox layout for the community avatar section */
#community .grid { /* Keep class name for simplicity, but use flex */
  display: flex;
  flex-wrap: wrap;
}

#community .gap-4 {
  gap: 1rem;
}

#community .justify-center {
  justify-content: center; /* Center the flex items (avatars) horizontally */
}

/* Community popup styles for marketing page */
.community-popup {
  position: relative;
  display: inline-block;
}

.community-popup[open] .community-popup-menu {
  display: block;
}

.community-popup-menu {
  display: none;
  position: absolute;
  z-index: 100;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 300px;
  max-width: 320px;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  padding: 1rem;
  border: 1px solid #eee;
}

.community-popup-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.community-popup-profile .avatar {
  width: var(--avatar-size, 48px) !important;
  height: var(--avatar-size, 48px) !important;
  margin: 0 auto 0.45rem auto !important;
  display: block;
}

.community-popup-profile .avatar > img {
  width: 100% !important;
  height: 100% !important;
  display: block;
  margin: 0 auto;
}

.community-popup-name {
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.community-popup-profile {
  font-size: 0.9rem;
}
.community-popup-menu .community-popup-joined,
.community-popup-menu .community-popup-socials,
.community-popup-menu .community-popup-site,
.community-popup-menu .community-popup-messages {
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .community-popup-menu {
    min-width: 280px;
    max-width: 320px;
    padding: 1rem 0.5rem 0.5rem 0.5rem;
  }
  .community-popup-profile {
    font-size: 0.8rem;
  }
  .community-popup-menu .community-popup-joined,
  .community-popup-menu .community-popup-socials,
  .community-popup-menu .community-popup-site,
  .community-popup-menu .community-popup-messages {
    font-size: 0.8rem;
  }
  .community-popup-name {
    font-size: 1.2rem;
  }
}

/* Fix avatar shape in marketing popup and remove disclosure arrow */
.community-popup .avatar,
.community-popup .avatar > img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1/1;
  display: block;
}

.community-popup summary {
  list-style: none;
}
.community-popup summary::-webkit-details-marker {
  display: none;
}