/* Swiper Customizations (Full Width Hero) */
.hero-section {
  width: 100%;
  position: relative;
  background: #000;
  margin-bottom: 3rem;
}
.headline-slider {
  width: 100%;
  height: 100%;
}
.headline-slider .swiper-slide {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 70vh;
}
@media (min-width: 1200px) {
  .headline-slider .swiper-slide {
    min-height: 600px;
  }
}
.headline-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transition: opacity 0.5s ease-out, transform 8s linear;
}
.headline-slider .swiper-slide-active img {
  transform: scale(1.05);
  opacity: 0.85;
}
.headline-slider .slide-content {
  position: relative;
  z-index: 10;
  padding: 3rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
  width: 100%;
  color: #fff;
}
.slide-content-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.headline-slider .slide-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0 0 0.75rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .headline-slider .slide-title {
    font-size: 3rem;
    max-width: 80%;
  }
}
.headline-slider .slide-title a {
  color: #fff;
  text-decoration: none;
}
.headline-slider .slide-title a:hover {
  text-decoration: underline;
}
.headline-slider .slide-meta {
  font-size: 1rem;
  color: #e0e0e0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.swiper-pagination-bullet {
  background: #fff !important;
  opacity: 0.4 !important;
  width: 10px;
  height: 10px;
}
.swiper-pagination-bullet-active {
  opacity: 1 !important;
  background: var(--accent) !important;
  transform: scale(1.2);
}

/* Home 2-Column Layout */
.home-layout {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1rem 4rem;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
}
@media (max-width: 960px) {
  .home-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Section Title */
.section-title {
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--primary-dark);
  border-bottom: 3px solid var(--accent);
  padding-bottom: 0.6rem;
  margin: 0 0 1.5rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

/* News Grid (Main & Latest) */
.home-news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .home-news-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}
.main-news .news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.main-news .news-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  background: #eee;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  transition: transform 0.3s;
}
.main-news .news-card:hover .news-img {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.main-news .news-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.main-news .news-title {
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
  line-height: 1.3;
  font-weight: 700;
}
.main-news .news-title a {
  color: var(--text);
}
.main-news .news-title a:hover {
  color: var(--primary);
}
.main-news .news-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.main-news .news-excerpt {
  font-size: 1rem;
  color: #444;
  margin: 0;
  flex: 1;
  line-height: 1.6;
}

/* Latest News List */
.latest-news-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.latest-news-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.latest-news-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.latest-news-item img {
  width: 110px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  background: #eee;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.latest-news-item:hover img {
  opacity: 0.85;
}
.latest-news-item .item-content {
  flex: 1;
}
.latest-news-item .item-title {
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
  font-weight: 600;
  line-height: 1.35;
}
.latest-news-item .item-title a {
  color: var(--text);
}
.latest-news-item .item-title a:hover {
  color: var(--primary);
}
.latest-news-item .item-meta {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

/* Widgets */
.widget {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}
.widget-title {
  font-size: 1.05rem;
  color: var(--primary);
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
  font-weight: 700;
}

/* Calendar Widget */
.calendar {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 0.9rem;
}
.calendar th {
  background: var(--primary);
  color: #fff;
  padding: 0.4rem;
  font-size: 0.8rem;
}
.calendar td {
  padding: 0.4rem;
  border: 1px solid var(--border);
}
.calendar td.today {
  background: var(--accent);
  color: #fff;
  font-weight: bold;
}

/* Search Widget */
.widget-search .search-form {
  display: flex;
  width: 100%;
}
.widget-search input {
  flex: 1;
  width: 100%;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 1.1rem;
}
.social-icons a:hover {
  background: var(--primary-dark);
  text-decoration: none;
}

/* RDM Logo Widget */
.widget-rdm img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  border: 1px solid var(--border);
}

/* Leadership Slider */
.leadership-widget-slider .swiper-slide {
  text-align: center;
}
.leadership-widget-slider img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--accent);
  margin: 0 auto 0.75rem;
}
.leadership-widget-slider h4 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  color: var(--text);
}
.leadership-widget-slider p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}
