/* RSS Feed Block — item layout */
.rss-feed-list h2 {
  border-bottom: 2px solid #e0e0e0;
  margin-bottom: 20px;
  padding-bottom: 18px;
}
/* Block title: bold, dark, padded, with a rule underneath */
.block-rss-block .block-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1b2a32;
  margin: 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 0;
}

.rss-feed-item {
  border-bottom: 1px solid #e0e0e0;
  padding: 1.25rem 0;
}

.rss-feed-item:first-child {
  padding-top: 0;
}

.rss-feed-item:last-child {
  border-bottom: none;
}

/* Image column — fills its grid col, fixed height crop */
.rss-feed-item__image img {
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 3px;
}

@media screen and (max-width: 639px) {
  .rss-feed-item__image {
    margin-bottom: 0.75rem;
  }
}

/* Content column */
.rss-feed-item__content {
  min-width: 0;
}

/* Title */
.rss-feed-item__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  line-height: 1.3;
}

.rss-feed-item__title a {
  text-decoration: none;
  color: inherit;
}

.rss-feed-item__title a:hover {
  text-decoration: underline;
}

/* Date */
.rss-feed-item__date {
  font-size: 0.9rem;
  font-weight: bold;
  color: #555;
  margin-bottom: 0.4rem;
  padding: 10px 0;
}

/* Summary */
.rss-feed-item__summary {
  font-size: 1rem;
  color: #333;
  margin: 0;
  line-height: 1.5;
}
