/* Partner banner stylesheet for remote embedding */
.aralka-banner {
  --bg: #fdf9f4;
  --ink: #1f150f;
  --accent: #e3b47a;
  --accent-strong: #c07a2c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.9rem 1.1rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff7ea, #fff);
  color: var(--ink);
  text-decoration: none;
  border: 1px solid #e7dacb;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  font-family: "Manrope", "Inter", system-ui, -apple-system, sans-serif;
  transition: color 140ms ease, transform 140ms ease;
}

.aralka-banner:hover {
  color: var(--accent-strong);
}

.aralka-banner figure {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
}

.aralka-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.aralka-text {
  display: grid;
  gap: 0.12rem;
}

.aralka-text strong {
  font-size: 1.02rem;
  line-height: 1.1;
}

.aralka-text span {
  font-size: 0.9rem;
  color: #5c4a3f;
}

/* shape variants */
.aralka-banner.is-wide {
  min-width: 260px;
}

.aralka-banner.is-square {
  width: 220px;
  aspect-ratio: 1 / 1;
  flex-direction: column;
  text-align: center;
}

.aralka-banner.is-tall {
  width: 200px;
  aspect-ratio: 3 / 4;
  flex-direction: column;
  text-align: center;
}

.aralka-banner.is-square figure,
.aralka-banner.is-tall figure {
  flex-direction: column;
}

@media (max-width: 520px) {
  .aralka-banner {
    width: 100%;
    box-sizing: border-box;
  }
}
