/* ===========================
   FB Reels Gallery – D3-C
   Hero full-width + grid below
   =========================== */

/* Wrapper */
.fb-reels-hero-grid {
  display: block;
}

/* HERO */
.fb-reels-hero {
  margin-bottom: 18px;
}

.fb-reels-hero .fb-reels-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

.fb-reels-hero .fb-reel-embed-wrapper,
.fb-reels-hero iframe {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.fb-reels-hero-meta {
  margin-top: 12px;
}

.fb-reels-hero-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ast-global-color-2, #0e2a47);
  line-height: 1.3;
}

.fb-reels-hero-date {
  font-size: 0.95rem;
  opacity: 0.75;
  margin-top: 4px;
}

/* GRID */
.fb-reels-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.fb-reel-card {
  appearance: none;
  border: 1px solid rgba(0,0,0,0.06);
  background: #fff;
  border-radius: 14px;
  padding: 10px;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  text-align: left;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.fb-reel-card:hover {
  transform: translateY(-2px);
  border-color: rgba(14,42,71,0.35);
  box-shadow: 0 8px 18px rgba(0,0,0,0.06);
}

.fb-reel-card.is-active {
  border-color: var(--ast-global-color-2, #0e2a47);
  box-shadow: 0 8px 18px rgba(14,42,71,0.12);
}

.fb-reel-card-image {
  width: 92px;
  height: 92px;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
}

.fb-reel-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fb-reel-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ast-global-color-2, #0e2a47);
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.fb-reel-card-date {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 6px;
}

/* Responsive */
@media (max-width: 1024px) {
  .fb-reels-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .fb-reels-grid {
    grid-template-columns: 1fr;
  }
  .fb-reel-card {
    grid-template-columns: 76px 1fr;
  }
  .fb-reel-card-image {
    width: 76px;
    height: 76px;
  }
}








/* ===========================
   FB Reels Gallery – D3-C
   Hero full-width + grid below
   (FORCE OVERRIDE)
   =========================== */

.fb-reels-hero-grid{
  display:block !important;
}

/* HERO */
.fb-reels-hero{
  margin-bottom:18px !important;
}

.fb-reels-hero .fb-reels-player{
  width:100% !important;
  aspect-ratio:16/9 !important;
  border-radius:16px !important;
  overflow:hidden !important;
  background:#000 !important;
  box-shadow:0 10px 24px rgba(0,0,0,.08) !important;
}

.fb-reels-hero .fb-reel-embed-wrapper,
.fb-reels-hero iframe{
  width:100% !important;
  height:100% !important;
  display:block !important;
}

.fb-reels-hero-meta{
  margin-top:12px !important;
}

.fb-reels-hero-title{
  font-size:1.2rem !important;
  font-weight:700 !important;
  color:var(--ast-global-color-2,#0e2a47) !important;
  line-height:1.3 !important;
}

.fb-reels-hero-date{
  font-size:.95rem !important;
  opacity:.75 !important;
  margin-top:4px !important;
}

/* GRID */
.fb-reels-grid{
  display:grid !important;
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:14px !important;
}

.fb-reel-card{
  appearance:none !important;
  border:1px solid rgba(0,0,0,0.06) !important;
  background:#fff !important;
  border-radius:14px !important;
  padding:10px !important;
  display:grid !important;
  grid-template-columns:92px 1fr !important;
  gap:12px !important;
  text-align:left !important;
  cursor:pointer !important;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease !important;
  width:100% !important;
}

.fb-reel-card:hover{
  transform:translateY(-2px) !important;
  border-color:rgba(14,42,71,0.35) !important;
  box-shadow:0 8px 18px rgba(0,0,0,0.06) !important;
}

.fb-reel-card.is-active{
  border-color:var(--ast-global-color-2,#0e2a47) !important;
  box-shadow:0 8px 18px rgba(14,42,71,0.12) !important;
}

.fb-reel-card-image{
  width:92px !important;
  height:92px !important;
  border-radius:12px !important;
  overflow:hidden !important;
  background:#111 !important;
}

.fb-reel-card-image img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  display:block !important;
}

.fb-reel-card-title{
  font-size:1rem !important;
  font-weight:700 !important;
  color:var(--ast-global-color-2,#0e2a47) !important;
  line-height:1.3 !important;
  overflow-wrap:anywhere !important;
}

.fb-reel-card-date{
  font-size:.9rem !important;
  opacity:.7 !important;
  margin-top:6px !important;
}

/* Responsive */
@media (max-width:1024px){
  .fb-reels-grid{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }
}
@media (max-width:640px){
  .fb-reels-grid{
    grid-template-columns:1fr !important;
  }
  .fb-reel-card{
    grid-template-columns:76px 1fr !important;
  }
  .fb-reel-card-image{
    width:76px !important;
    height:76px !important;
  }
}