/*
Theme Name:   Accident Vegas
Theme URI:    https://accident.vegas
Description:  Genesis Child Theme for Accident.Vegas — dark, data-first design with Deep Red, Metallic Silver, and Explosion Gold brand palette. Built for lead generation, a body shop directory, and crash data transparency.
Author:       Accident.Vegas
Author URI:   https://accident.vegas
Template:     genesis
Version:      1.0.0
License:      GPL-2.0-or-later
License URI:  https://www.gnu.org/licenses/gpl-2.0.html
Tags:         dark, legal, data, directory, genesis
Text Domain:  accident-vegas
*/

/* ==========================================================================
   TABLE OF CONTENTS
   1.  Brand Custom Properties
   2.  Google Fonts Import
   3.  Reset & Base
   4.  Typography
   5.  Layout & Grid
   6.  Navigation / Header
   7.  Hero Sections
   8.  Buttons
   9.  Stat Cards & Data Components
  10.  Section Wrappers
  11.  Streets / Rankings Table
  12.  Cause Cards Grid
  13.  Business Directory
  14.  Advertising / Tier Cards
  15.  CTA Band
  16.  Sidebar
  17.  Posts & Single Post
  18.  Footer
  19.  Widgets
  20.  Forms & WPForms
  21.  Badges & Tags
  22.  Responsive
  23.  Animations
  24.  Genesis Overrides
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. BRAND CUSTOM PROPERTIES
   -------------------------------------------------------------------------- */
:root {
	--av-red:         #B30000;
	--av-red-bright:  #E10600;
	--av-silver:      #D9D9D9;
	--av-gold:        #F5B335;
	--av-orange:      #FF7A00;
	--av-black:       #000000;
	--av-charcoal:    #111111;
	--av-steel:       #1f1f1f;
	--av-dark-steel:  #7D7D7D;
	--av-body:        #C8C8C8;

	/* Spacing scale */
	--sp-micro:    4px;
	--sp-tight:    8px;
	--sp-std:      16px;
	--sp-med:      24px;
	--sp-lg:       32px;
	--sp-section:  48px;
	--sp-major:    64px;

	/* Typography */
	--font-display: 'Bebas Neue', sans-serif;
	--font-cond:    'Barlow Condensed', sans-serif;
	--font-body:    'Barlow', sans-serif;

	/* Transitions */
	--ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
	--t-fast:    150ms;
	--t-med:     250ms;
}

/* --------------------------------------------------------------------------
   2. GOOGLE FONTS
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@400;600;700&family=Barlow:ital,wght@0,400;0,600;1,400&display=swap');

/* --------------------------------------------------------------------------
   3. RESET & BASE
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	background-color: var(--av-black);
	scroll-behavior: smooth;
}

body {
	background-color: var(--av-black);
	color: var(--av-body);
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.65;
	margin:0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img {
	height: auto;
	max-width: 100%;
	display: block;
}

a {
	color: var(--av-silver);
	text-decoration: none;
	transition: color var(--t-fast) var(--ease-out);
}

a:hover,
a:focus {
	color: #fff;
}

/* --------------------------------------------------------------------------
   4. TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-cond);
	font-weight: 700; 
	color: var(--av-silver);
	letter-spacing: 0.02em;
	line-height: 1.1;
	margin: 0 0 var(--sp-std);
}

h1 { font-size: clamp(32px, 5vw, 48px); }
h2 { font-size: clamp(24px, 3vw, 32px); }
h3 { font-size: clamp(18px, 2.5vw, 22px); }
h4 { font-size: 18px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; }

/* Display / Hero headline override */
.av-display,
.hero-headline {
	font-family: var(--font-display);
	font-weight: 400;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--av-silver);
	line-height: 0.92;
	font-size: clamp(52px, 8vw, 88px);
}

.av-display em,
.hero-headline em {
	font-style: normal;
	color: var(--av-red);
}

/* Section overline / label */
.av-overline {
	font-family: var(--font-cond);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--av-gold);
	display: block;
	margin-bottom: 10px;
}

p {
	margin: 0 0 var(--sp-std);
	color: var(--av-body);
}

/* Data / Mono text */
.av-mono,
code,
pre {
	font-family: var(--font-body);
	font-size: 13px;
	color: var(--av-silver);
	letter-spacing: 0.04em;
}

/* Caption */
.av-caption,
figcaption {
	font-family: var(--font-body);
	font-style: italic;
	font-size: 12px;
	color: var(--av-dark-steel);
	line-height: 1.5;
}

/* --------------------------------------------------------------------------
   5. LAYOUT & GRID
   -------------------------------------------------------------------------- */
.av-wrap,
.wrap {
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto; 
}

.site-container {
	background: var(--av-black);
}

.content-sidebar-wrap {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 0;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 40px;
}

.content {
	min-width: 0;
	padding: var(--sp-major) var(--sp-lg) var(--sp-major) 0;
}

.sidebar-primary {
	padding: var(--sp-major) 0 var(--sp-major) var(--sp-lg);
	border-left: 1px solid #1a1a1a;
}

/* Full-width page */
.full-width-content .content-sidebar-wrap,
.page-template-av-full .content-sidebar-wrap {
	grid-template-columns: 1fr;
	padding: 0;
}

.page-template-av-full .content {
	padding: 0;
}

/* --------------------------------------------------------------------------
   6. NAVIGATION / HEADER
   -------------------------------------------------------------------------- */
.site-header {
	background-color: var(--av-black);
	border-bottom: 1px solid #1a1a1a;
	position: sticky;
	top: 0;
	z-index: 1000;
	padding: 0;
}

.site-header .wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* Logo */
.site-header .site-title {
	margin: 0;
	padding: 0;
	line-height: 1;
}

.site-header .site-title a {
	display: block;
}

.site-header .site-title img {
	height: 80px;
	width: auto;
}

.site-header .site-description {
	display: none;
}

/* Primary Nav */
.nav-primary {
	display: flex;
	align-items: center;
}

.nav-primary .genesis-nav-menu {
	display: flex;
	align-items: center;
	gap: 28px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-primary .genesis-nav-menu > li > a {
	font-family: var(--font-cond);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--av-silver);
	opacity: 0.7;
	padding: 8px 0;
	transition: opacity var(--t-fast) var(--ease-out), color var(--t-fast);
}

.nav-primary .genesis-nav-menu > li > a:hover,
.nav-primary .genesis-nav-menu > li.current-menu-item > a {
	opacity: 1;
	color: #fff;
}

/* CTA nav item */
.nav-primary .genesis-nav-menu > li.menu-item-cta > a {
	background: var(--av-red);
	color: #fff;
	opacity: 1;
	padding: 9px 20px;
	transition: background var(--t-fast) var(--ease-out);
}

.nav-primary .genesis-nav-menu > li.menu-item-cta > a:hover {
	background: var(--av-red-bright);
	color: #fff;
}

/* Dropdown menus */
.nav-primary .genesis-nav-menu .sub-menu {
	background: var(--av-charcoal);
	border: 1px solid #1a1a1a;
	border-top: 2px solid var(--av-red);
	list-style: none;
	margin: 0;
	padding: 8px 0;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	z-index: 999;
	opacity: 0;
	pointer-events: none;
	transform: translateY(8px);
	transition: opacity var(--t-med) var(--ease-out), transform var(--t-med) var(--ease-out);
}

.nav-primary .genesis-nav-menu li:hover > .sub-menu,
.nav-primary .genesis-nav-menu li:focus-within > .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.nav-primary .genesis-nav-menu li {
	position: relative;
}

.nav-primary .genesis-nav-menu .sub-menu li a {
	font-family: var(--font-cond);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--av-silver);
	opacity: 0.8;
	display: block;
	padding: 10px 20px;
	transition: background var(--t-fast), opacity var(--t-fast);
}

.nav-primary .genesis-nav-menu .sub-menu li a:hover {
	background: rgba(179,0,0,0.08);
	opacity: 1;
	color: #fff;
}

/* Mobile menu toggle */
.menu-toggle {
	display: none;
	background: transparent;
	border: 1px solid #2a2a2a;
	color: var(--av-silver);
	cursor: pointer;
	font-family: var(--font-cond);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 8px 14px;
}

/* --------------------------------------------------------------------------
   7. HERO SECTIONS
   -------------------------------------------------------------------------- */
.av-hero {
	background: var(--av-black); 
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid #1a1a1a;
}


.av-section dark .av-btn-primary{ padding:15px 25px;}

/* Road stripe decorative element */
.av-hero::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 3px;
	height: 65%;
	background: repeating-linear-gradient(
		to top,
		rgba(217, 217, 217, 0.18) 0,
		rgba(217, 217, 217, 0.18) 16px,
		transparent 16px,
		transparent 32px
	);
	pointer-events: none;
}

.av-hero .hero-content { 
	position: relative;
	z-index: 1;
}
.av-hero .metaslider .caption-wrap{ height:100%; opacity:1; background:none; display: flex; align-items: center;}
.av-hero .metaslider .caption-wrap .caption{ width:1280px; margin:0 auto; padding:0;}
.av-hero .hero-sub {
	font-size: 16px;
	color: var(--av-body);
	max-width: 560px;
	margin: 0 0 36px;
	line-height: 1.6;
}

.av-hero .hero-ctas {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 64px;
}

/* Stat bar pinned to bottom of hero */
.av-stat-bar {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px; 
}

.av-stat-bar .stat-cell { 
	padding: 20px 24px;
}

.av-stat-bar .stat-label {
	font-family: var(--font-cond);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--av-dark-steel);
	margin-bottom: 6px;
}

.av-stat-bar .stat-value {
	font-family: var(--font-display);
	font-size: 38px;
	line-height: 1;
	color: var(--av-silver);
}

.av-stat-bar .stat-value.red   { color: var(--av-red-bright); }
.av-stat-bar .stat-value.gold  { color: var(--av-gold); }

/* --------------------------------------------------------------------------
   8. BUTTONS
   -------------------------------------------------------------------------- */
.button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.av-btn {
	font-family: var(--font-cond);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 26px;
	border: none;
	transition: background var(--t-fast) var(--ease-out), color var(--t-fast), border-color var(--t-fast);
	line-height: 1;
}

/* Primary — Deep Red */
.av-btn-primary,
.button.primary,
input[type="submit"] {
	background: var(--av-red);
	color: #fff;
	border: none;
	padding: 15px 20px;
  	border-radius: 4px;
}

.av-btn-primary:hover,
.button.primary:hover,
input[type="submit"]:hover {
	background: var(--av-red-bright);
	color: #fff;
}

/* Secondary — Ghost */
.av-btn-secondary {
	background: transparent;
	color: var(--av-silver);
	border: 1px solid #fff;
	padding: 10px 20px;
  	border-radius: 4px;
}

.av-btn-secondary:hover {
	border-color: var(--av-silver);
	color: #000;
	background:#fff;
}

/* Gold — single highest-priority CTA per page */
.av-btn-gold {
	background: var(--av-gold);
	color: #000;
	border: none;
}

.av-btn-gold:hover {
	background: #ffc84a;
	color: #000;
}

.front-page-2{ background: #1a1a1a; border: 1px solid #1a1a1a;}

/* Ghost Red — tertiary in red-context sections */
.av-btn-ghost-red {
	background: transparent;
	color: var(--av-red-bright);
	border: 1px solid var(--av-red);
}

.av-btn-ghost-red:hover {
	background: rgba(179,0,0,0.1);
	color: #fff;
}

/* --------------------------------------------------------------------------
   9. STAT CARDS & DATA COMPONENTS
   -------------------------------------------------------------------------- */
.av-metric-card {
	/*background: var(--av-steel);*/
	padding: var(--sp-med);
}

.av-metric-card .metric-label {
 	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color:#fff;
	margin-bottom: 6px;
}

.av-metric-card .metric-value {
	font-family: var(--font-display);
	font-size: 48px;
	line-height: 1;
	color: var(--av-silver);
}

.av-metric-card .metric-value.critical { color: var(--av-red-bright); }
.av-metric-card .metric-value.attention { color: var(--av-gold); }

.av-metric-card .metric-sub {
	font-size: 12px;
	color: var(--av-dark-steel);
	font-style: italic;
	margin-top: 4px;
}

.av-metrics-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1px;
	width: 75%;
	/*background: #1a1a1a;*/
}

/* --------------------------------------------------------------------------
   10. SECTION WRAPPERS
   -------------------------------------------------------------------------- */
.av-section {
	padding: var(--sp-major) 40px;
	border-bottom: 1px solid #1a1a1a; 
}
.front-page-5{ 
	background:url(images/front-4-bg.jpg) left top no-repeat;
	background-size:cover;
	background-attachment:fixed;
	position:relative; z-index:1;
}
.front-page-5:before{ content:''; background-color: #000; opacity: 0.5; position: absolute; left:0; top:0; width:100%; height:100%; z-index:-1;}
.av-section.dark {
	background: #080808;
}

.av-section.charcoal {
	background: var(--av-charcoal);
}

.av-section-header {
	margin-bottom: 36px;
}

.av-section-header .section-title {
	font-family: var(--font-cond);
	font-size: 28px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--av-silver);
	margin: 0 0 8px;
}

.av-section-header .section-desc {
	font-size: 15px;
	color: var(--av-dark-steel);
	max-width: 540px;
	margin: 0;
}

/* --------------------------------------------------------------------------
   11. STREETS / RANKINGS TABLE
   -------------------------------------------------------------------------- */
.av-streets-row{ display:flex; gap:30px; }
.av-streets-list {
	display: flex;
	flex-direction: column;
	gap: 2px;
	width:50%;
}
.av-streets-img{ width:50%;}
.av-street-row {
	display: grid;
	grid-template-columns: 32px 1fr 140px 60px;
	gap: 16px;
	align-items: center;
	padding: 14px 20px;
	background: var(--av-charcoal);
	border-left: 3px solid transparent;
	transition: border-left-color var(--t-med) var(--ease-out),
	            background var(--t-med) var(--ease-out);
	cursor: default;
}

.av-street-row:hover {
	background: #1a1a1a;
	border-left-color: var(--av-red);
}

.av-street-row .rank {
	font-family: var(--font-cond);
	font-size: 12px;
	font-weight: 700;
	color: var(--av-dark-steel);
	text-align: center;
}

.av-street-row .street-name {
	font-family: var(--font-cond);
	font-size: 15px;
	font-weight: 700;
	color: var(--av-silver);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	display: flex;
	align-items: center;
	gap: 8px;
}

.av-street-row .bar-wrap {
	height: 3px;
	background: #1a1a1a;
}

.av-street-row .bar-fill {
	height: 100%;
	background: var(--av-red);
}

.av-street-row .incident-count {
	font-family: var(--font-display);
	font-size: 22px;
	color: var(--av-red-bright);
	text-align: right;
}

/* --------------------------------------------------------------------------
   12. CAUSE CARDS GRID
   -------------------------------------------------------------------------- */
.av-causes-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
}

.av-cause-card {
	background: var(--av-charcoal);
	padding: 28px;
	position: relative;
	overflow: hidden;
	cursor: default;
}

.av-cause-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--av-red);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--t-med) var(--ease-out);
}

.av-cause-card:hover::before {
	transform: scaleX(1);
}

.av-cause-card .cause-pct {
	font-family: var(--font-display);
	font-size: 50px;
	line-height: 1;
	color: var(--av-silver);
	margin-bottom: 4px;
}

.av-cause-card .cause-label {
	font-family: var(--font-cond);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--av-silver);
	margin-bottom: 8px;
}

.av-cause-card .cause-desc {
	font-size: 15px;
	color: var(--av-dark-steel);
	line-height: 1.5;
	margin: 0;
}

/* --------------------------------------------------------------------------
   13. BUSINESS DIRECTORY
   -------------------------------------------------------------------------- */
.av-dir-filters {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 32px;
}

.av-filter-btn {
	font-family: var(--font-cond);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	background: transparent;
	border: 1px solid #2a2a2a;
	color: var(--av-dark-steel);
	padding: 8px 16px;
	cursor: pointer;
	transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}

.av-filter-btn.active,
.av-filter-btn:hover {
	border-color: var(--av-red);
	color: var(--av-silver);
	background: rgba(179, 0, 0, 0.06);
}

.av-biz-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
}

.av-biz-card {
	background: var(--av-charcoal);
	border-left: 3px solid transparent;
	display: flex;
	flex-direction: column;
	transition: border-left-color var(--t-med) var(--ease-out),
	            background var(--t-med) var(--ease-out);
}

.av-biz-card:hover {
	background: #1a1a1a;
	border-left-color: var(--av-red);
}

.av-biz-card.featured {
	border-left-color: var(--av-gold);
}

.av-biz-card .card-top {
	padding: 20px 20px 14px;
	flex: 1;
}

.av-biz-card .card-category {
	font-family: var(--font-cond);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--av-gold);
	margin-bottom: 8px;
}

.av-biz-card .card-name {
	font-family: var(--font-cond);
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--av-silver);
	line-height: 1.1;
	margin-bottom: 6px;
}

.av-biz-card .card-tagline {
	font-size: 12px;
	color: var(--av-dark-steel);
	line-height: 1.4;
	margin: 0;
}

.av-biz-card .card-meta {
	padding: 12px 20px;
	border-top: 1px solid #1a1a1a;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.av-biz-card .meta-row {
	font-size: 11px;
	color: var(--av-dark-steel);
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.av-biz-card .meta-row .meta-icon {
	color: var(--av-dark-steel);
	flex-shrink: 0;
	margin-top: 1px;
}

.av-biz-card .card-cta {
	padding: 12px 20px;
	border-top: 1px solid #1a1a1a;
}

.av-biz-card .card-cta .av-btn-primary {
	width: 100%;
	justify-content: center;
}

.av-biz-card .card-cta .av-btn-gold {
	width: 100%;
	justify-content: center;
}

/* Featured badge on card */
.av-featured-badge {
	font-family: var(--font-cond);
	font-size: 8px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	background: var(--av-gold);
	color: #000;
	padding: 3px 8px;
	display: inline-block;
	margin-bottom: 8px;
}

/* --------------------------------------------------------------------------
   14. ADVERTISING / TIER CARDS
   -------------------------------------------------------------------------- */
.av-tier-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
}

.av-tier-card {
	background: var(--av-charcoal);
	padding: 32px;
	position: relative;
}

.av-tier-card.featured-tier {
	border-top: 3px solid var(--av-gold);
}

.av-tier-card .tier-name {
	font-family: var(--font-display);
	font-size: 32px;
	color: var(--av-silver);
	margin-bottom: 4px;
}

.av-tier-card .tier-price {
	font-family: var(--font-display);
	font-size: 56px;
	line-height: 1;
	color: var(--av-silver);
	margin-bottom: 4px;
}

.av-tier-card .tier-price .per-month {
	font-family: var(--font-cond);
	font-size: 15px;
	font-weight: 400;
	color: var(--av-dark-steel);
}

.av-tier-card .tier-desc {
	font-size: 13px;
	color: var(--av-dark-steel);
	margin-bottom: 20px;
	line-height: 1.5;
}

.av-tier-card .tier-features {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.av-tier-card .tier-features li {
	font-size: 13px;
	color: var(--av-body);
	padding-left: 16px;
	position: relative;
	line-height: 1.4;
}

.av-tier-card .tier-features li::before {
	content: '—';
	position: absolute;
	left: 0;
	color: var(--av-red);
	font-size: 10px;
	top: 2px;
}

.av-tier-card .tier-features li.gold-feature {
	color: var(--av-gold);
}

.av-tier-card .tier-features li.gold-feature::before {
	color: var(--av-gold);
}

.av-tier-card .tier-cta {
	width: 100%;
	justify-content: center;
}

/* Who-should-advertise grid */
.av-who-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2px;
}

.av-who-card {
	background: var(--av-charcoal);
	padding: 28px;
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.av-who-card .who-icon {
	width: 40px;
	height: 40px;
	background: var(--av-red);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 18px;
}

.av-who-card .who-title {
	font-family: var(--font-cond);
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--av-silver);
	margin-bottom: 4px;
}

.av-who-card .who-desc {
	font-size: 13px;
	color: var(--av-dark-steel);
	line-height: 1.5;
	margin: 0;
}

/* --------------------------------------------------------------------------
   15. CTA BAND
   -------------------------------------------------------------------------- */
.av-cta-band {
	background: var(--av-red);
	padding: 56px 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
	border: 4px dashed #ffc84a;
}

.av-cta-band .cta-text h2 {
	font-family: var(--font-display);
	font-size: 44px;
	color: #fff;
	line-height: 1;
	margin-bottom: 8px;
}

.av-cta-band .cta-text p {
	font-size: 15px;
	color: rgba(255,255,255,0.75);
	max-width: 440px;
	margin: 0;
}

.av-cta-band .av-btn-gold {
	flex-shrink: 0;
	padding:15px 25px;
	border-radius:5px;
}

/* --------------------------------------------------------------------------
   16. SIDEBAR
   -------------------------------------------------------------------------- */
.widget-area .widget {
	background: var(--av-charcoal);
	padding: var(--sp-med);
	margin-bottom: 2px;
	border: none;
}

.widget-area .widget:last-child {
	margin-bottom: 0;
}

.widget-area .widget-title {
	font-family: var(--font-cond);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--av-dark-steel);
	margin-bottom: 14px;
	padding-bottom: 10px;
	border-bottom: 1px solid #1a1a1a;
}

.widget-area ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.widget-area ul li {
	font-size: 13px;
	color: var(--av-body);
	padding: 6px 0;
	border-bottom: 1px solid #1a1a1a;
}

.widget-area ul li:last-child {
	border-bottom: none;
}

.widget-area ul li a {
	color: var(--av-silver);
	font-size: 13px;
}

.widget-area ul li a:hover {
	color: #fff;
}

/* --------------------------------------------------------------------------
   17. POSTS & SINGLE POST
   -------------------------------------------------------------------------- */
.entry {
	padding: 0;
	margin-bottom: var(--sp-major);
}

.entry-header {
	margin-bottom: var(--sp-lg);
}

.entry-title {
	font-family: var(--font-cond);
	font-size: 28px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--av-silver);
	margin-bottom: 8px;
}

.entry-title a {
	color: var(--av-silver);
}

.entry-title a:hover {
	color: #fff;
}

.entry-meta {
	font-family: var(--font-cond);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--av-dark-steel);
}

.entry-meta a {
	color: var(--av-dark-steel);
}

.entry-meta a:hover {
	color: var(--av-silver);
}

.entry-content {
	color: var(--av-body);
	font-size: 15px;
	line-height: 1.7;
}

.entry-content p { margin-bottom: var(--sp-std); }

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	color: var(--av-silver);
	margin-top: 0;
	margin-bottom: var(--sp-lg);
}

.entry-content a {
	color: var(--av-red-bright);
	text-decoration: underline;
	text-decoration-color: rgba(225,6,0,0.4);
}

.entry-content a:hover {
	color: #fff;
	text-decoration-color: var(--av-red);
}

.entry-content ul,
.entry-content ol {
	margin: 0 0 var(--sp-std) var(--sp-lg);
	color: var(--av-body);
}

.entry-content li { margin-bottom: 6px; }

.entry-content blockquote {
	border-left: 3px solid var(--av-red);
	margin: var(--sp-lg) 0;
	padding: var(--sp-std) var(--sp-lg);
	background: var(--av-charcoal);
	font-style: italic;
	color: var(--av-silver);
}

.entry-image {
	margin-bottom: var(--sp-std);
}

.entry-image img {
	width: 100%;
}

/* Archive / blog list */
.archive .entry {
	background: var(--av-charcoal);
	padding: var(--sp-med);
	margin-bottom: 2px;
	border-left: 3px solid transparent;
	transition: border-left-color var(--t-med) var(--ease-out);
}

.archive .entry:hover {
	border-left-color: var(--av-red);
}

.entry-footer {
	margin-top: var(--sp-std);
	padding-top: var(--sp-std);
	border-top: 1px solid #1a1a1a;
}

/* Post navigation */
.pagination {
	display: flex;
	gap: 2px;
	margin-top: var(--sp-lg);
}

.pagination a,
.pagination .page-numbers {
	font-family: var(--font-cond);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	padding: 10px 16px;
	background: var(--av-charcoal);
	color: var(--av-silver);
	transition: background var(--t-fast);
}

.pagination a:hover {
	background: var(--av-red);
	color: #fff;
}

.pagination .current {
	background: var(--av-red);
	color: #fff;
}

/* --------------------------------------------------------------------------
   18. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
	background:url(images/footer-bg.jpg) left top no-repeat;
	background-size:cover;
	/*background: var(--av-charcoal);
	border-top: 1px solid #1a1a1a;*/
	position:relative;
	z-index:1;
}
.site-footer:before{ content:''; position:absolute; left:0; top:0; background:#000; opacity:0.8; width:100%; height:100%; z-index:-1;}
.site-footer .wrap {
	padding-top: 48px;
	padding-bottom: 0;
}

.footer-widgets {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 48px;
	border-bottom: 1px solid #1a1a1a;
}

.footer-widgets .widget {
	background: transparent;
	padding: 0;
	margin: 0;
}

.footer-widgets .widget-title {
	font-family: var(--font-cond);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 16px;
	padding-bottom: 8px;
	border-bottom: 1px solid #1a1a1a;
}

.footer-widgets ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-widgets ul li {
	font-size: 13px;
	color: var(--av-dark-steel);
	border-bottom: none;
	padding: 4px 0;
}

.footer-widgets ul li a {
	color: var(--av-dark-steel);
	font-size: 15px;
	transition: color var(--t-fast);
}

.footer-widgets ul li a:hover {
	color: var(--av-silver);
}

.footer-logo {
	margin-bottom: 16px;
}

.footer-logo img {
	height: 108px;
	width: auto;
}

.footer-about {
	font-size: 15px;
	color: var(--av-dark-steel);
	line-height: 1.6;
	margin: 0;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	padding: 20px 0;
}

.footer-copyright {
	font-family: var(--font-cond);
	font-size: 11px;
	letter-spacing: 0.06em;
	color: var(--av-dark-steel);
	margin: 0;
}

.footer-links {
	display: flex;
	gap: 20px;
}

.footer-links a {
	font-family: var(--font-cond);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--av-dark-steel);
}

.footer-links a:hover {
	color: var(--av-silver);
}

.footer-disclaimer {
	background: var(--av-charcoal);
	border-top: 1px solid #1a1a1a;
	padding: 14px 40px;
}

.footer-disclaimer p {
	font-family: var(--font-body);
	font-style: italic;
	font-size: 11px;
	color: var(--av-dark-steel);
	margin: 0;
	line-height: 1.5;
}

/* --------------------------------------------------------------------------
   19. WIDGETS
   -------------------------------------------------------------------------- */
/* Quick Stats sidebar widget */
.widget-av-stats .stat-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 0;
	border-bottom: 1px solid #1a1a1a;
}

.widget-av-stats .stat-row:last-child {
	border-bottom: none;
}

.widget-av-stats .stat-row .s-label {
	font-size: 11px;
	color: var(--av-dark-steel);
}

.widget-av-stats .stat-row .s-val {
	font-family: var(--font-display);
	font-size: 22px;
	color: var(--av-silver);
}

.widget-av-stats .stat-row .s-val.danger {
	color: var(--av-red-bright);
}

/* --------------------------------------------------------------------------
   20. FORMS & WPFORMS
   -------------------------------------------------------------------------- */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="url"],
input[type="search"],
textarea,
select {
	background: var(--av-steel);
	border: 1px solid #2a2a2a;
	color: var(--av-silver);
	font-family: var(--font-body);
	font-size: 14px;
	padding: 12px 16px !important;
	width: 100%;
	transition: border-color var(--t-fast);
	border-radius: 0;
	outline: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
	border-color: var(--av-red);
	box-shadow: 0 0 0 2px rgba(179,0,0,0.15);
}

textarea {
	min-height: 120px;
	resize: vertical;
}

label {
	font-family: var(--font-cond);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0;
	  text-transform: capitalize;
	  color: #fff;
	display: block;
	margin-bottom: 6px;
}

/* WPForms overrides */
.wpforms-container .wpforms-field-label {
	font-family: var(--font-cond) !important;
	font-size: 10px !important;
	font-weight: 600 !important;
	letter-spacing: 0.18em !important;
	text-transform: uppercase !important;
	color: var(--av-dark-steel) !important;
}

.wpforms-container .wpforms-submit-container .wpforms-submit {
	background: var(--av-red) !important;
	color: #fff !important;
	font-family: var(--font-cond) !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	letter-spacing: 0.16em !important;
	text-transform: uppercase !important;
	padding: 13px 28px !important;
	border: none !important;
	cursor: pointer !important;
	transition: background var(--t-fast) !important;
}

.wpforms-container .wpforms-submit-container .wpforms-submit:hover {
	background: var(--av-red-bright) !important;
}

/* --------------------------------------------------------------------------
   21. BADGES & TAGS
   -------------------------------------------------------------------------- */
.av-badge {
	font-family: var(--font-cond);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	padding: 3px 8px;
	display: inline-block;
	line-height: 1.4;
}

.av-badge.danger   { background: var(--av-red);    color: #fff; }
.av-badge.gold     { background: var(--av-gold);   color: #000; }
.av-badge.silver   { background: #2a2a2a; color: var(--av-silver); }
.av-badge.dark     { background: #1a1a1a; color: var(--av-dark-steel); }
.av-badge.featured { background: var(--av-gold);   color: #000; }

/* --------------------------------------------------------------------------
   23. ANIMATIONS
   -------------------------------------------------------------------------- */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.av-animate {
	animation: fadeUp 0.35s var(--ease-out) forwards;
}

.av-animate-delay-1 { animation-delay: 100ms; }
.av-animate-delay-2 { animation-delay: 200ms; }
.av-animate-delay-3 { animation-delay: 300ms; }
.av-animate-delay-4 { animation-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}

/* --------------------------------------------------------------------------
   24. GENESIS FRAMEWORK OVERRIDES
   -------------------------------------------------------------------------- */
/* Kill Genesis defaults that conflict with our dark theme */
.site-inner,
.content-sidebar-wrap,
.content,
.sidebar-primary {
	background: transparent;
}

/* Strip Genesis padding from site-inner */
.site-inner {
	padding-top: 0;
	background: #010a1b;
}

/* Archive title */
.archive-title {
	font-family: var(--font-display);
	font-size: 56px;
	color: var(--av-silver);
	border-bottom: 1px solid #1a1a1a;
	padding-bottom: var(--sp-std);
	margin-bottom: var(--sp-lg);
}

/* Search results */
.search-form input[type="search"] {
	background: var(--av-steel);
	border: 1px solid #2a2a2a;
	color: var(--av-silver);
}

.search-form input[type="submit"] {
	background: var(--av-red);
	color: #fff;
}

/* Comments */
.comment-respond {
	background: var(--av-charcoal);
	padding: var(--sp-med);
	margin-top: var(--sp-major);
}

.comments-title,
.comment-reply-title {
	font-family: var(--font-cond);
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--av-silver);
	margin-bottom: var(--sp-std);
}

.comment-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.comment {
	background: var(--av-charcoal);
	padding: var(--sp-med);
	margin-bottom: 2px;
	border-left: 3px solid transparent;
}

.comment:hover {
	border-left-color: var(--av-red);
}

.comment-author .fn {
	font-family: var(--font-cond);
	font-weight: 700;
	text-transform: uppercase;
	color: var(--av-silver);
}

.comment-metadata {
	font-size: 11px;
	color: var(--av-dark-steel);
}

.comment-content {
	font-size: 14px;
	color: var(--av-body);
	margin-top: 8px;
}

/* WooCommerce basic dark override (if used) */
.woocommerce,
.woocommerce-page {
	background: var(--av-black);
	color: var(--av-body);
}

.genesis-skip-link{ display:none;}

.single-post-nav{  display: flex; justify-content: space-between;}
.single-post-right{ display:flex; gap:10px;}
.single-post-nav a {
  border: 1px solid #555;
  padding: 10px 20px;
  border-radius: 5px; display: inline-block;
}


/* Main popup container */
.wpgmza_infowindow,
.wpgmza-infowindow {
    padding: 0 !important;
    border-radius: 14px !important;
    overflow: hidden;  
}

/* Title */
.wpgmza_infowindow_title,
.wpgmza-infowindow-title {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #d32f2f !important;
    line-height: 1.3;
    margin: 0 0 15px;
}

/* Category badge */
.wpgmza_infowindow_categories {
    display: inline-block;
    background: #f3f5f7;
    color: #4b5563;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Address */
.wpgmza_infowindow_address {
    color: #000;
    font-size: 15px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 22px;
}

.wpgmza_infowindow_address:before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' fill='%23d32f2f' viewBox='0 0 256 256'%3E%3Cpath d='M128,64a40,40,0,1,0,40,40A40,40,0,0,0,128,64Zm0,64a24,24,0,1,1,24-24A24,24,0,0,1,128,128Zm0-112a88.1,88.1,0,0,0-88,88c0,31.4,14.51,64.68,42,96.25a254.19,254.19,0,0,0,41.45,38.3,8,8,0,0,0,9.18,0A254.19,254.19,0,0,0,174,200.25c27.45-31.57,42-64.85,42-96.25A88.1,88.1,0,0,0,128,16Zm0,206c-16.53-13-72-60.75-72-118a72,72,0,0,1,144,0C200,161.23,144.53,209,128,222Z'/%3E%3C/svg%3E");
}

/* Description */
.wpgmza_infowindow_description {
    background: #fafafa;
    border-radius: 10px;
    padding: 15px;
    margin: 15px 0;
    font-size: 15px;
    line-height: 1.6;
	border: 1px solid #bfaaaa;
    border-left: 4px solid #d32f2f;
}

/* Details button */
.wpgmza_infowindow_link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #d32f2f;
    color: #fff !important;
    text-decoration: none !important;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: .3s;
}

.wpgmza_infowindow_link a:hover {
    background: #b71c1c;
    transform: translateY(-2px);
}

/* Google Maps popup wrapper */
body .gm-style .gm-style-iw-c {
    padding: 20px !important;
    border-radius: 14px !important;
    max-width: 420px !important; flex-direction: row-reverse;
}

.gm-style .gm-style-iw-d {
    overflow: auto !important;
}

/* Close button */
.gm-ui-hover-effect {
    top: 5px !important;
    right: 5px !important; position: absolute !important;
}
body.home .content{ padding:0;}
.below-header-widget { background: #212121; padding:10px 0; border-bottom: 1px solid #1a1a1a;}
.below-header-widget .wrap{ max-width:1000px;}
.below-header-widget .widget { margin-bottom: 0;}


/*GEO Directory Css*/
.bsui { font-size: 16px;}
.site-inner .entry-content .bsui ul li{ list-style:none;}
.bsui .badge.bg-secondary{ color:#fff !important;}
.single-gd_place .content .entry-header{ display:none;}
.bsui .text-justify {  text-align: left !important;}

body.single-gd_place .content{ width:100%;}
body.single-gd_place .sidebar-primary{ display:none;}

.geodir-pos_navigation{ border-top:1px solid #ddd; padding-top:10px;}
.package-logo{ width: 330px; float: right; margin: 0 0 20px 20px;}

.bsui .card{ box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.1) !important;}
.bsui.geodir-loop-container .geodir-category-list-view .card-body.p-2 {
  padding: 25px !important;
}
body .bsui .text-justify {
  text-align: left !important;
}
.geodir-category-list-view .card-footer{ display:none;}

.listing-container {
  max-width: 1200px;
  margin: auto;
  font-family: Arial, sans-serif;
}

/* TOP BANNER */
.top-banner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
	clear:both;
}

.banner-left {
  background: #0d1b3d;
  border-radius: 12px;
  overflow: hidden;
}

.banner-right .ad-box {
  background: #eee;
  height: 100%;
  min-height: 250px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
}

/* HEADER */
.listing-header {
  margin-bottom: 20px;
}

.listing-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.listingLogo {
  width: 190px;
  height: 120px;
  background: #11246f;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  overflow: hidden;
  border: 1px solid #11246f;
  margin-top: -60px;
  margin-left: 10px;
  margin-right: 10px; 
	position:relative;
}
.listingLogo .geodir-cf-file-name, .listingLogo .geodir_post_meta_icon{ display:none;}
.claim-box .btn-primary{ margin-bottom:10px; width:100%; background: #11246f !important; border-color: #11246f !important;}
.left-content h3 {
  font-size: 26px;
  font-weight: 600; 
	color:#ff8300;
}
/* GRID */
.listing-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

/* CARDS */
.listing-grid .listing-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.10);
  margin-bottom: 20px; border: 1px solid #a6acc0;
}
.listing-grid .listing-card h4 {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  color: #000;
}
/* SIDEBAR */
.sidebar .listing-card {
  margin-bottom: 15px;
}

/* CLAIM BUTTON */
.claim-box {
  text-align: center;
}

.claim-box .geodir-claim-post {
  width: 100%;
  background: #1e2b5c;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
}

.listing-header h1{font-size: 28px; font-weight: 600; margin: 0; color: #122570;}
.gd-phone .geodir_post_meta_title {
    display: none;
}
.custom-listing .card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}
.custom-listing .geodir-category-list-view{ display:block !important;}
.custom-listing .bsui .row.row-cols-md-0 .card{ box-shadow:none !important; border:none; border-bottom: 1px solid #ddd; border-radius: 0px; padding: 10px 0 !important;}
.custom-listing .bsui .row.row-cols-md-0 .card .card{ border:none !important; padding:0 !important;}
.custom-listing .card-img-top{ max-width:60px !important;}
.custom-listing .bsui .carousel-item > .ratio.geodir-link-image{ height:60px;}
.custom-listing .bsui .mb-4{ margin:0 !important;}
.custom-listing .gd-badge-meta, .custom-listing .gd-fav-info-wrap{ display:none;}
.ad-box .geodir_post_meta_icon, .ad-box .geodir-cf-file-name{ display:none;}

.sim-item:last-child {
  border-bottom: none;
}

/* Thumbnail */
.custom-listing img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  object-fit: cover;
}
 
/* Target only this block */
.custom-listing .geodir-post-content-container,
.custom-similar .geodir-entry-content,
.custom-similar .geodir-post-excerpt {
  display: none !important;
} 
/* --------------------------------------------------------------------------
   22. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1280px) {
	.content-sidebar-wrap {
		grid-template-columns: 1fr 280px;
	}
	.av-hero .metaslider .caption-wrap .caption{ width:90%;}
}

@media (max-width: 1024px) {
	.av-causes-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.av-biz-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.av-tier-grid {
		grid-template-columns: 1fr;
		gap: 2px;
	}

	.footer-widgets {
		grid-template-columns: 1fr 1fr;
		gap: 24px;
	}
	.below-header-widget .wrap{ width:90%;}
}

@media (max-width: 768px) {
	.site-header .wrap {
		padding-left: 16px;
		padding-right: 16px;
	}

	.menu-toggle {
		display: block;
	}
	#genesis-mobile-nav-primary.activated:before{
		content:"\f158";
	}
	.nav-primary .genesis-nav-menu {
		flex-direction: column;
		gap: 0;
		background: var(--av-charcoal);
		border-top: 1px solid #1a1a1a;
		position: absolute;
		top: 78px;
		left: 0;
		right: 0;
		padding: 8px 0;
		align-items: start;
	}

	.nav-primary .genesis-nav-menu.menu-open {
		display: flex;
	}

	.nav-primary .genesis-nav-menu > li > a {
		padding: 12px 16px;
		display: block;
		opacity: 1;
	}

	.av-hero {
		padding: 0;
	}
	.av-hero .metaslider img{ height: 300px; object-fit:cover;}
	.av-hero .hero-sub{ display:none;}
	.hero-headline{ font-size:30px;}
	.hero-headline br{ display:none;}
	.av-hero .metaslider .caption-wrap .caption{ width:90%;}
	.av-hero .hero-ctas{ margin:0;}
	.av-btn-primary, .av-btn-secondary{ padding:8px 12px;}
	.av-section {
		padding: var(--sp-major) 16px;
	}

	.av-stat-bar {
		grid-template-columns: repeat(2, 1fr);
	}

	.av-causes-grid,
	.av-biz-grid,
	.av-who-grid {
		grid-template-columns: 1fr;
	}

	.av-street-row {
		grid-template-columns: 28px 1fr 60px;
	}

	.av-street-row .bar-wrap {
		display: none;
	}

	.content-sidebar-wrap {
		grid-template-columns: 1fr;
		padding: 0 16px;
	}

	.content {
		padding: var(--sp-lg) 0;
	}

	.sidebar-primary {
		padding: 0 0 var(--sp-lg);
		border-left: none;
		border-top: 1px solid #1a1a1a;
	}

	.av-cta-band {
		padding: 40px 16px;
		flex-direction: column;
		align-items: flex-start;
	}

	.av-cta-band .cta-text h2 {
		font-size: 32px;
	}

	.footer-widgets {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.av-wrap,
	.site-container .wrap {
		padding-left: 16px;
		padding-right: 16px;
	}
}

@media (max-width: 1023px) {
	.menu-toggle{
        position:absolute;
        top:20px;
        right:20px;
        width:40px;
        height:40px;
        border:0;
        background:none;
        font-size:0;
        cursor:pointer;
    }

    /* Hamburger */
    .menu-toggle:before{
        content:"\f333";
        font-family:dashicons;
        font-size:32px;
        color:#fff;
        transition:.3s ease;
    }

    /* Close icon */
    .menu-toggle[aria-expanded="true"]:before {
    content: "\f158";
    font-family: dashicons;
}

.menu-toggle[aria-expanded="false"]:before {
    content: "\f333";
    font-family: dashicons;
}

    /* Hide menu initially */
    #genesis-nav-primary{
        display:block !important;
        overflow:hidden;
        max-height:0;
        opacity:0;
        visibility:hidden;
        transition:
            max-height .45s ease,
            opacity .3s ease;
    }

    /* Open menu */
    #genesis-nav-primary.menu-open{
        max-height:600px;
        opacity:1;
        visibility:visible;
    }

    /* Menu items animation */
    #genesis-nav-primary .menu-item{
        opacity:0;
        transform:translateX(-20px);
        transition:all .3s ease;
    }

    #genesis-nav-primary.menu-open .menu-item{
        opacity:1;
        transform:translateX(0);
    }

    #genesis-nav-primary.menu-open .menu-item:nth-child(1){transition-delay:.05s;}
    #genesis-nav-primary.menu-open .menu-item:nth-child(2){transition-delay:.1s;}
    #genesis-nav-primary.menu-open .menu-item:nth-child(3){transition-delay:.15s;}
    #genesis-nav-primary.menu-open .menu-item:nth-child(4){transition-delay:.2s;}
    #genesis-nav-primary.menu-open .menu-item:nth-child(5){transition-delay:.25s;}
}

