/* Base wrapper */
.beq-module {
  font-family: 'Outfit', sans-serif !important;
  color: #1C1C1A !important;
  line-height: 1.6;
  font-size: 1rem;
}

/* Force all text elements inside modules to use dark text */
.beq-module * {
  color: #1C1C1A !important;
}

/* Card Grid Layout */
.beq-module .beq-news-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

/* News list card */
.beq-module a.beq-news-list-item-link {
  display: block;
  background: white !important;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  text-decoration: none !important;
  color: #1C1C1A !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.beq-module a.beq-news-list-item-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Headline */
.beq-module .beq-news-list-item-headline {
  font-size: 1.5rem !important;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1C1C1A !important;
}

/* Body preview */
.beq-module .beq-news-list-item-body {
  font-size: 1rem;
  line-height: 1.5;
  color: #1C1C1A !important;
}

/* Date */
.beq-module .beq-news-list-item-date {
  color: #999 !important;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

/* Category tag (e.g. REG) */
.beq-module .beq-news-list-item-category {
  color: #666 !important;
  font-size: 0.75rem;
  font-weight: 500;
  margin-left: 0.5rem;
  padding: 0;
}

/* Detail headline */
.beq-module .beq-news-detail-headline {
  font-size: 2rem !important;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1C1C1A !important;
}

/* Detail body wrapper */
.beq-module .beq-news-detail {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  color: #1C1C1A !important;
}

/* Paragraphs */
.beq-module p {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  color: #1C1C1A !important;
}

/* Filter controls */
.beq-module select,
.beq-module input[type="text"] {
  font-family: 'Outfit', sans-serif;
  padding: 0.5rem;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #DDD;
  color: #1C1C1A !important;
}

/* Buttons */
.beq-module .beq-button {
  font-family: 'Outfit', sans-serif;
  padding: 12px 32px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  background-color: #1C1C1A;
  color: white !important;
  cursor: pointer;
  transition: background 0.3s ease;
}

.beq-module .beq-button:hover {
  background-color: #333;
}

.beq-module .beq-button.beq-button-clear {
  background-color: transparent;
  color: #1C1C1A !important;
  border: 1px solid #CCC;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .beq-module .beq-news-list {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
  }

  .beq-module .beq-news-detail {
    padding: 2rem 1rem;
  }

  .beq-module .beq-news-list-item-headline {
    font-size: 1.25rem !important;
  }

  .beq-module .beq-news-detail-headline {
    font-size: 1.5rem !important;
  }

  .beq-module .beq-button {
    width: 100%;
    padding: 14px;
  }
}