/* Logo Components */

/* Header Logo */
.logo-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 26px;
  height: 26px;
  background: var(--color-brand-dark);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-dot {
  width: 11px;
  height: 11px;
  background: var(--color-white);
  border-radius: 50%;
}

.logo-text {
  display: flex;
  gap: 4px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--color-text-dark);
  text-decoration: none;
}

.logo-word {
  display: inline;
}

.logo-highlight {
  color: var(--color-brand-dark);
}

/* Card Logo */
.logo-card {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 300px;
}

.logo-card-box {
  background: transparent;
  border-radius: 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: visible;
  position: relative;
  width: 100%;
  aspect-ratio: 1.52;
}

.logo-card-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
