Toggle menu
83
56
34
2.9K
Landrace.Wiki - The Landrace Cannabis Wiki
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.
.news-card {
  border: 1px solid #e6e6e6;
  border-left: 3px solid #b85b3a;
  border-radius: 14px;
  background: #fff;
  padding: 14px 16px;
  margin: 0 0 14px 0;
}

.news-card__header {
  overflow: hidden;
  margin: 0 0 8px 0;
}

.news-card__date {
  float: left;
  font-size: 0.85rem;
  color: #444;
}

.news-card__category-badge {
  float: right;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #e6e6e6;
  background: #f7f7f7;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #222;
}

.news-card__region {
  clear: both;
  font-size: 0.85rem;
  color: #555;
  margin: 0 0 8px 0;
}

.news-card__title {
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.25;
  margin: 0 0 8px 0;
  color: #111;
}

.news-card__summary {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 0 12px 0;
  color: #222;
  max-height: 4.5em;
  overflow: hidden;
}

/* Button styling */
.news-card__footer {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.news-card__btn {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.news-card__btn a {
  color: inherit !important;
  text-decoration: none !important;
}

/* Read more button (green background) */
.news-card__btn--read {
  background: #2d6a4f;
  color: #fff !important;
  border-color: #2d6a4f;
}

.news-card__btn--read:hover {
  background: #245a42;
  border-color: #245a42;
}

.news-card__btn--read a {
  color: #fff !important;
}

/* Source button (outlined) */
.news-card__btn--source {
  background: #fff;
  color: #2d6a4f;
  border-color: #2d6a4f;
}

.news-card__btn--source:hover {
  background: rgba(45, 106, 79, 0.05);
}

.news-card__btn--source a {
  color: #2d6a4f !important;
}

/* Campaign button (green background, same as read more) */
.news-card__btn--campaign {
  background: #2d6a4f;
  color: #fff !important;
  border-color: #2d6a4f;
}

.news-card__btn--campaign:hover {
  background: #245a42;
  border-color: #245a42;
}

.news-card__btn--campaign a {
  color: #fff !important;
}

/* Make sure links inside buttons don't get underlined */
.news-card__footer a {
  text-decoration: none;
}

.news-card__footer a:hover {
  text-decoration: none;
}