/**
 * News Article Byline Fix
 * Cluster author, date, read time on the left
 */

.news-article .flex.flex-wrap.items-center.gap-2.text-sm {
  justify-content: flex-start !important;
  width: auto !important;
  max-width: max-content !important;
}

.news-article .flex.flex-wrap.items-center.gap-2 span {
  flex-shrink: 0 !important;
  white-space: nowrap !important;
}

/* Style Mailchimp block on news article pages */
.news-article .mailchimp-signup-subscribe-form-block {
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
}

.news-article .mailchimp-signup-subscribe-form-block .block__title {
  font-family: var(--font-serif, serif);
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.news-article .mailchimp-signup-subscribe-form-block .mailchimp-signup-subscribe-description {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.news-article .mailchimp-signup-subscribe-form-block input[type="text"],
.news-article .mailchimp-signup-subscribe-form-block input[type="email"] {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  background: white;
  margin-bottom: 0.75rem;
}

.news-article .mailchimp-signup-subscribe-form-block input[type="submit"] {
  width: 100%;
  padding: 0.5rem 1rem;
  background: #1a1a1a;
  color: white;
  border: none;
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
}

.news-article .mailchimp-signup-subscribe-form-block input[type="submit"]:hover {
  background: #333;
}

.news-article .mailchimp-signup-subscribe-form-block label {
  font-size: 0.875rem;
  color: #4b5563;
  margin-bottom: 0.25rem;
}
