/* App content styled to match Elementor kit (hivenetworking.co.uk) */
:root {
  --hive-primary: #1C244B;
  --hive-accent: #DEA31B;
  --hive-text: #324A6D;
  --hive-secondary: #F3F5F8;
  --hive-surface: #F9FAFD;
  --hive-white: #FFFFFF;
}

.hive-flash {
  background: #fff3c7;
  color: var(--hive-primary);
  text-align: center;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: Lato, sans-serif;
}
.hive-flash--error {
  background: #fde8e8;
  color: #8a1f1f;
}

.hive-page {
  font-family: Lato, sans-serif;
  color: var(--hive-text);
  background: var(--hive-white);
}

.hive-page a {
  color: var(--hive-accent);
  font-weight: 600;
  text-decoration: none;
}
.hive-page a:hover {
  color: var(--hive-text);
}

.hive-hero {
  background: var(--hive-primary);
  color: var(--hive-white);
  text-align: center;
  padding: 4.5rem 1.25rem;
}
.hive-hero__eyebrow {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hive-accent);
  margin-bottom: 0.75rem;
}
.hive-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--hive-white);
}
.hive-hero p {
  margin: 1rem auto 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}
.hive-hero__btn {
  display: inline-block;
  margin-top: 1.5rem;
  background: var(--hive-accent);
  color: var(--hive-white) !important;
  border-radius: 15px;
  padding: 0.85rem 1.5rem;
  font-weight: 600;
}
.hive-hero__btn:hover {
  background: var(--hive-primary);
  color: var(--hive-white) !important;
}

.hive-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
}

.hive-panel {
  background: var(--hive-white);
  border: 1px solid #e6ebf0;
  border-radius: 15px;
  padding: 1.75rem;
  margin-bottom: 1.25rem;
}

.hive-panel h2,
.hive-panel h3 {
  margin: 0 0 0.75rem;
  color: var(--hive-primary);
  font-weight: 600;
}

.hive-btn {
  display: inline-block;
  background: var(--hive-accent);
  color: var(--hive-white) !important;
  border: none;
  border-radius: 15px;
  padding: 0.85rem 1.5rem;
  font-family: Lato, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
}
.hive-btn:hover {
  background: var(--hive-primary);
  color: var(--hive-white) !important;
}
.hive-btn--ghost {
  background: transparent;
  color: var(--hive-primary) !important;
  border: 1px solid var(--hive-primary);
}
.hive-btn--ghost:hover {
  background: var(--hive-primary);
  color: var(--hive-white) !important;
}
.hive-btn--block {
  display: block;
  width: 100%;
}

.hive-badge {
  display: inline-block;
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  background: #fff3c7;
  color: #9a6b00;
}
.hive-badge--ok {
  background: #e7f6ed;
  color: #1b6b3a;
}
.hive-badge--muted {
  background: var(--hive-secondary);
  color: var(--hive-text);
}
.hive-badge--dark {
  background: var(--hive-primary);
  color: var(--hive-white);
}

.hive-grid-2 {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .hive-grid-2 {
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
  }
}

.hive-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--hive-text);
}

.hive-price-box {
  background: var(--hive-secondary);
  border-radius: 15px;
  padding: 1.25rem;
}
.hive-price-box__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.hive-price-box__cell {
  background: var(--hive-white);
  border-radius: 12px;
  padding: 0.85rem;
  text-align: center;
}
.hive-price-box__cell span {
  display: block;
  font-size: 0.75rem;
  color: #6b7c93;
}
.hive-price-box__cell strong {
  display: block;
  margin-top: 0.25rem;
  color: var(--hive-primary);
  font-size: 1.1rem;
}

.hive-form label {
  display: block;
  margin-bottom: 1rem;
}
.hive-form label > span {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--hive-primary);
  font-size: 0.9rem;
  font-weight: 600;
}
.hive-form input,
.hive-form select,
.hive-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #d5dde5;
  border-radius: 8px;
  padding: 0.75rem 0.9rem;
  font-family: Lato, sans-serif;
  font-size: 1rem;
  color: var(--hive-text);
  box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.12) inset;
  background: var(--hive-white);
}
.hive-form textarea {
  min-height: 110px;
  resize: vertical;
}
.hive-form .hive-form-row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .hive-form .hive-form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.hive-member-bar {
  background: var(--hive-secondary);
  border-bottom: 1px solid #e6ebf0;
  padding: 0.75rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  justify-content: space-between;
  font-family: Lato, sans-serif;
}
.hive-member-bar a {
  color: var(--hive-primary);
  font-weight: 600;
}
.hive-member-bar strong {
  color: var(--hive-primary);
}

.hive-card-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .hive-card-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hive-prose {
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.7;
}
.hive-prose p {
  margin: 0 0 1rem;
}
.hive-prose img {
  display: block;
  width: 100%;
  margin-top: 2rem;
  border-radius: 15px;
}
