/* ===================== RESOURCE CENTER CSS ===================== */

/* Breadcrumb */
/* (breadcrumb styles moved to the global style.css 2026-07-14) */

/* ===================== HERO ===================== */
.rc-hero {
  padding: 60px 0;
  background: #fff;
}
.rc-hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.rc-expert-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fdf0f2;
  color: #b01733;
  border: 1.5px solid #f5c6ce;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}
.rc-hero-title {
  font-family: 'Manrope', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin: 0 0 20px;
}
.rc-hero-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.75;
  margin: 0;
}
.rc-hero-img img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* ===================== SECTION LABELS ===================== */
.rc-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fdf0f2;
  color: #b01733;
  border: 1.5px solid #f5c6ce;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}
.rc-section-title {
  font-family: 'Manrope', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #111;
  margin: 0 0 36px;
}

/* ===================== FAQ SECTION ===================== */
.rc-faq-section {
  padding: 60px 0;
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
}
.rc-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.rc-faq-col {
  background: #fff;
  border: 1.5px solid #f0f0f0;
  border-radius: 12px;
  padding: 24px;
}
.rc-faq-col-header {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #111;
  padding-bottom: 14px;
  border-bottom: 2px solid #b01733;
  margin-bottom: 16px;
}
.rc-faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rc-faq-list li a {
  font-size: 14px;
  color: #555;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.rc-faq-list li a::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b01733;
  flex-shrink: 0;
}
.rc-faq-list li a:hover { color: #b01733; }

/* ===================== VIDEOS SECTION ===================== */
.rc-videos-section {
  padding: 60px 0;
  background: #fff;
  border-top: 1px solid #f0f0f0;
}
.rc-videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.rc-video-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid #f0f0f0;
  cursor: pointer;
  transition: box-shadow 0.2s;
}
.rc-video-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.rc-video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: #eee;
  overflow: hidden;
}
.rc-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.rc-video-card:hover .rc-video-thumb img { transform: scale(1.04); }
.rc-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  transition: background 0.2s;
}
.rc-video-card:hover .rc-video-play { background: rgba(176,23,51,0.6); }
.rc-video-play .fas {
  font-size: 36px;
  color: #fff;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.rc-video-title {
  padding: 14px 16px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  line-height: 1.4;
}

/* ===================== MOBILE ===================== */
@media (max-width: 768px) {
  /* Hero: stack image below text */
  .rc-hero { padding: 36px 0; }
  .rc-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .rc-hero-title { font-size: 28px; }

  /* FAQ: single column */
  .rc-faq-section { padding: 40px 0; }
  .rc-faq-grid { grid-template-columns: 1fr; gap: 16px; }
  .rc-section-title { font-size: 24px; }

  /* Videos: single column */
  .rc-videos-section { padding: 40px 0; }
  .rc-videos-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ===== Video modal ===== */
.rc-video-card { cursor: pointer; }
.rc-video-modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; }
.rc-video-modal[hidden] { display: none; }
.rc-video-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.78); }
.rc-video-modal-frame { position: relative; width: min(900px, 92vw); aspect-ratio: 16 / 9; max-height: 80vh; background: #000; border-radius: 12px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.rc-video-modal-iframe-wrap, .rc-video-modal-iframe-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.rc-video-modal-close { position: absolute; top: -44px; right: 0; background: transparent; border: 0; color: #fff; font-size: 30px; line-height: 1; cursor: pointer; padding: 4px 8px; }
