/* ============================================================
   main.css — OWS
   ============================================================ */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


:root {
    --nav-height: 60px;
    --transition: 0.30s ease;

    --light: #ffffff;
    --dark: #900000;

    --light-rgb: 255, 255, 255; /*light w/ RGB format*/
    --dark-rgb:  144, 0, 0; /*dark w/ RGB format*/

    --text-on-light: #900000;
    --text-on-dark: #ffffff;
    --text-black: #333;

    --neutral: rgba(120, 120, 120, 0.5);

    --shadow: 0 2px 10px rgba(0,0,0,0.08);

    --text-body: 1rem;
    --text-h1: 2rem;
    --text-h2: 1.5rem;
    --text-h3: 1.1rem;
    --text-large: 1.1rem;
    --text-small: 0.75rem;

    --font-regular: 300;
    --font-semibold: 600;
    --font-bold: 800;

    --font-family: Arial, sans-serif;

    /* edit controls*/
    --edit-inactive: rgba(120, 120, 120, 0.5);  /* neutral grey */
    --edit-active:   indigo;                     /* indigo when editing */
    --feedback-success: #4ade80;
    --feedback-error:   #f87171;

}

/* -- GLOBAL SEGMENT STYLING --------------------*/

.segment-fix {
    padding: 1rem !important;
}

.light-segment {
    background: var(--light);
    color: var(--text-on-light);
}

.dark-segment {
    background: var(--dark);
    color: var(--text-on-dark);
}

/* -- GLOBAL SEMANTIC STYLING -------------------*/

body {
    font-size: var(--text-body);
    font-weight: var(--font-regular);
    margin: 0;
    font-family: var(--font-family);
}

/* -- Headings -- */

h1 {
    font-size: var(--text-h1);
    font-weight: var(--font-bold);
    line-height: 1.2;
}

h2 {
    font-size: var(--text-h2);
    font-weight: var(--font-semibold);
    line-height: 1.3;
}

h3 {
    font-size: var(--text-h3);
    font-weight: var(--font-semibold);
    line-height: 1.3;
}

h4 {
    font-size: var(--text-body);
    font-weight: var(--font-semibold);
    line-height: 1.3;
}

/* -- Paragraphs -- */

p {
    font-size: var(--text-body);
    font-weight: var(--font-regular);
    margin: 0;
}

/* --  Format Elements -- */

/* Quotes */
blockquote {
    font-style: italic;
    padding-left: 1rem;
    border-left: 2px solid var(--neutral);
    opacity: 0.9;
}

/* Small/Muted text */
small {
    font-size: var(--text-small);
    opacity: 0.7;
}

/* Lists */
ul { 
    list-style: none;
}

/* Rich-text formatting classes */
.rt-bold   { font-weight: bold; }
.rt-italic { font-style: italic; }
.rt-ul     { display: list-item; list-style-type: disc;    margin-left: 1.5rem; }
.rt-ol     { display: list-item; list-style-type: decimal; margin-left: 1.5rem; }

strong { font-weight: var(--font-bold) }

/* Public facing modals */
.public-modal {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
}

.public-modal-card {
    border-radius: 4px;
    padding: 2rem;
    max-width: 480px;
    width: 90%;
}

.public-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.public-modal-title {
    margin: 0;
    color: var(--text-black);
}

.public-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    opacity: 0.7;
    padding: 0;
    flex-shrink: 0;
}

.public-modal-close:hover { opacity: 1; }

.public-modal-message {
    margin: 0;
    opacity: 0.9;
    line-height: 1.6;
    color: var(--text-black);
}

.public-modal-greet {
    color: var(--text-black);
}
 
/* Icons */
i {
    font-size: 1.5rem;
}

/* Links */

a {
    color: inherit;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    opacity: 0.9;
    transition: var(--transition);
}

a:hover {
    opacity: 1;

}

a.inline-link,
.event-meta a {
    border-bottom: 2px solid transparent;
    transition: border-color var(--transition), opacity var(--transition);
}

a.inline-link:hover,
a.inline-link.active,
.event-meta a:hover {
    border-bottom-color: currentColor !important; 
    opacity: 1;
}

a.inline-link.inline-link--content {
    font-weight: var(--font-bold) !important;
}

.disclaimer {
    font-weight: var(--font-bold) !important;
}

/* ---- Socials ---- */
.nav-socials {
    display: flex;
    gap: 1rem;
}

.divider {
    color: var(--neutral);
    padding: 0.5rem;
}

.light-segment .nav-socials a:hover {
    background: var(--text-on-light);
    color: var(--light);
    border-color: var(--text-on-light);
    opacity: 1;
}

.dark-segment .nav-socials a:hover {
    background: var(--text-on-dark);
    color: var(--dark);
    border-color: var(--text-on-dark);
    opacity: 1;
}

/* -- Header ------------------------------------ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--nav-height);
    background: #fff;
}

.nav-container {
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ── Brand ──────────────────────────────────────────────────── */
.nav-brand {
    white-space: nowrap;
    max-height: calc(var(--nav-height) - 10px);
    margin-left: 1rem;
}

.nav-brand-text {
    font-weight: 700;
    margin-left: 1rem;
    white-space: nowrap;
    font-size: 1.3rem;
}

/* ── Desktop nav ────────────────────────────────────────────── */
#main-nav { 
    display: flex; 
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-transform: uppercase;
    gap: 2rem;
    white-space: nowrap;
    margin-bottom: 0;
    padding: 1rem;
}

.nav-links > li > a {
    display: block;
}

.nav-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* width: 2rem;
    height: 2rem; */
    border-radius: 50%;
    border: 2px solid transparent;
    transition: var(--transition);
    padding: 0.5rem;
}

.nav-socials a:hover {
    border-color: currentColor;
}

/* ── Dropdown ───────────────────────────────────────────────── */
.has-dropdown { 
    position: relative; 
}

/* Must remain for dropdown menu visibility*/
.has-dropdown::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 8px;
}

.dropdown-menu {
    border: 0;
    border-radius: 0.4 0 0.4px 0;
    padding: 0.5rem;
    color: inherit;
}

.has-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    z-index: 200;
}

.has-dropdown:hover .dropdown-menu { 
    display: block; 
}

.has-dropdown .dropdown-menu li a {
    display: block;
    white-space: nowrap;
    display: block;
    padding: 0.4rem 0.75rem;
    font-size: 0.9rem;
    border-bottom: none !important;
}

.site-header .dropdown-menu a:hover,
.site-header .dropdown-menu a.active,
.sidebar a:hover,
.sidebar a.active {
    background: var(--dark);
    color: var(--text-on-dark);
    border-bottom: none !important;
}

/* ── Hamburger ──────────────────────────────────────────────── */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--brand-color);
    margin-right: 1rem;
}

/* ── Sidebar ────────────────────────────────────────────────── */
.sidebar {
    position: fixed;
    top: var(--nav-height);
    right: 0;
    width: 100vw;
    height: calc(100vh - var(--nav-height));
    z-index: 99;
    padding: 1.5rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
    text-transform: uppercase;
    
}

.sidebar.open {
    transform: translateX(0);
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sidebar-links > li > a {
    display: block;
    padding: 0.65rem 1rem;
    font-size: 1rem;
    border-bottom: none !important;
}

.sidebar-section-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
}

.sidebar-submenu {
    display: flex;
    flex-direction: column;
    border-left: 2px solid var(--neutral);
    margin-left: 1rem;
    margin-top: 0.25rem;
}

.sidebar-submenu li a {
    display: block;
    padding: 0.4rem 0.75rem;
    font-size: 0.9rem;
    border-bottom: none !important;
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero-logo {
    width: 100%;
    height: auto;
    border-radius: 50%;
}

.hero-logo-placeholder {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    background: var(--neutral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-placeholder i { font-size: 4rem; opacity: 0.4; }

/* ── Newsletter strip ──────────────────────────────────────────────── */

.newsletter-strip {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    gap: 0.25rem;
    color: inherit;
}

.newsletter-strip__label {
    margin: 0;
    color: inherit;
}

.newsletter-strip__form {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    width: 70vw;
}

.newsletter-strip__input {
    flex: 1;
    min-width: 0;
    padding: 0.75rem 1rem;

    background: transparent;
    color: inherit;
    font: inherit;

    border: 1px solid currentColor;
    border-right: 0;
    border-radius: 8px 0 0 8px;

    outline: none;
}

.newsletter-strip__input::placeholder {
    color: inherit;
    opacity: .55;
}

.newsletter-strip__button {
    margin: 0;
    border-radius: 0 8px 8px 0;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.65rem 1.5rem;
    border: 2px solid currentColor;
    font-size: var(--text-small);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    opacity: 0.7;
    cursor: pointer;
}

.light-segment .newsletter-strip__button {
    background: var(--text-on-light);
    color: var(--light);
    border-color: var(--text-on-light);
    opacity: 0.9;
}

.light-segment .newsletter-strip__button:hover {
    background: var(--neutral);
    color: var(--text-on-light);
    opacity: 1;
}

.dark-segment .newsletter-strip__button {
    background: var(--text-on-dark);
    color: var(--dark);
    border-color: var(--text-on-dark);
    opacity: 0.9;
}

.dark-segment .newsletter-strip__button:hover {
    background: var(--neutral);
    color: var(--text-on-dark);
    opacity: 1;
}

.newsletter-strip__feedback {
    margin: 0;
    font-size: var(--text-small);
}

.newsletter-strip__terms {
    opacity: .8;
    font-size: var(--text-small);
    text-align: center;
}

.newsletter-strip__terms a {
    color: inherit;
}


/* ── Footer ─────────────────────────────────────────────────── */
footer {
    display: flex-column;
    justify-content: flex-end;
    position: relative;
}

.footer-logo img{
    max-height: 200px;
    border-radius: 50%;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

.footer-wave {
  position: absolute;
  display: block;
  top: -120px;
  left: 0;
  width: 100%;
}

.footer-wave svg {
  width: 100%;
  height: 120px;
  display: block;
  transform: rotate(180deg);
}

footer p {
    opacity: 0.90;
}

.segment-before-footer {
    padding-bottom: 180px; /* same as wave height */
}

/* margings to test */
.margin-top {
    margin: 1rem;
}

.margin-bottom {
    margin: 1rem;
}

.margin-y {
    margin: 1rem;
}

.margin-x {
    margin: 1rem;
}

/* ============================================================
   SECTION COMPONENTS
   ============================================================ */

/* ── Segment base with optional bg image ───────────────────── */
.segment {
    padding: 4rem 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.segment-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* ── Section background image layer ─────────────────────────
   Separate from the segment itself so filter: grayscale() only
   affects the background image, not the text content above it. */
.segment-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: grayscale(1);
    z-index: 0;
}

/* Ensure overlay and content sit above the bg layer */
.segment-overlay { z-index: 1; }
.segment > .container { position: relative; z-index: 2; }

.light-segment .segment-overlay { background: rgba(var(--light-rgb), 0.90); }
.dark-segment  .segment-overlay { background: rgba(var(--dark-rgb),  0.90); }

/* ── Universal image container ──────────────────────────────── */
.img-placeholder {
    width: 100%;
    background: var(--neutral);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    overflow: hidden;
    position: relative;
}

.img-placeholder i { font-size: 3rem; opacity: 0.4; }

.img-placeholder img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Ratio modifiers ─────────────────────────────────────────── */
.portrait-img      { aspect-ratio: 3/4; }
.event-card-img    { aspect-ratio: 16/9; }
.event-promo-img   { aspect-ratio: 4/3; }
.event-gallery-img { aspect-ratio: 1/1; }
.block-img         { aspect-ratio: 4/3; }

/* ── Zoomable images ────────────────────────────────────────── */
.zoomable {
    cursor: zoom-in;
    transition: transform var(--transition);
}
 
.zoomable:hover {
    transform: scale(1.05);
    position: relative;
    z-index: 10;
}

/* ── Image credit ───────────────────────────────────────────── */
.image-credit {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    opacity: 0.6;
    font-size: var(--text-small);
    text-transform: capitalize;
}

.image-credit i { font-size: 0.85rem; }

/* -- CTA Itiem -----------------------------------------------*/
.section-cta-item .btn-section {
    margin-top: 0 !important;
}

/* ── Section content ────────────────────────────────────────── */
.section-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    gap: 1rem;
}



.section-h2 {
    font-size: var(--text-h2);
    font-weight: var(--font-semibold);
    line-height: 1.3;
}

.section-h3 {
    font-size: var(--text-h3);
    font-weight: var(--font-semibold);
    line-height: 1.3;
}

.section-p {
    opacity: 0.9;
}

.section-content .section-h2,
.section-content .section-h3 { margin-bottom: 0.5rem; }

.section-image-col { align-self: start; }

/* ── CTA Button ─────────────────────────────────────────────── */

button {
    font: inherit;
    color: inherit;
    background: transparent;
    opacity: none;
    transition: var(--transition);
}

.btn-section {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.65rem 1.5rem;
    border: 2px solid currentColor;
    border-radius: 4px;
    font-size: var(--text-small);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    align-self: flex-start;
    opacity: 0.7;
    margin-top: 1rem;
    cursor: pointer;
}
/* ── Button hover — inverts based on segment theme ── */
.light-segment .btn-section:hover {
    background: var(--text-on-light);
    color: var(--light);
    border-color: var(--text-on-light);
    opacity: 1;
}

.dark-segment .btn-section:hover {
    background: var(--text-on-dark);
    color: var(--dark);
    border-color: var(--text-on-dark);
    opacity: 1;
}

/* ── Nav icon UX links ───────────────────────────────────────── */
.nav-icon-ux {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-icon-ux {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    transition: var(--transition);
}

.light-segment .nav-icon-ux:hover {
    background: var(--text-on-light);
    color: var(--light);
    opacity: 1;
}

.dark-segment .nav-icon-ux:hover {
    background: var(--text-on-dark);
    color: var(--dark);
    opacity: 1;
}


/* ── Zoomable images ────────────────────────────────────────── */
.zoomable {
    cursor: zoom-in;
    transition: transform var(--transition);
}

.zoomable:hover {
    transform: scale(1.05);
    position: relative;
    z-index: 10;
}

/* ── Contact page ───────────────────────────────────────────── */
.contact-block {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-block h3 {
    margin-bottom: 0.25rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
}

.contact-address {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-credit {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 0.5px solid var(--neutral);
}

form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
}

.form-group label {
    font-size: var(--text-small);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.65rem 1rem;
    border: 1px solid var(--neutral);
    border-radius: 4px;
    font-size: var(--text-body);
    font-family: var(--font-family);
    background: transparent;
    color: inherit;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dark);
}

.form-group textarea { resize: vertical; }

/* ── Contact form feedback ───────────────────────────────── */
.contact-feedback {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
}

.contact-feedback--success { color: var(--feedback-success); }
.contact-feedback--error   { color: var(--feedback-error); }

/* ── Contact form field errors ───────────────────────────── */
.field-error {
    display: none;
    font-size: 0.8rem;
    color: var(--feedback-error);
    margin-top: 0.25rem;
}

/* ── Contact Terms ───────────────────────────── */
.contact-terms {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    cursor: pointer;
    margin-top: 1rem;
}

.contact-terms input[type="checkbox"] {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* ── Team Page ─────────────────────────────────────────────── */

.team-legal-rep-row,
.team-staff-grid
 {
    justify-content: center;
    padding: 1rem;
}

.team-card {
    display: block;
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
    opacity: 0.85;
}

.team-card:hover { opacity: 1; }

/* team-card__image replaced by .img-placeholder.portrait-img */

.team-card__content {
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.team-card__role {
    opacity: 0.7;
}
/* ── Event cards ────────────────────────────────────────────── */
.event-card {
    display: block;
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
}

.event-card:hover { opacity: 0.85; }

/* event-card__image replaced by .img-placeholder.event-card-img */

.event-card__content {
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.event-card__category {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.6;
}

.event-card__subtitle { opacity: 0.7; }

.event-card__meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: var(--text-small);
    opacity: 0.7;
    margin-top: 0.25rem;
}

.event-card__meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.events-heading { margin: 2rem 0 1rem; }

/* ── Event detail ───────────────────────────────────────────── */
.event-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: var(--text-small);
    opacity: 0.8;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.event-participant-item {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    justify-content: start;
}

.participant-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.participant-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border: 1px solid currentColor;
    border-radius: 20px;
    font-size: var(--text-small);
    transition: var(--transition);
}

.participant-chip:hover { opacity: 0.7; }

.event-review { margin-top: 1.5rem; }
.event-media-item { margin-bottom: 1rem; }

/* ── Participant events list ────────────────────────────────── */
.participant-events-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.participant-events-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

/* ── Event admission ────────────────────────────────────────── */
.event-admission {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: var(--font-semibold);
}

.event-admission span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* ── Archive timeline nav ────────────────────────────────────
   Year chips follow the same pill pattern as .participant-chip.
   Arrow separators between chips, newest year on the left.
   Active year is filled with --dark; inactive is bordered + muted. */

.archive-timeline {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0;
}

.archive-year-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    border: 1px solid currentColor;
    border-radius: 20px;
    font-size: var(--text-small);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.5;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.archive-year-chip:hover {
    opacity: 0.85;
    text-decoration: none;
}

.archive-year-chip--active {
    background: var(--dark);
    border-color: var(--dark);
    color: var(--light);
    opacity: 1;
}

.archive-timeline-sep {
    opacity: 0.3;
    font-size: 1rem;
    flex-shrink: 0;
}

/* ── Archive category chips ──────────────────────────────────
   Smaller and more muted than year chips — secondary filter.
   Only rendered by PHP when selected year has more than one
   category, so no empty state is ever shown. */

.archive-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 2rem;
}

.archive-category-count {
    opacity: 0.6;
    font-size: 0.7rem;
    margin-left: 0.2rem;
}

.archive-category-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.65rem;
    border: 1px solid currentColor;
    border-radius: 20px;
    font-size: var(--text-small);
    opacity: 0.45;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.archive-category-chip:hover {
    opacity: 0.75;
    text-decoration: none;
}

.archive-category-chip--active {
    background: var(--dark);
    border-color: var(--dark);
    color: var(--light);
    opacity: 1;
}

/* ── Archive curation notice ─────────────────────────────────── */
.archive-curation-notice {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: var(--text-small);
    opacity: 0.5;
    border-left: var(--neutral) solid 2px;
    padding-left: 0.2rem;
    font-style: italic;
}

/* -- Membership Form ----------------------------------------------- */
.required-icon {
    font-size: 0.7rem;
    position: relative;
    top: -0.25em;
    left: -0.25rem;
}

/* ── Contributor / Untersützer ───────────────────────────────── */
.contributor-card {
    border-top: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    border-radius: 0;
    border-left: none !important;
    border-right: none !important;
    box-shadow: none;
    color: inherit;
    align-items: start;
}

.contributor-card h4 {
    font-weight: var(--font-bold);
}

.contributor-logo {
   max-height: auto;
   max-width: fit-content;
   object-fit: contain;
}

.contributor-name {
    margin: 0;
}

.contributor-description {
    opacity: 0.7;
    margin: 0;
}

.contributor-group-title {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--neutral);
}

.contributor-group {
    margin-bottom: 3rem;
}

.contributor-card .portrait-img {
    height: auto;
    min-height: unset;
    border-radius: 0;
}

.contributor-card .portrait-img img {
    max-height: 100px;
    object-fit: contain;
}

/* ── Spenden page ────────────────────────────────────────────── */
.spenden-bank-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.spenden-field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.spenden-field-label {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.5;
    font-size: 0.7rem;
}

.spenden-field-value {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: var(--font-semibold);
}

.spenden-copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    opacity: 0.5;
    padding: 0;
    transition: var(--transition);
}

.spenden-copy-btn:hover { opacity: 1; }

/* ── Mobile (desktop nav) ─────────────────────────────────────────────────── */
@media (max-width: 1000px) {
    #main-nav { display: none; }
    .nav-brand { font-size: var(--text-large);}
    .hamburger { display: flex; }
}