/* ========================================
   Base (mobile first)
   ======================================== */
.flow-logo-text {
  margin: 2rem 0 1.5rem;
  border-bottom: 2px dotted currentColor;
  padding-bottom: 1.5rem;
}

.flow-logo-text h3 {
  margin-bottom: 1.5rem;
  border-bottom: 2px dotted currentColor;
  padding-bottom: 1.5rem;
}

.logo-text-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.logo-wrap {
  flex: 0 0 auto;
  max-width: 200px;
}

.logo-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.text-wrap {
  flex: 1;
  width: 100%;
}

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

.text-content p {
  margin: 0 0 1rem 0;
}

.text-content p:last-child {
  margin-bottom: 0;
}

/* ========================================
   Tablet and Desktop (≥768px)
   ======================================== */
@media (min-width: 48rem) {
  .logo-text-container {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }

  .logo-wrap {
    flex: 0 0 30%;
    max-width: none;
  }

  .text-wrap {
    flex: 0 0 70%;
  }

  .text-content {
    text-align: left;
  }
}
