/* News section */
.sfc-news-section { width: 100%; background: transparent;  }
.sfc-news-header { background: var(--sfc-news-header-bg); }
.sfc-news-title { margin: 0; padding: .2625em 0; color: var(--sfc-news-title); font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.05; font-weight: 700; text-transform: uppercase; }
.sfc-news-title span { color: var(--sfc-news-title-span); }
.sfc-news-grid { display: grid; background: #fff; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); grid-template-rows: repeat(2, minmax(0, 1fr)); gap: clamp(12px, 1.6vw, 24px); padding-top: clamp(24px, 4vw, 56px); padding-bottom: clamp(12px, 2vw, 28px); }
.sfc-news-card { min-width: 0; min-height: 0; position: relative; overflow: hidden; border: 1px solid rgba(0, 0, 0, .12); box-sizing: border-box; }
.sfc-news-card--large { grid-column: 1; grid-row: 1 / span 2; min-height: clamp(273px, 27.3vw, 455px); }
.sfc-news-card--small { grid-column: 2; min-height: clamp(130px, 13vw, 220px); }
.sfc-news-card__link { display: block; position: relative; width: 100%; height: 100%; min-height: inherit; color: var(--sfc-news-overlay-text); text-decoration: none; background: #ddd; overflow: hidden; }
.sfc-news-card__image, .sfc-news-card__placeholder { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.sfc-news-card__placeholder { background: #777; }
.sfc-news-card__overlay { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: clamp(20px, 3vw, 38px); background: var(--sfc-news-overlay); color: var(--sfc-news-overlay-text); }
.sfc-news-card__content { width: 100%; }
.sfc-news-card__content time { display: block; margin-bottom: .55rem; font-size: .78rem; line-height: 1.2; opacity: .85; }
.sfc-news-card__content h3 { margin: 0; color: inherit; font-size: clamp(1.15rem, 2.1vw, 2rem); line-height: 1.15; font-weight: 700; }
.sfc-news-card--large .sfc-news-card__content h3 { font-size: clamp(1.45rem, 3vw, 2.8rem); }
.sfc-news-card__link:hover .sfc-news-card__image, .sfc-news-card__link:focus-visible .sfc-news-card__image { transform: scale(1.035); }
.sfc-news-card__link:focus-visible { outline: 3px solid currentColor; outline-offset: -3px; }
@media (max-width: 900px) {
  .sfc-news-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 14px; }
  .sfc-news-card--large { min-height: clamp(234px, 40.3vw, 364px); }
  .sfc-news-card--small { min-height: clamp(111px, 19.5vw, 176px); }
  .sfc-news-card__overlay { padding: clamp(16px, 3vw, 26px); }
}
@media (max-width: 600px) {
  .sfc-news-title { padding: .2625em 0; }
  .sfc-news-grid { display: grid; background: #fff; grid-template-columns: 1fr; grid-template-rows: none; gap: 12px; padding-top: 18px; padding-bottom: 16px; }
  .sfc-news-card--large, .sfc-news-card--small { grid-column: 1; grid-row: auto; min-height: 169px; }
  .sfc-news-card--large { min-height: 215px; }
  .sfc-news-card__content h3, .sfc-news-card--large .sfc-news-card__content h3 { font-size: clamp(1.2rem, 6vw, 1.65rem); }
}
@media (prefers-reduced-motion: reduce) { .sfc-news-card__image { transition: none; } }
