/* Brand/logo presentation (responsive, borderless) */
.brand-logo {
  width: 100%;
  max-width: 180px;     /* controls how large it can get in sidecards/forms */
  aspect-ratio: 1 / 1;  /* keeps a neat square area */
  border-radius: 0;     /* no rounded frame */
  background: transparent;
  border: 0;            /* removes border */
  display: grid;
  place-items: center;  /* perfect centering */
  overflow: hidden;
  margin: 0 auto;       /* centers the block within its parent */
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;  /* never distort */
  padding: 0;           /* no inner padding now */
  display: block;
}

/* Size variants now drive max-width only (responsive) */
.brand-logo.sm { max-width: 110px; }
.brand-logo.lg { max-width: 220px; }

/* Member cards: centered logo + title + follow icons */
.member-card-logo {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 18px;
}

.member-card-title {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 8px;
}

.member-card-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.follow-icons {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.follow-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  text-decoration: none;
}

.follow-icons a:hover {
  border-color: rgba(0,0,0,.18);
}

.follow-label {
  font-size: .85rem;
  color: rgba(0,0,0,.55);
  margin-right: 8px;
}

/* =========================================================
   The Travel Collective — Official Wordmark
   ========================================================= */

.collective-wordmark {
  font-family: 'Libre Baskerville', serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1f1f23;
}

.collective-wordmark.lg {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.collective-wordmark.md {
  font-size: 1.4rem;
}

.collective-wordmark.sm {
  font-size: 1rem;
  letter-spacing: 0.1em;
}

/* Utility: restrained subtitle */
.collective-subtitle {
  font-size: 0.95rem;
  color: rgba(0,0,0,.55);
  margin-top: .25rem;
}

