/*
Theme Name: vivom
Modern Redesign â€” Same classes, elevated aesthetics
*/

/* â”€â”€â”€ Design Tokens â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  --red:        #f1123b;
  --red-dark:   #c70d2e;
  --red-glow:   rgba(241, 18, 59, 0.18);
  --black:      #0a0a0a;
  --dark:       #111318;
  --dark-2:     #1a1d24;
  --dark-3:     #22262f;
  --border:     rgba(255,255,255,0.08);
  --white:      #ffffff;
  --muted:      #8b8fa8;
  --text:       #e2e4ed;
  --accent:     #f1123b;
  --gold:       #e9d64f;

  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.25);
  --shadow:     0 8px 32px rgba(0,0,0,0.40);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.55);
  --glow-red:   0 0 30px rgba(241,18,59,0.30);

  --font-display: 'Syne', sans-serif;
  --font-body:    'Nunito', sans-serif;

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* â”€â”€â”€ Google Fonts Import â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=Nunito:wght@400;500;600;700&display=swap');

/* â”€â”€â”€ Reset & Base â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*, *::before, *::after { box-sizing: border-box; }

html, body {
  overflow-x: hidden;
  font-family: var(--font-body);
  min-width: 320px;
  font-weight: 500;
  font-size: 17px;
  color: var(--text);
  background: var(--black);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

/* â”€â”€â”€ Typography â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: #000000;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(26px, 4vw, 40px); }
h2 { font-size: clamp(22px, 3.5vw, 34px); }
h3 { font-size: clamp(20px, 3vw, 28px); }
h4 { font-size: clamp(18px, 2.5vw, 24px); }
h5 { font-size: 20px; }
h6 { font-size: 18px; }

p {
  line-height: 1.75;
  color: #000000;
  margin-bottom: 1rem;
}

ul, ol { color: #000000; }

b, strong {
  font-size: 16px;
  color: #000000;
  font-weight: 700;
}

a {
  color: #000000;
  text-decoration: none;
  transition: color var(--transition);
}

a:hover, a:focus {
  text-decoration: none;
  color: #000000;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}

/* â”€â”€â”€ Layout Utilities â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.clear { clear: both; }
.no-gutter { padding-left: 0; padding-right: 0; }
.red { color: var(--red); margin-left: 5px; }

.container, .container-fluid {
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 1200px) {
  .container { max-width: 1300px; }
}

iframe, embed { max-width: 100%; }

/* â”€â”€â”€ Header â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.rsrc-header { z-index: 2; }

.rsrc-container-header {
  padding: 12px 0;
  background: var(--red);
  background-image: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  box-shadow: 0 4px 24px rgba(241,18,59,0.35);
  position: relative;
}

.rsrc-container-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.rsrc-container-header .navbar {
  padding: 0;
}

.rsrc-container-header .navbar-nav li {
  margin: 0 10px;
}

.rsrc-container-header .navbar-nav li a {
  font-size: 15px;
  color: rgba(255,255,255,0.90);
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 6px 4px;
  position: relative;
  transition: color var(--transition);
}

.rsrc-container-header .navbar-nav li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: width var(--transition);
}

.rsrc-container-header .navbar-nav li a:hover {
  color: var(--white);
}

.rsrc-container-header .navbar-nav li a:hover::after {
  width: 100%;
}

.rsrc-container-header .navbar-toggler {
  border: none;
  box-shadow: none;
  padding: 0;
}

.rsrc-container-header .navbar-toggler svg {
  fill: var(--white);
}

.rsrc-container-header input[type="search"] {
  height: 36px;
  margin: 0;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.20);
  color: var(--white);
  border-radius: var(--radius-sm);
}

.rsrc-container-header input[type="search"]::placeholder {
  color: rgba(255,255,255,0.55);
}

/* Toggler icon */
.navbar-toggler-icon {
  height: 25px;
  width: 50px;
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 900;
  border-radius: var(--radius-sm);
  color: var(--white) !important;
  border-color: transparent !important;
  background: rgba(255,255,255,0.15) !important;
}

/* Site header */
.home #site-header a { color: var(--white); }

#site-header a {
  color: var(--white);
  font-size: 22px;
  font-weight: bold;
  line-height: 1.1;
}

#site-header h1 { margin: 0; }

.custom-logo-link { margin-right: 2%; }
.custom-logo-link img { width: 180px; }

h1.site-title, h2.site-title { font-size: 36px; margin: 0; }
h1.site-title a, h2.site-title a { color: var(--white); }

/* â”€â”€â”€ Fixed Header â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.fixed-me {
  position: fixed;
  width: 100%;
  z-index: 999;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
}

/* â”€â”€â”€ Main Navigation Menu â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.rsrc-main-menu {
  z-index: 2;
  padding-top: 8px;
}

.rsrc-main-menu .navbar {
  min-height: 35px;
  border-radius: 0;
  margin-bottom: 0;
  border: none;
}

.rsrc-main-menu .navbar-nav > li > a {
  font-family: var(--font-body);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 13px;
}

.navbar-inverse .navbar-nav > li > a { color: var(--white); text-transform: uppercase; }
.navbar-inverse .navbar-brand { color: var(--white); }

/* Dropdown menus */
.rsrc-main-menu .navbar-nav > li > .dropdown-menu {
  width: 220px;
  padding: 8px;
  border: 1px solid var(--border);
  background: var(--dark-2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 8px;
}

.rsrc-main-menu .navbar-nav > li > .dropdown-menu li {
  padding: 0;
  border-bottom: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.rsrc-main-menu .navbar-nav > li > .dropdown-menu li:last-child {
  border-bottom: none;
}

.rsrc-main-menu .navbar-nav > li > .dropdown-menu li a {
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text);
  display: block;
  transition: all var(--transition);
  border-radius: var(--radius-sm);
}

.rsrc-main-menu .navbar-nav > li > .dropdown-menu li a:hover {
  background-color: var(--red-glow);
  color: var(--red);
  padding-left: 20px;
}

.rsrc-main-menu .navbar-nav > li > .dropdown-menu li:first-of-type::before {
  bottom: 100%;
  left: 20px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: transparent;
  border-bottom-color: var(--dark-2);
  border-width: 8px;
  margin-left: 0;
}

.rsrc-main-menu .navbar-nav > li > .dropdown-menu li.dropdown-submenu .dropdown-menu li:first-of-type::before {
  content: none;
}

.nav > li > a:hover, .nav > li > a:focus {
  background-color: transparent;
  color: rgba(255,255,255,0.8);
}

/* Dropdown submenu */
@media (min-width: 768px) {
  .dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: 4px;
    border-radius: 0 var(--radius) var(--radius) var(--radius);
  }

  .dropdown-submenu { position: relative; }

  .dropdown-submenu > a::after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: var(--muted);
    margin-top: 5px;
    margin-right: -10px;
  }

  ul.nav li:hover > ul.dropdown-menu { display: block; }
  .navbar-right { margin-right: 0; }
}

.dropdown-submenu ul li li a::after { display: none; }

/* â”€â”€â”€ Breadcrumbs â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#breadcrumbs {
  padding: 14px 0;
  text-transform: capitalize;
  font-weight: 500;
  background: var(--dark-2);
  border-bottom: 1px solid var(--border);
}

#breadcrumbs .breadcrumbs-inner {
  color: var(--muted);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

#breadcrumbs .breadcrumbs-inner a {
  color: var(--muted);
  transition: color var(--transition);
}

#breadcrumbs .breadcrumbs-inner a:hover { color: var(--red); }

#breadcrumbs .fa { margin-right: 5px; }

/* â”€â”€â”€ Main Content â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.rsrc-container {
  color: var(--text);
  padding-right: 0;
  padding-left: 0;
}

.rsrc-content, .rsrc-content-home { position: relative; }

.rsrc-main {
  padding: 0;
  position: relative;
}

.rsrc-main .rsrc-post-content { padding: 0; }

section { position: relative; }

.section {
  position: relative;
  z-index: 1;
  padding: 50px 0;
}

.section h4 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  font-weight: 800;
  margin: 0;
}

.section .sub-title {
  font-size: 18px;
  line-height: 30px;
  position: relative;
  color: var(--muted);
}

.sub-title::before {
  content: "";
  display: block;
  height: 1px;
  background: var(--border);
  position: absolute;
  top: 50%;
  width: 100%;
  left: 0;
  z-index: -1;
}

.sub-title span {
  padding: 0 15px;
  background: var(--black);
}

.container-heading {
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* â”€â”€â”€ WordPress Core Alignment â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.gallery-caption { font-weight: bold; }
.alignnone { margin: 5px 20px 20px 0; }
.aligncenter, div.aligncenter { display: block; margin: 5px auto; }
.alignright { float: right; margin: 5px 0 20px 20px; }
.alignleft { float: left; margin: 5px 20px 20px 0; }

a img.alignright { float: right; margin: 5px 0 20px 20px; }
a img.alignnone { margin: 5px 20px 20px 0; }
a img.alignleft { float: left; margin: 5px 20px 20px 0; }
a img.aligncenter { display: block; margin: auto; }

img.alignnone { max-width: 96%; height: auto; width: auto; }

.size-auto, .size-full, .size-large,
.size-medium, .size-thumbnail {
  max-width: 100%;
  height: auto;
}

/* â”€â”€â”€ Content Images â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.wp-caption {
  border: 1px solid var(--border);
  max-width: 96%;
  padding: 6px 4px 12px;
  text-align: center;
  background: var(--dark-2);
  border-radius: var(--radius);
}

.wp-caption img {
  border: 0;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
  border-radius: var(--radius-sm);
}

.wp-caption p.wp-caption-text {
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
  padding: 8px 4px 4px;
  color: var(--muted);
}

.wp-caption.alignnone { margin: 5px 20px 20px 0; }
.wp-caption.alignleft { margin: 5px 20px 20px 0; }
.wp-caption.alignright { margin: 5px 0 20px 20px; }

@media (min-width: 768px) {
  .entry-content img,
  img.alignnone,
  .wp-caption img {
    max-width: 560px;
    width: 100%;
    height: auto;
    display: block;
    margin: 28px auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
  }

  .entry-content img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
  }
}

/* â”€â”€â”€ Post / Article â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.post {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

article.article-content {
  margin-top: 10px;
  margin-bottom: 10px;
}

.post-meta {
  font-size: 12px;
  font-weight: 700;
  display: block;
  padding-bottom: 14px;
  opacity: 0.65;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.post-meta span, .posted-on { margin-right: 6px; }

.post-meta .cat-meta::after { content: ','; margin-right: 3px; }
.post-meta .cat-meta:last-child::after { content: ''; }

/* Page headers */
.home-header .page-header a, .page-header {
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 800;
  color: var(--white);
  margin: 15px 0 5px 0;
  border-bottom: 0;
  font-size: 18px;
  letter-spacing: 0.04em;
}

.home-header { position: relative; }

.home .home-header .page-header a, .page-header {
  display: none;
}

/* Date meta */
.single-meta-date {
  text-align: center;
  float: left;
  margin-right: 15px;
}

.single-meta-date .day {
  padding: 10px 15px;
  background: var(--dark-3);
  font-weight: bold;
  font-size: 120%;
  color: var(--white);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.single-meta-date .month {
  padding: 4px;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

/* â”€â”€â”€ Featured Thumbnail â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.featured-thumbnail {
  padding: 0;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border-radius: var(--radius);
}

.featured-thumbnail img {
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-thumbnail::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 100%);
  transform: skewX(-25deg);
}

.featured-thumbnail:hover::before {
  animation: shine 0.75s;
}

.featured-thumbnail:hover img {
  transform: scale(1.08);
}

@keyframes shine {
  100% { left: 125%; }
}

/* â”€â”€â”€ Hover Style (Home Cards) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hover-style {
  display: inline-block;
  padding: 0;
  min-height: 170px;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  border-radius: var(--radius);
}

.hover-style .home-header {
  position: absolute;
  inset: 0;
  color: var(--white);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 100%);
  border-left: 3px solid var(--red);
}

.hover-style:hover .home-header {
  transform: translateY(0);
}

.hover-style .home-header .page-header a {
  letter-spacing: 2px;
  font-size: 50%;
  line-height: 50%;
  color: var(--white);
}

.hover-style .page-header {
  margin-left: -3px;
  padding: 20px;
  margin-right: 0;
  background: rgba(0,0,0,0.5);
  border-left: 3px solid var(--red);
  transform: translateY(calc(-100% - 20px));
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-style:hover .page-header {
  transform: translateY(0);
}

/* â”€â”€â”€ Box Component â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.box {
  background: var(--dark-2);
  border: 1px solid var(--border);
  padding: 1px;
  border-radius: var(--radius);
  margin-bottom: 12px;
  color: var(--muted);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.box:hover {
  border-color: rgba(241,18,59,0.30);
  box-shadow: var(--glow-red);
}

.box .boxContent { padding: 16px 18px; }

.box .boxContent h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.box .boxContent .desc { color: var(--text); }

.box .boxContent .readMore {
  background: var(--white);
  border-radius: var(--radius-sm);
  color: var(--black);
  padding: 4px 14px;
  font-weight: 700;
  font-size: 13px;
  display: inline-block;
  transition: all var(--transition);
}

.box .boxContent .readMore:hover {
  background: var(--red);
  color: var(--white);
}

/* â”€â”€â”€ Escort List â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.escortList {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  padding: 1px;
  border-radius: var(--radius);
  margin-bottom: 12px;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(241,18,59,0.20);
  transition: transform var(--transition), box-shadow var(--transition);
}

.escortList:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(241,18,59,0.35);
}

.escortList .escortInfo { padding: 12px 14px; }

.escortList .escortInfo h4 {
  font-size: 17px;
  margin-bottom: 4px;
}

.escortList .escortInfo h4 a {
  color: var(--white);
  transition: opacity var(--transition);
}

.escortList .escortInfo h4 a:hover { opacity: 0.85; }

.escortList .featuredImage { position: relative; }

.escortList .escortThumb img {
  width: 60px;
  margin-top: 6px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
}

.escortList .escortInfo .seeDetail {
  font-size: 13px;
  font-weight: 700;
}

/* â”€â”€â”€ Escort Sidebar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.escortSidebar .widget_media_image { margin-bottom: 12px; }

.escortSidebar .widget_media_image img {
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* â”€â”€â”€ Single Escort â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.single-escort .profile-thumbnail img {
  height: 250px;
  width: 100%;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  object-fit: cover;
}

.single-escort .profile-thumbnail .zoomImg {
  position: absolute;
  bottom: 20px;
  font-size: 20px;
  padding: 4px 18px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  color: var(--white);
}

/* â”€â”€â”€ Verify / Value Badges â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.verifyEscort {
  text-align: center;
  position: absolute;
  left: 0;
  background: #16a34a;
  color: var(--white);
  font-size: 10px;
  top: 0;
  padding: 3px 8px;
  letter-spacing: 1px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(22,163,74,0.4);
}

.escortValue {
  position: absolute;
  z-index: 111;
  top: 25px;
  left: 0;
  background: #f97316;
  color: var(--white);
  padding: 0 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: 0 2px 8px rgba(249,115,22,0.4);
}

/* â”€â”€â”€ Widgets â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.widget {
  margin-bottom: 18px;
  padding: 5px;
  word-wrap: break-word;
  border-radius: var(--radius);
}

.widget h3 {
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: -5px -5px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: 8px 10px;
  background: transparent;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.widget ul { padding-left: 0; }
.widget ul li { list-style: none; }

.widget ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  font-weight: 600;
  padding: 7px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
  border-radius: var(--radius-sm);
}

.widget ul li a:hover {
  color: var(--white);
  padding-left: 8px;
}

.widget ul li a img {
  margin-right: 10px;
  filter: invert(1);
}

#custom_html-5, #custom_html-4,
#custom_html-6, #custom_html-7 {
  padding: 14px 16px;
  word-wrap: break-word;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  box-shadow: var(--glow-red);
}

.widget_nav_menu li { width: 100%; }
.widget_nav_menu li::before { margin-right: 5px; }

/* â”€â”€â”€ Sidebar Link â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sideLink { padding: 0 20px; }

/* â”€â”€â”€ Forms & Inputs â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
textarea,
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
select,
input[type="week"] {
  background: var(--dark-2);
  border: 1.5px solid var(--border);
  box-shadow: none;
  color: var(--text);
  border-radius: var(--radius-sm);
  font-size: 14px;
  height: 44px;
  padding-left: 16px;
  width: 100%;
  margin-bottom: 10px;
  transition: border-color var(--transition), box-shadow var(--transition);
  font-family: var(--font-body);
}

textarea {
  height: 80px;
  padding: 12px 16px;
  resize: vertical;
}

textarea:focus,
input:focus,
select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow);
}

input, select, textarea { color: var(--text); max-width: 100%; }

/* â”€â”€â”€ Buttons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn-default,
input[type="submit"],
button,
a.comment-reply-link {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  transition: all var(--transition);
  background: none;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  letter-spacing: 0.03em;
}

.btn-default:hover, .btn-default:focus, .btn-default:active,
.btn-default.active, input[type="submit"]:hover,
button:hover, a.comment-reply-link:hover {
  color: var(--black);
  border-color: var(--gold);
  background-color: var(--gold);
  box-shadow: 0 4px 16px rgba(233,214,79,0.30);
}

.btn-link {
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  background: var(--dark-3);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  display: inline-block;
}

.btn-link:hover {
  color: var(--gold);
  background: var(--dark-2);
  text-decoration: none;
}

.btn-white {
  border: 1.5px solid var(--white);
  color: var(--white);
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  background: transparent;
  font-weight: 600;
}

.btn-white:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.btn-blue {
  border: 1.5px solid rgba(255,255,255,0.15);
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--text);
  cursor: pointer;
  background: var(--dark-2);
  transition: all var(--transition);
  font-weight: 600;
}

.btn-blue:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

ul.actions {
  padding: 0;
  text-align: center;
  list-style: none;
  margin: 40px 0 0;
}

ul.actions li a.button {
  border: 1.5px solid var(--border);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: all var(--transition);
}

ul.actions li a.button:hover {
  border-color: var(--red);
  color: var(--red);
}

/* â”€â”€â”€ Comments â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
form#commentform p input { width: 100%; margin: 0; }
form#commentform p { margin-bottom: 12px; }

.commentlist { padding: 0; }
.commentlist li { list-style: none; }

.comment-author, .comment-edit-link { font-weight: bold; }

.comment-body {
  margin: 12px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  position: relative;
  background: var(--dark-2);
}

.comment-inner {
  margin-top: 15px;
  background: rgba(255,255,255,0.04);
  padding: 1px;
  position: relative;
  border-radius: var(--radius-sm);
}

.comment-inner::before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px;
  border-color: transparent transparent rgba(255,255,255,0.04) transparent;
  content: '';
  position: absolute;
  top: -10px;
}

.commentmetadata { font-size: 12px; color: var(--muted); }

a.comment-reply-link {
  float: right;
  position: absolute;
  bottom: -1px;
  right: -1px;
  font-size: 12px;
}

.comment-author.vcard img {
  float: left;
  margin-right: 14px;
  margin-bottom: 5px;
  width: 44px;
  border-radius: 50%;
}

.comment-form-comment #comment { width: 100%; }

.comment-respond code { white-space: pre-wrap; }

form#commentform p input#wp-comment-cookies-consent { width: auto; }

.well {
  background: rgba(255,255,255,0.04);
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-top: 15px;
  border: 1px solid var(--border);
}

/* â”€â”€â”€ Pagination â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.navigation.pagination {
  width: 100%;
  text-align: center;
  border-radius: 0;
  padding: 30px;
  margin: 0;
}

.nav-links { display: inline-flex; gap: 4px; }

.nav-links a, .nav-links span {
  position: relative;
  float: left;
  padding: 8px 14px;
  line-height: 1.5;
  text-decoration: none;
  background: var(--dark-2);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.nav-links span.current {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.footer-pagination {
  position: relative;
  width: 100%;
}

/* Post navigation */
.post-navigation {
  clear: both;
  margin: 20px 0 0;
  overflow: hidden;
}

.post-navigation div {
  display: block;
  position: relative;
  font-size: 14px;
  color: var(--muted);
}

.post-previous {
  float: left;
  padding-left: 36px;
  text-align: left;
}

.post-next {
  float: right;
  text-align: right;
  padding-right: 36px;
}

.post-navigation div span {
  display: block;
  font-size: 90%;
  color: var(--muted);
}

.post-navigation div a::after {
  position: absolute;
  font-size: 45px;
  line-height: 40px;
  font-weight: bold;
  top: 0;
  color: var(--red);
}

.post-previous a::after { content: '\00ab'; left: 0; }
.post-next a::after { content: '\00bb'; right: 0; }

.nav-previous { float: left; }
.nav-next { float: right; }

.pager li > a, .pager li > span,
.pager li > a:hover, .pager li > a:focus {
  display: inline-block !important;
  padding: 2px 5px !important;
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
}

/* â”€â”€â”€ Tags â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.post-tags { clear: both; }

.tagcloud a {
  font-size: 14px !important;
  padding: 5px 12px;
  border: 1px solid var(--border);
  line-height: 36px;
  border-radius: var(--radius-sm);
  color: var(--text);
  display: inline-block;
  transition: all var(--transition);
  background: var(--dark-2);
}

.tagcloud a:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-glow);
}

/* â”€â”€â”€ Search Form â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
form#searchform { position: relative; }
input#s { width: 100%; padding: 5px; }

#searchform #searchsubmit {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  bottom: 0;
  line-height: 15px;
}

/* â”€â”€â”€ Related Posts â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.related-posts ul { padding: 15px; }

.related-posts li {
  list-style-type: none;
  position: relative;
  padding: 0;
}

.related-posts .entry-summary { color: var(--text); padding: 10px; }

/* â”€â”€â”€ Author â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.postauthor-content img { float: left; margin-right: 10px; }

.postauthor-container {
  display: block;
  overflow: hidden;
  margin-bottom: 30px;
  padding: 20px;
  background: var(--dark-2);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.postauthor-title {
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
  margin-bottom: 12px;
}

/* â”€â”€â”€ Banner â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.banner-section {
  background: var(--black);
  margin: 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.banner-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(241,18,59,0.15) 0%, transparent 65%);
  pointer-events: none;
}

.banner-bg { padding: 0; }

.banner-inner { padding: 50px 35px; }

a.custom-button {
  padding: 12px 28px;
  border: 1.5px solid rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 18px;
  display: inline-block;
  transition: all var(--transition);
  color: var(--text);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(4px);
}

a.custom-button:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-glow);
}

/* â”€â”€â”€ Page Header Banner â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.page-header-banner {
  min-height: 260px;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  position: relative;
  overflow: hidden;
}

.page-header-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(241,18,59,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.page-header-banner h1 {
  text-align: center;
  color: var(--white);
  position: relative;
  z-index: 1;
}

/* â”€â”€â”€ Hotel Escorts â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hotelEscorts {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  margin-bottom: 16px;
}

.hotelEscorts .aboutHotel {
  margin: 10px 0 0;
  height: 180px;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.hotelEscorts img {
  height: 300px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

/* â”€â”€â”€ All Page â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.allPage a {
  font-size: 13px;
  background: var(--dark-3);
  color: var(--text);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin: 5px 4px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.allPage a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* â”€â”€â”€ Content Page â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contantPage .featuredImage {
  position: relative;
  padding-top: 15px;
}

.contantPage .featuredImage::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

/* â”€â”€â”€ Video Container â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.video-container {
  border-radius: var(--radius);
  overflow: hidden;
  transform: translateZ(0);
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
}

.video-container:hover { box-shadow: var(--shadow-lg); }

.video-container p {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  margin: 0;
}

.video-container iframe {
  max-width: 100%;
  width: 100%;
  margin: 0;
  line-height: 1;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--black);
}

/* â”€â”€â”€ Lists â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
ul.list {
  margin: 0;
  list-style: none;
  padding: 10px 0 0 16px;
}

ul.list li, ol.list li { margin: 18px 0 0; }

ul.list li.type-2::before {
  content: "â–";
  margin: 0 14px 0 0;
  color: var(--red);
}

/* â”€â”€â”€ Misc Text â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.trng-1 {
  font-style: italic;
  font-size: 16px;
  margin: 0 0 20px;
  color: var(--muted);
  border-left: 3px solid var(--red);
  padding-left: 14px;
}

p.para { line-height: 1.75; text-align: justify; }

.bg-grey { margin: 20px 0; }

/* â”€â”€â”€ Footer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.rsrc-footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 12px 0;
}

.rsrc-footer-menu { padding-top: 15px; }

.footer-menu-nav { padding: 0; margin: 0; }

.footer-menu-nav li {
  display: inline-block;
  padding: 9px 0;
  margin-right: 14px;
}

.footer-menu-nav li a {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.08em;
  transition: color var(--transition);
}

.footer-menu-nav li a:hover { color: var(--white); }

.rsrc-author-credits {
  padding: 6px 0 10px;
  color: var(--muted);
}

.rsrc-author-credits .copyright {
  margin: 0;
  color: rgba(255,255,255,0.40);
  font-size: 14px;
}

/* Footer widgets */
.footer-widgets {
  padding: 40px 0 20px;
  color: var(--white);
  background: var(--dark);
  position: relative;
  border-top: 1px solid var(--border);
}

.footer-widgets #content-footer-section { padding-top: 10px; }

.footer-widgets #content-footer-section .widget h3 {
  border-bottom: none;
  color: rgba(255,255,255,0.55);
}

.footer-widgets #content-footer-section .textwidget p { color: var(--muted); }

#content-footer-section .widget-inner { padding: 12px 10px; margin: 0; }
#content-footer-section .widget { padding: 0; border: 0; }

/* Footer links */
ul.footer-links { padding: 0; }

ul.footer-links li {
  padding-bottom: 8px;
  list-style: none;
}

ul.footer-links li a {
  display: block;
  color: var(--muted);
  margin-bottom: 0;
  font-size: 14px;
  transition: color var(--transition);
}

ul.footer-links li a:hover { color: var(--white); }

/* Footer address */
.footer-address p { color: rgba(255,255,255,0.70); }

/* Social links */
ul.footer-social { padding-left: 0; margin: 20px 0 0; }

ul.footer-social li {
  padding-bottom: 8px;
  list-style: none;
  display: inline-block;
  padding: 0 24px 0 0;
}

ul.footer-social li a {
  display: block;
  margin-bottom: 0;
  font-size: 20px;
  transition: transform var(--transition), opacity var(--transition);
}

ul.footer-social li a:hover { transform: translateY(-2px); opacity: 0.8; }

ul.footer-social li a .icofont-twitter { color: #1da1f2; }
ul.footer-social li a .icofont-facebook { color: #1877f2; }
ul.footer-social li a .icofont-pinterest { color: #e60023; }
ul.footer-social li a .icofont-linkedin { color: #0a66c2; }

/* Payment icons */
.payment-gateway .gateway-icon svg {
  vertical-align: middle;
  height: 25px;
  fill: var(--white);
}

/* â”€â”€â”€ Top Info Bar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.top-infobox {
  margin: 5px 15px;
  min-height: 15px;
  line-height: 15px;
  color: var(--white);
}

.top-infobox i {
  color: rgba(255,255,255,0.65);
  margin-right: 6px;
  font-size: 120%;
}

/* User nav */
.user-nav {
  margin: 0;
  list-style: none;
  float: right;
}

.user-nav li {
  display: inline-block;
  padding-top: 4px;
  margin-right: 12px;
}

.user-nav li a {
  color: rgba(255,255,255,0.80);
  font-size: 12px;
  transition: color var(--transition);
}

.user-nav li a:hover { color: var(--white); }

a.login-link {
  line-height: 33px;
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}

a.login-link:hover { color: var(--white); }

/* â”€â”€â”€ Back to Top â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#back-top {
  position: fixed;
  bottom: 20px;
  right: 14px;
  z-index: 999;
}

#back-top a {
  width: 42px;
  display: block;
  text-align: center;
  transition: all 0.3s;
  opacity: 0.75;
}

#back-top a:hover { opacity: 1; transform: translateY(-3px); }

#back-top span {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--dark-3);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: background var(--transition);
}

#back-top a:hover span { background: var(--red); }

#back-top span svg {
  height: 20px;
  width: 20px;
  fill: var(--white);
}

/* â”€â”€â”€ Screen Reader â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
  background: var(--dark-2);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  clip: auto !important;
  color: var(--white);
  display: block;
  font-size: 14px;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* â”€â”€â”€ Misc â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sticky {}
.bypostauthor {}

n2-ss-desktop .n2-ss-widget-display-desktop.n2-ib {
  display: none !important;
}

/* â”€â”€â”€ Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 992px) {
  .rsrc-container-header .navbar-toggler { display: inline-grid; }

  .rsrc-container-header .navbar-nav {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    margin-top: 15px;
    border-radius: var(--radius);
    padding: 8px;
  }

  .rsrc-container-header .navbar-nav li { margin: 6px 10px; }
}

@media only screen and (max-width: 767px) {
  .dropdown-menu {
    position: static;
    padding: 10px 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }

  .dropdown-menu > li > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: rgba(255,255,255,0.90);
    padding: 4px 30px;
  }

  .dropdown-submenu > .dropdown-menu { padding-left: 10px; }

  .rsrc-header-img img {
    max-height: 50px;
    line-height: 50px;
  }

  .header-line-search { margin-bottom: 10px !important; }

  .header-right.col-sm-9 {
    padding-right: 0;
    padding-left: 0;
  }

  .top-section, .header-login { text-align: center; }

  a.login-link {
    text-align: center;
    border-right: none !important;
  }

  .text-left-not-xs, .text-center-not-xs,
  .text-right-not-xs, .text-justify-not-xs { text-align: inherit; }

  .contentInfo { padding: 0; margin-top: 20px; }

  .single-escort .profile-thumbnail img { height: auto; }

  .escortList .escortImage img { width: 100%; }
}

@media only screen and (max-width: 991px) {
  article.article-content:nth-of-type(2n+1) { clear: left; }
}

@media only screen and (min-width: 992px) {
  article.article-content:nth-of-type(3n+1) { clear: left; }
}

