/* Public Pages Layout
   ========================================================================== */
.public-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.public-page > .footer {
  margin-top: auto;
}

.public-page__content {
  flex: 1;
  padding: 2rem 0;
  background-color: var(--bg-neutral);
}

.public-page__content--white {
  background-color: #fff;
}

.public-page__header {
  text-align: center;
  margin-bottom: 2rem;
}

.public-page__header h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--typography-primary);
}

.public-page__header p {
  font-size: 1.1rem;
  color: var(--typography-secondary);
  max-width: 800px;
  margin: 0 auto;
}

/* Landing Page
   ========================================================================== */
.landing-hero {
  background-color: #fff;
}

.landing-section--neutral {
  background-color: var(--bg-neutral);
}

.landing-section--white {
  background-color: #fff;
}

/* Blog Post Component
  ========================================================================== */
  .blog-post {
  font-size: 1.1rem;
  line-height: 1.7;
}

.blog-post h1 {
  color: var(--typography-primary);
  line-height: 1.3;
}

.blog-post h2 {
  color: var(--typography-secondary);
  margin-top: 2rem;
}

.blog-post .lead {
  font-size: 1.25rem;
  color: var(--typography-secondary);
}

.blog-post section {
  margin-bottom: 3rem;
}

.blog-post blockquote {
  font-size: 1.2rem;
  color: var(--typography-secondary);
  border-left: 4px solid var(--color-brand);
  padding-left: 1rem;
}

.blog-post .card {
  border: none;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 1rem;
}

.company-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  border: 1px solid #e9ecef;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  background: #fff;
}

.company-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: #dee2e6;
  text-decoration: none;
  color: inherit;
}

.company-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.company-name {
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  margin: 0;
  margin-bottom: 0.5rem;
}

.company-description {
  font-size: 0.9rem;
  color: #6c757d;
  text-align: center;
  margin: 0;
}

.public-companies-header {
  text-align: center;
  margin-bottom: 2rem;
}

.public-companies-header h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.public-companies-header p {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 800px;
  margin: 0 auto;
}

.info-box {
  background: #f8f9fa;
  border-radius: 0.5rem;
  padding: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.info-box h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #212529;
}

.info-box ul {
  margin: 0;
  padding: 0;
}

.info-box li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-box li:last-child {
  margin-bottom: 0;
}

.info-box i {
  color: #198754;
}

.disclaimer {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.disclaimer i {
  margin-right: 0.25rem;
}

.demo-preview {
  background: #fff;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.demo-preview:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: #dee2e6;
}

.company-logo-wrapper {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-logo {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}
/* Testimonials Section
   ========================================================================== */
.testimonial {
  background: #fff;
  border: 1px solid #e9ecef;
  text-align: center;
}

.testimonial__avatar {
  width: 64px;
  height: 64px;
  object-fit: cover;
}

.testimonial__quote {
  font-style: italic;
  color: var(--typography-secondary);
}

.testimonial__author {
  display: block;
  margin-top: 0.5rem;
  font-weight: 500;
  color: var(--typography-primary);
}

