 :root {
	--primary: #005457;	
	--primary-dark: #00383a;
	--pink:#FF5D8F;
    --yellow:#FFC53D;
    --blue:#35B7E0;
    --green:#43C07C;
	--green-dark:#036f1a;
    --orange:#fa6300;
    --purple:#8B5CF6;
	--paper:#FFF7E8;
    --paper-deep:#FFEFD4;
	--deep-teal: #1A5C6B;
	--red:	   #e50000;
	--red-dark:  #8a0000;
	--wine:      #7a2230;
	--wine-deep: #4e131e;
	--forest:    #2D6A4F;
	--forest-light: #78ac95;
	--gold: #f4c95d;
	--gold-dark:#c1a04c;
	--gold-soft: #e6cf94;
	--cream:     #FFF8EE;
	--parchment: #F5EDD8;
	--parchment-mid: #d4c9ab;
	--parchment-dark:#715941;
	--parchment-light: #fffdf6;
	--grass: #6FCF97;
	--ink:       #241443;
	--muted:     #6B5E50;
	--border:    #E8D5B0;
	--border-deep:    #c8b185;
	--card-bg:   #FFFFFF;
	--white: #fff;
	--shadow:    rgba(30,20,5,0.10);
	--shadow-dark:    rgba(30,20,5,0.30);
	--shadow-hover: rgba(30,20,5,0.20);
	--radius: 10px;
	--radius-card: 18px;
	--radius-pill: 40px;
	--font-display: 'Baloo 2', 'Nunito', sans-serif;
	--font-body:    'Nunito', sans-serif;
	--transition:   0.28s cubic-bezier(0.34,1.56,0.64,1);
	}

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background-color: var(--cream);
      color: var(--ink);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }
	h1,h2,h3,.display{
		font-family:var(--font-display);
		font-weight:700;
		margin:0;
		letter-spacing:0.2px;
	  }
    img { max-width: 100%; height: auto; display: block; }
    a { color:var(--primary); text-decoration: none; }
	.wrap{ max-width:1200px; margin:0 auto; padding:0 24px; }

   /* ---------- Bunting ---------- */
	  .bunting{
		background:var(--ink);
		overflow:hidden;
		height:26px;
		position:relative;
	  }
	  .bunting-row{
		display:flex;
		height:100%;
		animation: bunting-sway 6s ease-in-out infinite;
		transform-origin:top center;
	  }
	  .bunting-row span{
		flex:1 0 34px;
		width:34px;
		height:22px;
		margin-top:2px;
		clip-path:polygon(0 0, 100% 0, 50% 100%);
	  }
	  .bunting-row span:nth-child(6n+1){background:var(--pink);}
	  .bunting-row span:nth-child(6n+2){background:var(--yellow);}
	  .bunting-row span:nth-child(6n+3){background:var(--blue);}
	  .bunting-row span:nth-child(6n+4){background:var(--green);}
	  .bunting-row span:nth-child(6n+5){background:var(--orange);}
	  .bunting-row span:nth-child(6n+6){background:var(--purple);}
    /* ═══════════════════════════════════════════════
       TOP NAV
    ═══════════════════════════════════════════════ */
    .site-header {
      background: var(--ink);
      padding: 0 clamp(16px, 4vw, 60px);
      top: 0;
      z-index: 100;
      box-shadow: 0 3px 18px rgba(0,0,0,0.18);
    }
    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      align-items: center;
      justify-content: space-between;
    }
   header ul{
    list-style: none;
	padding-left:0;
	margin:0;
}
/* Logo */
.logo{
    display: inline-block;
    padding-top: 10px;
}
.logo img {
	max-width:200px;
}
/* Nav menu */
.nav{
    position: fixed;
	left: 10px;
    right: 10px;
    background-color: var(--primary);
    overflow: hidden;
    z-index: 2;
}
.menu a{
    display: block;
    padding: 12px 25px;
    border-bottom: 1px solid var(--primary-dark);
    color: #fff;	
}
.menu li:last-child a {border:none}
.menu a:hover{
    background-color: var(--teal);
}
.nav{
    max-height: 0;
    transition: max-height .5s ease-out;
}
/* Menu Icon */
.hamb{
    cursor: pointer;
    float: right;
    padding: 35px 20px;
}/* Style label tag */

.hamb-line {
    background: var(--cream);
    display: block;
    height: 2px;
    position: relative;
    width: 24px;

} /* Style span tag */

.hamb-line::before,
.hamb-line::after{
    background:var(--cream);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}
.hamb-line::before{
    top: 5px;
}
.hamb-line::after{
    top: -5px;
}

.side-menu {
    display: none;
} /* Hide checkbox */
/* Toggle menu icon */
.side-menu:checked ~ nav{
    max-height:fit-content;
}
.side-menu:checked ~ .hamb .hamb-line {
    background: transparent;
}
.side-menu:checked ~ .hamb .hamb-line::before {
    transform: rotate(-45deg);
    top:0;
}
.side-menu:checked ~ .hamb .hamb-line::after {
    transform: rotate(45deg);
    top:0;
}

body:has(.side-menu:checked) {
  overflow: hidden;
}

@media (max-width: 991px) {
	.logo img {
			max-width:170px;
		}
	.nav{
		box-shadow: var(--shadow);
		z-index:3
	}
}
/* Responsiveness */
@media (min-width: 992px) {	
    .nav{
        max-height: none;
		margin-top: 18px;
        top: 0;
        position: relative;
        float: right;
        width: fit-content;
        background-color: transparent;
    }
    .menu li{
        float: left;
    }
	.menu a{
        background-color:var(--ink);
		border-radius:var(--radius-pill);
		border:none;
		padding: 5px 25px;
		margin:0 2px;
		transition: all 0.5s ease 0s;
    }
    .menu a:hover, .menu a.active {
        background: var(--orange);
		transition: all 0.5s ease 0s;
    }

    .hamb{
        display: none;
    }
}
@media (min-width:992px) and (max-width:1023px) {
	.menu a{
		font-size:0.7rem;
		padding: 10px 15px;
    }
}
@media (min-width:1024px) {
	.menu a{
		font-size:0.8rem;
		padding: 10px 15px;
    }
}
/**** MISCELLENEOUS  **/
	.container {
		max-width: 1200px;
    	margin: 0 auto 28px;
		padding:0 10px;
	}
	.bann-wrap {
		padding:10px;
		text-align:center
		}
	.text-center {text-align:center}
	
	/*****  BOX GRID AND CARD  **/
	.box-card {
		margin: 0 0 25px;
		padding: 20px;
		border: 2px dotted var(--orange);
		border-radius: 8px;
		background: var(--parchment-light);
		transition: all 0.5s ease 0s;
	}
	.box-card .icon {
		width: 35px;
		height: 35px;
		margin-bottom:10px;
		text-align:center;
		margin-left:auto;
		margin-right:auto;
		display:block
	}
	.box-card ul, .box-card ol {
		padding-left:25px;
	}
	.box-card ul li, .box-card ol li {
		line-height:150%;
		margin-bottom:18px;
		padding-left:6px;
	}
	.box-card ul li::marker, .box-card ol li::marker {
		font-weight: 800;
		color: var(--deep-teal);
		}
	.box-grid-2 .box-card:hover, .box-grid-3 .box-card:hover, .box-grid-4 .box-card:hover{
		border: 2px solid var(--green);
		transition: all 0.5s ease 0s;
		box-shadow:3px 3px 5px var(--shadow-hover);
		}
	.box-card a, .box-card a:link {
		text-decoration:none;
		color:var(--ink);
		}
	.box-card img {
		margin-bottom:5px;
		}
	.box-grid-2, .box-grid-3, .box-grid-4 {
		display:grid;
		gap:20px;
		margin-top:40px
	}
	.box-grid-2, .box-grid-3, .box-grid-4 {
		display:grid;
		gap:30px;
		margin-top:40px
	}
	.box-grid-4 {
		display:grid;
		gap:15px;
		margin-top:40px;
		line-height:130%;
		font-size:0.9rem;
		grid-template-columns:repeat(auto-fit, minmax(180px, 1fr))
	}
	.box-grid-4 h3{
		font-size:1.1rem;
		}
	.box-grid-3 {
		grid-template-columns: auto auto auto;
	}
	.box-grid-2 {
		grid-template-columns: repeat(2, 1fr)
	}
	@media (max-width:767px) {
		.box-grid-2, .box-grid-3, .box-grid-4 {
			grid-template-columns:1fr
		}
	}
	.step {
		position: relative;
		padding: 26px 18px 18px;
		border: 2px dashed var(--border);
		border-radius: 16px;
	}
	.step .count {
		counter-increment: step;
		content: counter(step);
		font-weight: 700;
		position: absolute;
		top: -16px;
		left: 16px;
		background: var(--gold);
		border: 2px solid var(--ink);
		width: 32px;
		height: 32px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: .9rem;
	}
    /* ═══════════════════════════════════════════════
       HERO
    ═══════════════════════════════════════════════ */
    .hero{
		position:relative;
		background: radial-gradient(circle at 12% 18%, rgba(255,197,61,.35), transparent 40%),
					radial-gradient(circle at 88% 12%, rgba(53,183,224,.3), transparent 45%),
					var(--ink);
		color:var(--paper);
		padding:64px 0 110px;
		overflow:hidden;
	  }
	  .hero .wrap{ position:relative; z-index:2; }
	  .hero .eyebrow{
		display:inline-flex; align-items:center; gap:8px;
		background:var(--pink);
		color:#fff;
		font-weight:800;
		font-size:0.78rem;
		letter-spacing:1.5px;
		text-transform:uppercase;
		padding:7px 16px;
		border-radius:999px;
		transform:rotate(-2deg);
	  }
	  .eyebrow {
		text-transform: uppercase;
		color:var(--pink);
		letter-spacing: .14em;
		font-size: .82rem;
		font-weight: 800;
		}
	  .hero h1{
		font-size:clamp(2.4rem, 5.6vw, 4.2rem);
		line-height:1.04;
		margin-top:18px;
		max-width:18ch;
	  }
	  .hero h1 .accent-yellow{ color:var(--yellow); }
	  .hero h1 .accent-pink{ color:var(--pink); }
	  .hero p.lede{
		font-size:1.15rem;
		max-width:56ch;
		margin-top:20px;
		color:#EDE6FF;
	  }
	  .hero-ctas{ display:flex; gap:14px; flex-wrap:wrap; margin-top:30px; }
	  .hero-image-wrap {
		  border-radius: 24px;
		  overflow: hidden;
		  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
		}
		@media (min-width:768px) {
			.hero-image-wrap {
			  aspect-ratio: 3/2;
			}
			.hero-image-wrap img {
			  width: 100%;
			  height: 100%;
			  /*object-fit: cover;*/
			  transition: transform 0.6s ease;
			}
			.hero-image-wrap:hover img { transform: scale(1.04); }
		}
	  
	
	  .doodles{ position:absolute; inset:0; z-index:1; pointer-events:none; }
	  .doodles svg{ position:absolute; opacity:0.9; }
	  @keyframes twinkle{ 0%,100%{ opacity:.35; transform:scale(.9) rotate(0deg);} 50%{ opacity:1; transform:scale(1.15) rotate(12deg);} }
	  @keyframes float-y{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-14px);} }
	  .d1{ top:8%; left:6%; width:34px; animation: twinkle 3.4s ease-in-out infinite; }
	  .d2{ top:20%; right:10%; width:26px; animation: twinkle 4.2s ease-in-out infinite .6s; }
	  .d3{ bottom:22%; left:14%; width:44px; animation: float-y 5s ease-in-out infinite; }
	  .d4{ bottom:14%; right:16%; width:30px; animation: twinkle 3.8s ease-in-out infinite 1s; }
	  .d5{ top:52%; left:2%; width:22px; animation: float-y 4.4s ease-in-out infinite .4s; }
	
	  .torn{
		height:26px;
		background:
		  linear-gradient(135deg, var(--paper) 50%, transparent 50%),
		  linear-gradient(-135deg, var(--paper) 50%, transparent 50%);
		background-size:26px 26px;
		background-position:bottom left, bottom left;
		background-repeat:repeat-x;
	  }  

    /* ═══════════════════════════════════════════════
       BREADCRUMB
    ═══════════════════════════════════════════════ */
    .breadcrumb-bar {
      background: var(--parchment);
      border-bottom: 1px solid var(--border);
      padding: 10px clamp(16px, 5vw, 60px);
    }
    .breadcrumb-inner {
      max-width: 1200px;
      margin: 0 auto;
    }
    .breadcrumb-bar ol {
      list-style: none;
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 6px;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--muted);
    }
    .breadcrumb-bar li + li::before {
      content: '›';
      margin-right: 6px;
      color: var(--forest-light);
    }
    .breadcrumb-bar a { color: var(--deep-teal); }
    .breadcrumb-bar a:hover { text-decoration: underline; }
    .breadcrumb-bar [aria-current="page"] { color: var(--orange); font-weight: 700; }
	
	article, .article {font-size:1.1rem;}
	article p, .article p {margin-bottom:15px;}
	.article a { color:var(--primary); text-decoration: underline; transition: all 0.5s ease 0s;}
	.article a:hover { color:var(--ink);transition: all 0.5s ease 0s;}

    /* ═══════════════════════════════════════════════
       SECTION WRAPPER
    ═══════════════════════════════════════════════ */
    .section-wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 clamp(16px, 5vw, 60px);
    }

    h2, .section-title {
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 700;
      color: var(--deep-teal);
      margin-bottom:20px;
	  letter-spacing: 0.01em;
	  display: flex;
	  align-items: center;
	  gap: 12px;
    }
	h2::after, .section-title::after {
      content: "";
		flex: 1;
		height: 2px;
		background: linear-gradient(90deg, var(--orange), transparent);
    }
	h3 {
		font-size: clamp(1.4rem, 3vw, 1.5rem);
		font-weight: 700;
		color: var(--red-dark);
		margin-bottom: 8px;
	}
	h2, h3, .h3 {
	  line-height:130%;
    }
    .section-title-row {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 6px;
    }
	
	/****** BUTTONS **/
	.btn{
		font-weight:800;
		font-size:1rem;
		text-decoration:none;
		padding:14px 26px;
		border-radius:999px;
		display:inline-block;
		border:3px solid var(--ink);
		transition: transform .15s ease, box-shadow .15s ease;
		cursor:pointer;
	  }
	  a.btn-theme, .btn-theme {
	  	font-size:1.2rem;
		font-weight:600;
		background:var(--orange);
		color:var(--white) !important;
		text-decoration:none !important;
		padding:8px 15px;
		border-radius:20px;
		display:inline-block;
		border:2px solid var(--orange);
		transition: all 0.5s ease 0s;
		cursor:pointer;
		}
	  .btn-theme:hover {
	  	color:var(--orange) !important;
		background:none;
		transition: all 0.5s ease 0s;
		}
	  .btn-primary{ background:var(--yellow); color:var(--ink); box-shadow:var(--shadow-ink); }
	  .btn-primary:hover{ transform:translateY(-3px); box-shadow:0 9px 0 var(--ink); }
	  .btn-ghost{ background:transparent; color:var(--paper); border-color:var(--paper); }
	  .btn-ghost:hover{ background:var(--paper); color:var(--ink); }
	  .btn-black, a.btn-black {
		font-weight: 600;
		background: var(--ink);
		color: var(--pink);
		border: none;
		padding: 13px 22px;
		border-radius: 12px;
		cursor: pointer;
		text-decoration:none;
		transition: all 0.5s ease 0s;
	  }
	  .btn-black:hover{ background: var(--pink); color:var(--ink) }
	  .btn-black:active{ transform: translateY(1px) scale(0.98); }
	
	.btn-primary, input[type="submit"] {
      background: var(--orange);
      color: #fff !important;
	  text-decoration:none !important;
	  text-align:center;
      font-weight: 800;
      font-size: 0.95rem;
      padding: 13px 28px;
      border-radius: var(--radius-pill);
      border: none;
      cursor: pointer;
      transition: transform var(--transition), box-shadow var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 4px 20px rgba(232,119,34,0.45);
    }
    .btn-primary:hover {
      transform: translateY(-3px) scale(1.03);
      box-shadow: 0 8px 28px rgba(232,119,34,0.55);
    }
    .btn-ghost {
      background: transparent;
      border: 2px solid rgba(255,255,255,0.5);
      color: #fff;
      font-weight: 700;
      font-size: 0.95rem;
      padding: 11px 26px;
      border-radius: var(--radius-pill);
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; color:#fff; } 

    /* ═══════════════════════════════════════════════
       STORIES
    ═══════════════════════════════════════════════ */
    .fun-section {
	  max-width: 1200px;
      margin:40px auto;
    }
    .fun-grid {
		display: grid;
		grid-template-columns:1fr 300px;
		gap: 25px;
		padding: 50px 0;
		align-items: start;
	}
	@media (max-width:1200px) {
		 .fun-section {
		  padding:0 15px;
		}
	}
	@media (max-width:767px) {
		 .fun-grid {
			 grid-template-columns:1fr;
			}
	}
	.fact-box {
		color: var(--parchment-dark);
		padding: 12px 16px;
		border-radius: 8px;
		font-size: 0.9em;
		margin: 20px 0;
		background: var(--parchment-light);
    	border: 1px solid var(--parchment-mid);
	}
	.tip-card, .matters-box {
		background: var(--parchment);
		border-left: 4px solid var(--red-dark);
		padding: 15px;
		position: relative;
		line-height:140%;
		margin: 35px 0 40px;
	}
	.tip-card p:last-child, .matters-box p:last-child {margin-bottom:0}
	.tip-card em, .matters-box em {
		color: var(--red-dark);
		font-family: var(--font-display);
		font-style: italic;
		letter-spacing: 1px;
		margin-left: 10px;
		font-size: 1.2rem;
	}
	.tip-card h2, .matters-box h2 {font-size:1.8rem; margin-bottom:12px}
	.hero-image, .image-wrap
	 {
		background: var(--parchment-light);
		border: 1px solid var(--parchment-mid);
		padding: 10px;
		margin-bottom: 25px;
		text-align:center
	}
	.hero-image figcaption, .image-wrap figcaption {
		text-align: center;
		font-size: 0.95rem;
		font-style: italic;
		color: var(--parchment-dark);
		margin-top: 5px;
		line-height: 140%;
	}
	.hero-image img, .image-wrap img {
		text-align:center;
		margin: 0 auto;
		width:100%;
		height:auto;
		}
	.img-wrap {
		text-align:center;
		margin:10px 0;}
	.img-wrap img {
		margin:0 auto;
		display:inline-block
		}
	/******   HOME NAV ***/
	
  .fun-nav-grid {
    display:grid;
    grid-template-columns:1fr;
    gap:30px 26px;
    margin-top:36px;
  }
  @media(min-width:600px){ .fun-nav-grid{ grid-template-columns:repeat(2, 1fr); } }

	.fun-nav, a.fun-nav{
		--accent: var(--pink);
		background:var(--card-bg);
		border:2.5px solid var(--ink);
		border-radius:18px;
		box-shadow:6px 6px 0 var(--ink);
		text-decoration:none;
		color:var(--ink);
		overflow:hidden;
		text-decoration:none;
		transform:rotate(var(--tilt,0deg));
		transition: transform .2s ease, box-shadow .2s ease;
	}
	.fun-nav:nth-child(odd){ --tilt:-0.8deg; }
	.fun-nav:nth-child(even){ --tilt:0.9deg; }
	.fun-nav:hover, .ticket:focus-visible{
		transform:rotate(0deg) translateY(-5px);
		box-shadow:9px 10px 0 var(--ink);
	}
	.fun-nav:nth-child(7n+1){ --accent:var(--pink); }
	.fun-nav:nth-child(7n+2){ --accent:var(--blue); }
	.fun-nav:nth-child(7n+3){ --accent:var(--green); }
	.fun-nav:nth-child(7n+4){ --accent:var(--orange); }
	.fun-nav:nth-child(7n+5){ --accent:var(--purple); }
	.fun-nav:nth-child(7n+6){ --accent:var(--yellow); }
	.fun-nav:nth-child(7n+7){ --accent:var(--pink); }
	
	.fun-nav-main{ padding:22px 20px 22px 22px; }
	
	.fun-nav h3{ font-size:1.38rem; display:flex; align-items:center; gap:8px; flex-wrap:wrap; margin-top:4px }
	.fun-nav p{ margin:0; font-size:0.95rem; color:#4a3a66; }
	.fun-nav .go{
	margin-top:14px; display:inline-flex; align-items:center; gap:6px;
	font-weight:800; font-size:0.88rem; color:var(--ink);
	}
	.fun-nav .go svg{ width:16px; height:16px; transition:transform .15s ease; }
	.fun-nav:hover .go svg{ transform:translateX(4px); }
	
	/*****  CTA   ***/
	.cta{
		margin: 44px 0 60px;
		text-align: center;
		padding: 40px 24px;
		border-radius: 22px;
		background: linear-gradient(135deg, rgba(255,201,60,0.35), rgba(47,180,217,0.25));
		border: 1px solid var(--line);
	  }
	  .cta h2{
	  	display:block;
	  	text-align:center
	  }
	  .cta h2::after {display:none}
	  .cta p{ margin: 0 0 20px; color: rgba(43,27,77,0.8); }
	  .cta-btn{
		display: inline-block;
		font-family: var(--display);
		font-weight: 600;
		text-decoration: none;
		background: var(--ink);
		color: var(--paper-2);
		padding: 14px 28px;
		border-radius: 999px;
		transition: background 120ms ease, transform 120ms ease;
	  }
	  .cta-btn:hover{ background: var(--bubblegum); transform: translateY(-2px); }
	
    /* ═══════════════════════════════════════════════
       FAQ SECTION
    ═══════════════════════════════════════════════ */
    .faq-section {
      padding: clamp(25px, 7vw, 25px) clamp(16px, 5vw, 20px);
      background: var(--parchment);
	  border-radius:var(--radius-card);
	  margin: 50px 0 25px;
    }
    .faq-inner {
      margin: 0 auto;
    }
    .faq-item {
      margin-bottom: 12px;
      overflow: hidden;
    }
	.faq-item strong {font-weight:800}
    .faq-question, .faq-question h3 {
      display: flex;
      align-items: center;
	  background:var(--cream);
      justify-content: space-between;
      gap: 16px;
      padding: 10px 15px;
	  line-height:140%;
      cursor: pointer;
      font-weight: 700;
      font-size: 1.1rem;
	  margin:0;
      color: var(--deep-teal);
	  font-family: var(--font-body);
      list-style: none;
      transition: background 0.2s;
    }
    .faq-question:hover { background: var(--cream); }
    .faq-question::marker, .faq-question::-webkit-details-marker { display: none; }
    .faq-chevron {
      width: 22px; height: 22px;
	  line-height: 130%;
      border-radius: 50%;
	  font-size: 0.95rem;
      background: var(--parchment);
      border: 1px solid var(--border);
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.25s;
      font-style: normal;
    }
	.faq-chevron i {font-size: 11px;}
    details[open] .faq-chevron { transform: rotate(180deg); background: var(--orange); border-color: var(--orange); color: #fff; }
    .faq-answer {
      padding: 0 22px 18px;
      font-size: 1rem;
      line-height: 1.7;
      border-top: 1px solid var(--border);
      padding-top: 14px;
    }
	
	
	/******  SOCIAL SHARE   ****/
	.social-share {
	  margin: 25px 0;
	  padding: 20px;
	  background: var(--parchment);
	  border: 1px solid var(--border);
	  border-radius: var(--radius-card);
	  text-align: center;
	}
	
	.social-share-title {
	  display:block;
	  margin: 0 0 15px;
	  color: var(--deep-teal);
	  font-family: var(--font-body);
	  font-size: 1.15rem;
	  line-height: 1.4;
	  font-weight: 700;
	}
	
	.social-share-links {
	  display: flex;
	  flex-wrap: wrap;
	  justify-content: center;
	  align-items: center;
	  gap: 10px;
	}
	.social-share-links a, .social-share-links a:link {text-decoration:none}
	.social-share-links a:hover {color:#fff}
	
	.social-share-link {
	  display: inline-flex;
	  align-items: center;
	  justify-content: center;
	  gap: 8px;
	  min-height: 42px;
	  padding: 8px 15px;
	  border: 1px solid var(--border);
	  border-radius: 999px;
	  background: var(--cream);
	  color: var(--deep-teal);
	  font-size: 0.92rem;
	  font-weight: 700;
	  line-height: 1;
	  text-decoration: none;
	  transition:
		transform 0.2s ease,
		background 0.2s ease,
		color 0.2s ease;
	}
	
	.social-share-link span:first-child {
	  display: inline-flex;
	  align-items: center;
	  justify-content: center;
	  width: 24px;
	  height: 24px;
	  border-radius: 50%;
	  font-size: 0.9rem;
	  font-weight: 800;
	}
	
	.social-share-link:hover {
	  transform: translateY(-2px);
	  color: #fff;
	}
	
	.social-share-link.facebook:hover {
	  background: #1877f2;
	  border-color: #1877f2;
	}
	
	.social-share-link.whatsapp:hover {
	  background: #25d366;
	  border-color: #25d366;
	}
	
	.social-share-link.x-twitter:hover {
	  background: #000;
	  border-color: #000;
	}
	
	.social-share-link.pinterest:hover {
	  background: #bd081c;
	  border-color: #bd081c;
	}
	
	.social-share-link:focus-visible {
	  outline: 3px solid var(--orange);
	  outline-offset: 3px;
	}
	
	@media (max-width: 600px) {
	  .social-share {
		padding: 18px 12px;
	  }
	
	  .social-share-links {
		gap: 8px;
	  }
	
	  .social-share-link {
		flex: 1 1 calc(50% - 8px);
		min-width: 130px;
	  }
	}
	/*  VIDEO   */
	.VidCont, .video-wrap {
		width:auto;
		overflow:hidden;
		margin:20px auto;
		line-height:200%;
		clear:both;
		color:var(--parchment-dark);
		border:2px solid var(--parchment-mid);
		text-align:center;
		font-weight:700;
		font-size:16px;
		background-color:var(--parchment);
		padding:8px;
		margin-bottom:32px;
		box-shadow:var(--shadow)
	}
	.VidCont h3, .VidCont h2, .video-wrap h3, .video-wrap h2 {
		color:var(--parchment-dark);
		margin:3px 4px 9px;
		text-shadow:0 1px 1px #000
	}
	.video-container {
	   height: 0;
	   width: 100%;
	   padding-bottom: 56.25%;
	   overflow: hidden;
	   position: relative;
	}
	 
	.video-container iframe {
		width: 100%;
	   height: 100%;
	   position: absolute;
	   border: none;
	   top: 0;
	   left: 0;
	}
	
	/* ═══════════════════════════════════════════════
       ASIDE RIGHT CONTAINER
    ═══════════════════════════════════════════════ */
	.sidebar { position: sticky; top: 20px; display: flex; flex-direction: column; gap: 22px; }
	.panel-card {
		background: var(--parchment);
		border:1px solid var(--parchment-mid);
		border-radius: var(--radius-card);
		padding: 20px;
		box-shadow: 0 8px 20px -16px rgba(46,26,82,0.4);
	}
	.panel-card h3, .panel-card .h3, .panel-card .section-head{
		font-family: var(--font-display);
		color:var(--red-dark);
		display: block;
		font-size: 1.3rem;
		margin: 0 0 14px;
		font-weight: 600;
		padding-bottom: 2px;
		border-bottom:2px solid var(--border);
	}
	.panel-link { display: flex; align-items: center; gap: 12px; padding: 8px 0; border-bottom: 1px dashed var(--muted);transition: all 0.5s ease 0s; }
	.panel-link:last-child { border-bottom: none; }
	.panel-link img { width: 48px; height: 48px; object-fit: cover; border-radius: 12px; flex-shrink: 0; }
	.panel-link span { font-weight: 700; font-size: 0.9rem;/* color: var(--plum-deep);*/ line-height: 1.3;transition: all 0.5s ease 0s;  }
	.panel-link:hover span {padding-left:5px;transition: all 0.5s ease 0s; }
	.panel-card .discover-list a { display: block; padding: 7px 0; font-weight: 700; font-size: 0.92rem; border-bottom: 1px dashed var(--muted);transition: all 0.5s ease 0s; }
	.panel-card .discover-list a:last-child { border-bottom: none; }
	.panel-card .discover-list a:hover { color: var(--parthment-dark); padding-left:10px; transition: all 0.5s ease 0s; }
	.panel-card br {display:none}
	
	.newsletter {
	background: linear-gradient(135deg, var(--primary), #1f9c91);
	color: #fff; border: none;
	}
	.newsletter .h3 { color: #fff; }
	.newsletter p { font-size: 0.86rem; opacity: 0.92; margin: 0 0 14px; }
	.newsletter input[type=text], .newsletter input[type=email] {
	width: 100%; padding: 11px 14px; border-radius: 12px; border: none;
	font-family: inherit; font-size: 0.92rem; margin-bottom: 10px;
	}
	.newsletter input[type=submit] {
	width: 100%; padding: 11px; border-radius: 12px; border: none;
	background: var(--gold); color: var(--red-dark); font-weight: 800;
	cursor: pointer; transition: transform 0.2s ease;
	}
	.newsletter input[type=submit]:hover { transform: translateY(-2px); }
	
	
	 /* ═══════════════════════════════════════════════
       RELATED
    ═══════════════════════════════════════════════ */
	.related-wrap {
		margin-bottom:25px;
		margin-top: 30px;
		padding-top:25px;
		border-top: 2px solid var(--border);
		}
	.related-wrap h2 {border:none;}
	.related-nav { display: flex; gap: 8px; flex-wrap: wrap; justify-content:center }
    .related-nav a, .more-nav a:link {
      border: 1.5px solid var(--orange);
      background: var(--orange);
      color: var(--cream);
      font-size: 0.82rem;
      font-weight: 700;
      padding: 6px 16px;
	  text-decoration:none;
      border-radius: var(--radius);
      transition: all 0.5s ease 0s;
      font-family: var(--font-body);
    }
    .related-nav a:hover { background: var(--card-bg); border-color: var(--border); color:var(--ink);transition: all 0.5s ease 0s; }
	.related-nav a span.left {margin-right:7px;}
	.related-nav a span.right {margin-left:7px;}
	@media (max-width:490px) {.related-nav a, .more-nav a:link {font-size: 0.7rem;}}
	
	
	
	
     /* ═══════════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════════ */
	.foot-banner {
		background:var(--parchment);
		padding:25px 0;
		}
	.foot-banner .container {
		padding:15px;
		}
    .site-footer {
      background: var(--ink);
      color: rgba(255,255,255,0.65);
      padding: clamp(36px, 5vw, 60px) clamp(16px, 5vw, 60px) 28px;
    }
    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding-bottom: 36px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      margin-bottom: 24px;
    }
	.footer-grid{
    	display:grid; grid-template-columns:repeat(2,1fr); gap:28px;
	  }
	  @media(min-width:700px){ .footer-grid{ grid-template-columns:repeat(4,1fr); } }
	  .footer-grid .head{
		font-family:'Baloo 2',sans-serif; display:block; font-size:1rem; font-weight:600; margin-bottom:12px; color:var(--gold);
	  }
	  .footer-grid ul{ list-style:none; margin:0; padding:0; display:grid; gap:8px; }
	  .footer-grid a{ text-decoration:none; font-size:0.9rem; color:var(--parchment);transition: all 0.5s ease 0s; }
	  .footer-grid a:hover{ color:var(--pink); text-decoration:underline;transition: all 0.5s ease 0s; }
	  
  
    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      font-size: 0.78rem;
	  color:#CCCCCC;
	  text-align:center
    }
	.footer-bottom p{text-align:center}
	/*** SECTION FOOTER **/
	.site-footer .bann-wrap {background:rgba(255,255,255,0.9); padding:10px; margin:15px 0; border-radius:15px}
	.site-footer .wrap {max-width:unset;}
	.foot-sections {padding:0 16px}
	.foot-sections .h3, .foot-sections .foot-head { display:block;font-family: var(--font-display); color: var(--gold-soft); font-size: 1.8rem; margin: 0 0 16px; font-weight:600 }
    .foot-sections ul {
	  list-style: none; padding: 0; margin: 0;
	  display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 8px 18px;
    }
    .foot-sections a { text-decoration:none; font-size:0.9rem; color:var(--parchment);transition: all 0.5s ease 0s; }
    .foot-sections a:hover { color:var(--pink); text-decoration:underline;transition: all 0.5s ease 0s; }
    .footer-bottom a { color: rgba(255,255,255,0.5); }
    .footer-bottom a:hover { color: var(--orange); }
	@media (max-width:767px) {
		.footer-col ul {padding: 0; margin: 0;display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 8px 18px;}
		.foot-sections {padding:0} 
		.foot-sections ul {grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }		
	}

    /* ═══════════════════════════════════════════════
       SCROLL REVEAL ANIMATION
    ═══════════════════════════════════════════════ */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }
    .reveal.visible { opacity: 1; transform: none; }

    /* staggered children */
    .stagger > * { opacity: 0; transform: translateY(22px); transition: opacity 0.45s ease, transform 0.45s ease; }
    .stagger.visible > * { opacity: 1; transform: none; }
    .stagger.visible > *:nth-child(1) { transition-delay: 0.04s; }
    .stagger.visible > *:nth-child(2) { transition-delay: 0.10s; }
    .stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
    .stagger.visible > *:nth-child(4) { transition-delay: 0.22s; }
    .stagger.visible > *:nth-child(5) { transition-delay: 0.28s; }
    .stagger.visible > *:nth-child(6) { transition-delay: 0.34s; }
    .stagger.visible > *:nth-child(n+7) { transition-delay: 0.38s; }

    /* ═══════════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════════ */
    @media (max-width: 860px) {
      .footer-inner { grid-template-columns: 1fr 1fr; }
      nav[aria-label="Primary"] { display: none; }
    }
    @media (max-width: 540px) {
      .footer-inner { grid-template-columns: 1fr; gap: 28px; }
      .newsletter-form { flex-direction: column; }
      .stories-grid { grid-template-columns: 1fr; }
    }
	
	/* ═══════════════════════════════════════════════
       MISCELLANEOUS 
    ═══════════════════════════════════════════════ */
	.table-misc {
		width:100%;
		border:1px solid var(--border);
		border-collapse: collapse;
		margin-bottom:20px;
		margin-left:auto;
		margin-right:auto
		}
	.table-misc td, .table-misc th {
		padding:10px;
		border:1px solid var(--border);
		}
	.table-misc th {background:var(--border);border-right:1px solid var(--border-deep);}
	.table-misc th:last-child {border-right:none}
	.table-misc tr:nth-child(even) {
		background: var(--parchment);
	}
	.mt-10 {margin-top:10px}
	.mt-20 {margin-top:20px}
	.mt-30 {margin-top:30px}
	.mt-40 {margin-top:40px}
	.mt-50 {margin-top:50px}
	.mb-10 {margin-bottom:10px}
	.mb-20 {margin-bottom:20px}
	.mb-30 {margin-bottom:30px}
	.mb-40 {margin-bottom:40px}
	.mb-50 {margin-bottom:50px}
	
