/*
 * News Carousel CSS
 * Custom news carousel styling (.se-nc-*)
 * Extracted from 1 files
 * Generated: 2026-03-23T19:20:40.307Z
 */

.se-nc {
    background: #1e2327;
    padding: 60px 20px 70px;
  }
  .se-nc-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .se-nc-heading {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0 0 32px;
    font-family: 'Open Sans', sans-serif;
  }
  /* ── Swiper overrides ── */
  .se-nc-swiper {
    padding-bottom: 80px !important;
  }
  .se-nc-dots {
    position: absolute !important;
    bottom: 20px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    text-align: center !important;
  }
  .se-nc-dots .swiper-pagination-bullet {
    display: inline-block !important;
    width: 20px !important;
    height: 20px !important;
    background: rgba(197,232,108,0.35) !important;
    opacity: 1 !important;
    margin: 0 6px !important;
    border-radius: 50% !important;
  }
  .se-nc-dots .swiper-pagination-bullet-active {
    background: #c5e86c !important;
  }
  /* ── Card ── */
  .se-nc-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #31373e;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .se-nc-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,.35), 0 0 0 1px rgba(197,232,108,.2);
  }
  .se-nc-card:hover .se-nc-title {
    color: #c5e86c;
  }
  .se-nc-img {
    position: relative;
    width: 100%;
    height: 140px;
    background-size: cover;
    background-position: center;
    background-color: #2a2f35;
    flex-shrink: 0;
  }
  .se-nc-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: .04em;
    text-transform: uppercase;
  }
  .se-nc-badge--news {
    background: rgba(90,130,200,.85);
    color: #fff;
  }
  .se-nc-badge--story {
    background: rgba(197,232,108,.85);
    color: #1e2327;
  }
  .se-nc-body {
    padding: 16px 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .se-nc-date {
    margin: 0;
    font-size: 11px;
    color: rgba(255,255,255,.4);
    font-family: 'Open Sans', sans-serif;
  }
  .se-nc-title {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.35;
    transition: color .2s ease;
  }
  .se-nc-sub {
    margin: 0;
    font-size: 13px;
    color: rgba(255,255,255,.55);
    font-family: 'Open Sans', sans-serif;
    line-height: 1.4;
  }
