/* External News Feed – default styling (override in theme/customizer) */

.enf-latest {
  width: 100%;
  padding: 40px 0;
  text-align: center;
}

.enf-heading{
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-size: 24px;
}

.enf-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

@media (max-width: 960px){
  .enf-grid{ grid-template-columns: 1fr; }
}

.enf-card{
  text-align: center;
}

.enf-link{
  text-decoration: none;
  color: inherit;
  display: block;
}

.enf-media{
  width: 100%;
  overflow: hidden;
}

.enf-img{
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.enf-source{
  margin-top: 14px;
  font-weight: 700;
  text-decoration: underline;
}

.enf-title{
  margin: 14px auto 0;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  max-width: 28ch;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.enf-excerpt{
  margin: 12px auto 0;
  max-width: 40ch;
  line-height: 1.5;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.enf-footer{
  margin-top: 28px;
}

.enf-button{
  display: inline-block;
  padding: 12px 18px;
  border: 1px solid currentColor;
  background: #000;
  color: #fff;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.06em;
}
