/* ==================================================
   Styling for Envo Magazine Theme
   - Homepage, All Archive Pages (Category, Author, Tag), Search Result Pages, Featured Image Styling
   - Logo Styling (Header, Footer, and Within Content)
================================================== */

/* --- Featured Image and Logo Borders on Homepage, All Archive Pages, Search Results, and Content --- */
.home img,
.home .news-thumb img,
.archive img,                  /* Targets all archive pages (category, author, tag) */
.archive .news-thumb img,     /* Specific to news-thumb class in archives */
.search img,                  /* Targets all images on search result pages */
.search .news-thumb img,      /* Specific to news-thumb class in search results */
.post-thumbnail img,          /* Common WordPress class for featured images */
.entry-thumbnail img,         /* Fallback for other possible thumbnail classes */
.site-logo img,               /* Logo in header or footer */
.custom-logo-link img,        /* Custom logo link */
.entry-content img.logo,      /* Logo images within post/page content */
.entry-content img[class*="logo"] { /* Logos with class containing "logo" in content */
    border-radius: 500px !important; /* Circular border radius for images */
    border-bottom: 7px solid #f404c0 !important; /* Pink bottom border */
    border-right: 7px solid #0e92f5 !important; /* Blue right border */
    border-top: 7px solid #0e92f5 !important; /* Blue top border */
    border-left: 7px solid #f404c0 !important; /* Pink left border */
}

/* --- End Styling for Envo Magazine Theme --- */

/* ===========================
   STYLE FOR ITALIC WORDS
   =========================== */
/* Styling for Italic Words */
.single-entry-summary em, 
.single-entry-summary i {
    font-style: italic; /* Ensure the font is italic */
    color: #6b5b95; /* Soft muted purple for elegance */
    border-radius: 6px; /* Rounded edges for smooth styling */
    font-weight: 500; /* Slightly bold for better readability */
    text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    transition: all 0.3s ease; /* Smooth transitions on hover or interaction */
}

h2.entry-titles { 
    visibility: visible; 
    font-size: 2rem; 
}

.single-entry-summary h2:first-of-type + ul,
.single-entry-summary h2:first-of-type + ol {
    border-radius: 20px !important;
    box-shadow: 0 5px 3px rgba(244, 4, 192, 0.3);
    border-right: 3px solid #0e92f5 !important;
    border-top: 3px solid #0e92f5 !important;
    border: 3px solid #ff007f;
    transition: transform 0.3sease-in-out, box-shadow 0.3sease-in-out;
    animation: neonBorder 1.5s infinite alternate;
}

/* Flashing Neon Borders */
@keyframes neonBorder {
    0% { border-color: #ff007f; }
    50% { border-color: #00ffcc; }
    100% { border-color: #ff007f; }
}

/* Glitch Animation */
@keyframes cyberGlitch {
    0% { text-shadow: -1px -1px 4px #ff007f, 1px 1px 4px #00ffff; }
    50% { text-shadow: 1px -1px 4px #ff007f, -1px 1px 4px #00ffff; }
    100% { text-shadow: -1px -1px 4px #ff007f, 1px 1px 4px #00ffff; }
}

.single-entry-summary h2:first-of-type + ul:hover,
.single-entry-summary h2:first-of-type + ol:hover {
    animation: floating 3s infinite ease-in-out;
    transform: scale(1.02) rotate(-0.5deg);
}

/* ===========================
   HIDDEN SCHEMA STYLES
   =========================== */
/* Styling for Hidden Schema */
.hidden-schema {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    white-space: nowrap;
}

.shortdescription.nomobile.noexcerpt.noprint.searchaux {
    position: absolute;
    left: -9999px;
    visibility: visible;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

[itemprop="description"] {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}


/* ===========================
    VERIFIED ICON STYLES
   =========================== */
/* Styling for Icons */
.tick-icon {
    vertical-align: middle;
    fill: #1e96e8;
    width: 18px;
    height: 18px;
}

.verifiedadmin-icon {
    vertical-align: middle;
    fill: red;
    width: 19px;
    height: 19px;
}

/* ===========================
   MOBILE RESPONSIVE STYLES
   =========================== */
/* Default styles (desktop) */
.site-branding-container {
    position: relative;
}

.mobile-leaderboard-banner {
    display: none; /* Hide mobile ad (#hbagency_space_192664) on desktop */
}

/* Mobile styles */
@media only screen and (max-width: 768px) {
    .site-branding-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 5px; /* Add slight spacing between logo and banner */
			margin-bottom: -30px; /* Pulls up extra spacing */
			margin-top: -20px; /* Pulls up extra spacing */
    }

    .site-branding-logo {
        flex: 0 0 auto;
    }

    .site-branding-logo img {
      max-width: 120px; /* Reduced logo size */
	   float: left!important;
	   padding: 3%;
			height: 60px;
    }

    .mobile-leaderboard-banner {
        display: flex; /* Show ad only on mobile */
        flex: 1 1 auto;
        align-items: center;
        margin-left: 10px;
    }

    .hb-ad-static.hb-ad-a320x100 {
        width: 100%;
        max-width: 320px;
        border-radius: 20px !important;
        box-shadow: 0 5px 3px rgba(244, 4, 192, 0.3) !important;
        overflow: hidden; /* Clips content to rounded shape */
        display: inline-block; /* Respects content width */
        height: 60px !important; /* Sets container height to 60px */
        position: relative; /* For shadow rendering */
    }

    .hb-ad-inner {
        border-radius: 20px !important; /* Reinforce rounding */
        overflow: hidden; /* Additional clipping */
    }

    .hbagency_cls_static {
        border-radius: 20px !important; /* Apply to ad content */
        max-width: 100% !important; /* Prevents horizontal overflow */
        height: 60px !important; /* Forces ad content to fit 60px */
        margin: 0 !important; /* Removes rogue spacing */
        padding: 0 !important; /* Removes rogue spacing */
        box-sizing: border-box; /* Keeps size in check */
    }

    #hbagency_space_192664 {
        width: 100%;
        height: 60%;
    }

    #hbagency_space_192664 img {
        width: 100%;
        height: 60px;
        object-fit: cover;
        display: block;
    }

    /* Hide desktop ad (#hbagency_space_10442) on mobile */
    #hbagency_space_10442 {
        display: none !important;
    }
}

/* Hide original sidebar placement on mobile */
@media only screen and (max-width: 768px) {
    .site-heading-sidebar {
        display: none;
			 margin-bottom: 0; /* Prevent extra space on mobile */
    }
}

/* ===========================
   AD STYLES
   =========================== */
/* Styling for Ads */
.hb-ad-sky {
    text-align: center;
}
}

.hb-ad-static {
  text-align: center;
}

.center-ad {
    text-align: center;
}


/* Styling for Ad Elements */
div#hbagency_space_4267  {
     text-align: center; /* Ensures the ad is horizontally centered within its container */
}

div#hbagency_space_4271 {
     text-align: center; /* Ensures the ad is horizontally centered within its container */
}

/* ===========================
   PAGINATION NAVIGATION STYLES
   =========================== */
/* Styling for Pagination Navigation */
.pagination-navigation {
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    font-size: 16px;
}

/* Styling for Next Button */
.pagination-navigation .next-button {
    padding: 10px;
    color: #00aff2;
    text-decoration: none;
    border-radius: 20px;
    margin: auto;
    float: right;
	  border-left: 4px solid;
    box-shadow: 0 5px 3px rgba(0, 0, 0, 0.17);
	font-weight: 800!important;
	    position: relative;
    bottom: 16px; /* Moves the element 20px up */
}

/* Styling for Previous Button */
.pagination-navigation .prev-button {
    padding: 10px;
    color: #f404c0;
    text-decoration: none;
	  margin: auto;
    border-radius: 20px;
    border-right: 4px solid;
    box-shadow: 0 5px 3px rgba(0, 0, 0, 0.17);
	font-weight: 800!important;
	 position: relative;
}

/* Styling for Button Hover Effects */
.pagination-navigation .prev-button:hover  {
    background-color: #00aff2;
    color: #fff;
}

.pagination-navigation .next-button:hover {
    background-color: #f404c0;
    color: #fff;
}

/* Styling for Mobile Pagination Layout */
@media screen and (max-width: 768px) {
    .pagination-navigation {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* Styling for Mobile Buttons */
    .pagination-navigation .prev-button,
    .pagination-navigation .next-button {
        margin: 10px 0;
    }
}

/* Styling for Desktop Pagination Layout */
@media screen and (min-width: 769px) {
    .pagination-navigation {
        flex-direction: row;
        justify-content: space-between;
    }

    /* Styling for Desktop Buttons */
    .pagination-navigation .prev-button {
        margin-right: auto;
    }

    .pagination-navigation .next-button {
        margin-left: auto;
    }
}

/* ===========================
   VIEW ALL LINK STYLES
   =========================== */
/* Styling for View All Link */
.view-all-link {
    color: #fff !important;
    background-color: #f404c0; !important;
    font-weight: 800 !important;
    font-size: 14px;
    line-height: 20px;
    float: left;
    margin-bottom: 8px;
    font-style: italic;
    padding: 14px 14px;
    z-index: 3;
    position: relative;
}

.widget-title {
    background: #00aff2;
    border-radius: 10px 150px;
}


.view-all-link:hover,
.view-all-link:focus {
    text-decoration: none;
    transform: scale(1.05); /* Subtle zoom effect */
}

/* ===========================
   BIRTHDAY SIDEBAR & GALLERY STYLES
   =========================== */
/* Styling for Sidebar Container */
.sidebar-container {
    width: 250px;
    padding: 10px;
    box-sizing: border-box;
	  margin: auto;
}

/* Styling for Gallery Wrapper */
.gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 5px;
}

/* Styling for Gallery Images */
.gallery-wrapper img {
    width: 100%; /* Full width of the grid cell */
    height: 160px; /* Fixed height */
    object-fit: cover; /* Ensures the image fills the space while maintaining aspect ratio */
}

@media only screen and (max-width: 768px) {
.sidebar-container {
    width: 390px!important;
}
}

.sidebar-container {
    width: 368px;
}

/* ===========================
   COLLAPSIBLE INSTAGRAM & TWITTER EMBEDS
   =========================== */
/* Styling for Collapsible Instagram & Twitter Embeds */
iframe.instagram-media,
.twitter-tweet {
    max-height: 200px !important; /* Adjust this value to your preference */
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

iframe.instagram-media:hover,
.twitter-tweet:hover {
    max-height: 100% !important; /* Expand to fit full content */
    transition: max-height 0.5s ease-in;
}

/* ===========================
   HIDDEN ELEMENTS STYLES
   =========================== */
/* Styling for Hidden Elements */
i.post-has-oembed.fa.fa-picture-o {
display: none;
}

.some-class {
    display: none;
}

input {
  font-size: 16px; /* Avoids triggering zoom in mobile browsers */
}

@media only screen and (max-width: 768px) {
	.some-class { width: 100%; display: block;
position: absolute; bottom: -3px; right: -95px;
  }
}

/* ===========================
   SITE NAVIGATION STYLES
   =========================== */
/* Styling for Site Navigation */
#site-navigation .container {
    border-radius: 20px;
}

/* ===========================
   POST CONTENT & BIO STYLES
   =========================== */
/* Styling for Post Content */
.post-content {
	content: ' ';
    background-color: #c0ffe3;
    border: 0 !important;
    padding: 0;
    margin: 0;
    width: 100%;
    display: block;
    text-align: center;
    border-left: 4px solid;
    box-shadow: 0 5px 3px rgba(0, 0, 0, 0.17);
    margin-top: 23px;
    opacity: 1;
    transition: opacity 0.25s;
	 border-radius: 10px;
}

/* Styling for Bio Online */
.bio-online {
    display: flex;
    flex-direction: column; /* Ensures content stacks vertically */
    justify-content: center;
    align-items: center;
    text-align: center; /* Ensures text is centered */
    margin: 25px 0;
    padding: 15px;
    background: #f2f2f2; /* Warm coffee color */
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.bio-online hr {
    width: 100%; /* Ensures the separator spans the full width */
    border: none;
    border-top: 1px solid #ddd;
    margin: 10px 0;
}

.commenttext {
    background-color: #f0f0f0; /* Light background from your second image */
    color: #00aaff; /* Blue text from your second image */
    padding: 5px 10px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.commenttext::after {
    content: " ▼";
    margin-left: 0px;
}

.bio-coffee-button {
    font-size: 18px;
    font-weight: bold;
    text-align: center; /* Center text inside the button */
    display: inline-block; /* Ensures proper alignment */
    width: 100%; /* Make sure it's centered within */
    text-decoration: none;
    color: #5e3d1a; /* Coffee brown */
    padding: 12px 20px;
    border-radius: 6px;
    transition: background 0.3s ease, color 0.3s ease;
}

.bio-coffee-button:hover {
    background: #5e3d1a;
    color: #ffdd57;
}

a {
   outline: 0!important;
}

/* ===========================
   IMAGE & CAPTION STYLES
   =========================== */
/* Styling for Images and Captions */
.wp-block-image img {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.wp-block-image figcaption {
    text-align: center;
}

figcaption {
    text-align: center;
	  border-radius: 10px !important;
    box-shadow: 0 5px 3px rgba(14, 146, 245, 0.3);
}

/* ===========================
   SPLIT IMAGE BORDER STYLES
   =========================== */
/* Styling for Split Image Borders */
.inner-wrapper.split-images {
    border-radius: 20px !important;
    box-shadow: 0 5px 3px rgba(14, 146, 245, 0.3);
}

/* ===========================
   IMAGE CAPTION STYLES
   =========================== */
/* Styling for Image Captions */
.wp-block-image figcaption {
    text-align: center;
	box-shadow: 0 5px 3px rgba(14, 146, 245, 0.3);
	border-radius: 10px !important;
}

/* ===========================
   CENTERED EMBEDS STYLES
   =========================== */
/* Styling for Centered Embeds */
div.twitter-tweet.twitter-tweet-rendered {
margin-bottom: 20px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

iframe#instagram-embed-0.instagram-media.instagram-media-rendered {
margin-bottom: 20px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* ===========================
   HEADING STYLES
   =========================== */
/* Styling for Headings */
.single-entry-summary h3 {
    content: ' ';
    display: block;
    box-shadow: 0 5px 3px rgba(14, 146, 245, 0.2);
    border-radius: 10px;
}

/* ===========================
   VERIFY BADGE
   =========================== */
.verify-badge {
  width: 15px;
  height: 15px;
  box-shadow: none !important;
  border: none !important;
}

/* ===========================
   H2 HEADING STYLES
   =========================== */

/* Styling for Page Headings */
h2.wp-block-heading {font-family: "Alegreya", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, "Times New Roman", serif!important;
 content: ' ';
    display: block;
    box-shadow: 0 5px 3px rgba(14, 146, 245, 0.2);
    border-radius: 10px;
 text-align: center !important;
}

/* ===========================
   H1 HEADING STYLES
   =========================== */

/* Styling for Titles */
h1, .h1 {
    box-shadow: 0 5px 3px rgba(14, 146, 245, 0.3);
    border-radius: 10px !important;
}


/* ===========================
   FIRST LETTER IN cONTENT STYLES
   =========================== */

/* Styling for First Letter */
.single-entry-summary p:first-of-type:first-letter {
    color: #000000;
    font-size: 60px !important;
    font-weight: bold !important;
    float: left !important;
    margin: 0 0 10px;
    padding: 8px 2px 8px 5px;
    border-top: 3px solid #f404c0;
    border-left: 3px solid #0e92f5;
}

/* ===========================
   FIRST PARAGRAPH IN CONTENT STYLES
   =========================== */

/* Styling for First Paragraph */
.single-entry-summary p:first-of-type {
    font-weight: 700;
    text-align: center;
    display: block;
	padding: 20px 0 0;
    margin-bottom: 4px;
    font-family: "Alegreya", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, "Times New Roman", serif!important;
    font-style: italic;
	line-height: 1.42857;
	    width: auto;
    max-width: 74.225%;
    float: none;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
	margin-top: 32px;
    margin-bottom: 32px;
    clear: both;
}

/* ===========================
   IMG ASYNC STYLES
   =========================== */
img.async {
    width: 15px;
    height: 15px;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
}

/* ===========================
   HIDE TAGS AND CATEGORY DESCRIPTIONS STYLES
   =========================== */

/* Styling for Hidden Tags and Category Description */
.taxonomy-description {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ===========================
   UL OL INSIDE CONTENT STYLES
   =========================== */

.single-entry-summary ul, ol {
    font-size: 1.3em;
    font-family: "Alegreya", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, "Times New Roman", serif!important;
}

/* ===========================
   FONT STYLES
   =========================== */
/* Styling for Fonts */
/* Ensure Font Awesome 6 CDN fonts are used */
@font-face {
    font-family: 'FontAwesome' !important;
    font-display: swap;
    src: local(''), url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/webfonts/fa-solid-900.woff2') format('woff2') !important;
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'FontAwesome' !important;
    font-display: swap;
    src: local(''), url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/webfonts/fa-regular-400.woff2') format('woff2') !important;
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'FontAwesome' !important;
    font-display: swap;
    src: local(''), url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/webfonts/fa-brands-400.woff2') format('woff2') !important;
    font-weight: 400;
    font-style: normal;
}

/* Map Font Awesome 6 classes to the FontAwesome family */
.fa, .fas, .far, .fab {
    font-family: 'FontAwesome' !important;
}
/* ===========================
   LINK STYLES
   =========================== */
/* Styling for Links */
.single-entry-summary a {
    color: #00aff2 !important;
    font-weight: 600 !important;
    border-radius: 10px !important; /* Subtle rounded edges */
    padding: 2px 2px; /* Minimal spacing */
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 3px 2px rgba(0, 175, 242, 0.2);
    transition: all 0.2s ease-in-out;
}

/* ===========================
   LINKS HOVER STYLES
   =========================== */

/* Styling for Link Hover & Focus Effects */
.single-entry-summary a:hover,
.single-entry-summary a:focus {
    color: #008ac4 !important;
    background: rgba(0, 175, 242, 0.1);
    box-shadow: 0 4px 3px rgba(0, 175, 242, 0.3);
    transform: translateY(-1px);
    outline: none;
}

/* ===========================
   SUBMIT BUTTON STYLES
   =========================== */

.btn-default, input[type="submit"], input#submit, button, a.comment-reply-link {
    border: 2px solid #f404c0 !important;
}

/* ===========================
   WHATSAPP US STYLES
   =========================== */

.u522aa33b12e473372398ffcbc74e58e5 {
    color: red !important;
}

/* ===========================
   CONTENT PARAGRAPHS STYLES
   =========================== */

.single-entry-summary p {
    margin: 0 0 3px;
    margin-bottom: 27px;
	 margin-top: 27px;
    text-align: center;
    font-size: 1.8em!important;
    font-family: "Alegreya", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, "Times New Roman", serif!important;
}

/* ===========================
   H2, H3 STYLES
   =========================== */

.single-entry-summary h2, h3 {
    font-family: "Alegreya", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, "Times New Roman", serif!important;
}

/* ===========================
   IMG STYLES
   =========================== */

img {
    max-width: 100%;
}

.news-thumb img {
    max-width: 100%;
}

@media only screen and (max-width: 500px) {
    .size-auto, .size-full, .size-large, .size-medium, .size-thumbnail {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Image Captions */

.wp-block-image figcaption {
    text-align: center;
}

figcaption.blocks-gallery-caption {
    text-align: center !important;
}

/* ===========================
   H2 AFTER STYLES
   =========================== */

.single-entry-summary h2:after {
    content: ' ';
    display: block;
    border: 2px solid #f404c0;
    box-shadow: 0 5px 3px rgba(14, 146, 245, 0.2);
    border-radius: 10px;
}


/* ===========================
   H2 STYLES
   =========================== */

.single-entry-summary h2 {
    text-align: center !important;
}

/* =====================================================
   CONTENT NOTICE STYLES (Italic Version)
   Styled for clarity, elegance, and emphasis
   ===================================================== */

.content-notice {
    background-color: #f2f2f2;
    padding: 0.75rem 1rem;
    font-size: 1.3em;
    font-family: "Alegreya", "Palatino Linotype", "Book Antiqua",
                 Palatino, Georgia, "Times New Roman", serif;
    font-style: italic;
    border-radius: 6px;
    box-shadow: 0 5px 3px rgba(14, 146, 245, 0.3);
    text-align: center;
    margin: 1.5em 0;
}

.content-notice h5 {
    font-size: 1.1em;
    color: #d51d1a;
    margin-bottom: 0.5em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-style: italic;
}

.content-notice ul {
    list-style-position: inside;
    margin: 0.5em 0;
    padding: 0;
}

.content-notice li {
    margin-bottom: 0.4em;
    line-height: 1.5;
    font-style: italic;
}

.content-notice li::marker {
    color: #f404c0;
}



/* ===========================
   BREADCRUMBS STYLES
   =========================== */

p#breadcrumbs a {
    color: #ffffff !important;
    font-family: georgia;
    font-size: 6px !important;
    text-align: center;
    border-radius: 10px;
    border-style: solid;
    border-width: 5px;
    border-color: #e8106d;
    text-shadow: 0px 0px 0px #fff;
    box-shadow: 0px 0px 0px #b5b5b5;
    background: linear-gradient(rgba(219, 78, 177, 1) 45%, #0e92f5);
    transition: all 0.3s;
}

/* ===========================
   INFOBOX STYLES
   =========================== */
/* Styling for Infobox */
table.infobox {
    width: 300px;
    border-radius: 20px;
    float: right;
    background-color: #F8F8F8;
    box-shadow: 0 5px 0px rgba(255, 0, 0, 0.17);
}

/* Infobox Link Styling */
table.infobox a {
    color: #00aff2 !important;
    font-weight: 600 !important;
    border-radius: 10px !important; /* Subtle rounded edges */
    padding: 2px 2px; /* Minimal spacing */
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 3px 2px rgba(0, 175, 242, 0.2);
    transition: all 0.2s ease-in-out;
}

/* Infobox Link Hover & Focus Styling */
table.infobox a:hover,
table.infobox a:focus {
    color: #008ac4 !important;
    background: rgba(0, 175, 242, 0.1);
    box-shadow: 0 4px 3px rgba(0, 175, 242, 0.3);
    transform: translateY(-1px);
    outline: none;
}

/* Infobox Table Header Styling */
table.infobox th {
    text-align: center;
    background-color: #f404c0;
    color: white;
    font-weight: 700;
    border-radius: 10px;
    text-transform: uppercase;
    box-shadow: 0 5px 3px rgba(14, 146, 245, 0.3);
}

/* Infobox Table Row Styling */
table.infobox tr {
    border-bottom: 0.1px solid #E8E8E8;
    border-radius: 15px;
}

/* Infobox Table Cell Image Styling */
table.infobox td img {
    width: 280px;
    height: 280px;
}

/* Infobox Table Cell First Column Styling */
table.infobox tr td:first-child {
    font-weight: 700;
}

/* Mobile Infobox Styling */
@media only screen and (max-width: 500px) {
    table.infobox {
        width: auto !important;
        float: none !important;
    }
    table.infobox td img {
        width: 100% !important;
        border-radius: 10px;
    }
}


/* Styling for Sticky Sidebar */
@media (min-width: 1024px) {
    /* Position infobox at the top of the sidebar */
    aside#sidebar.col-md-4 .infobox-moved {
         position: sticky;
        z-index: 10; /* Ensure visibility */
        float: none;
        margin: 0 auto; /* Center within the sidebar */
        padding: 10px 0; /* Add spacing above and below */
			width: 368px; /* Fit within the sidebar width */
    }

    /* Ensure infobox styling adapts to the sidebar */
    .infobox-moved table.infobox {
        width: 100%; /* Fit within the sidebar width */
        margin: 0;
        float: none;
    }
	    aside#sidebar.col-md-4 .infobox-moved td img {
        width: 100%; /* Fully responsive image within the sidebar */
	}
}

/* Hide Horizontal Separator with Alpha Channel Opacity */
hr.wp-block-separator.has-alpha-channel-opacity {
 display: none;
}

/* ===========================
   COMMENT FORM STYLES
   =========================== */

/* Input & Textarea Styling */
input, textarea {
    color: black !important;
    font-size: 15px !important;
    border-radius: 10px !important;
    background-color: white !important;
    border-color: #00aff2;
}

/* Comment Form Input & Submit Button Styling */
.comment-form #comment,
.comment-form #submit {
    border: 5px solid #f404c0 !important;
    border-radius: 20px !important;
    background-color: white !important;
}


/* The City Celeb Box Shadow Styling */
.thecityceleb {
    box-shadow: 0 5px 3px rgba(244, 4, 192, 0.3);
}

/* ===========================
   IMAGES STYLES
   =========================== */

/* News Thumbnail Image Styling */
.news-thumb img {
    border: 3px solid #f404c0;
    border-radius: 20px;
    box-shadow: 0 5px 3px rgba(14, 146, 245, 0.3);
}

/* WordPress Block Image Styling */
.wp-block-image img {
    border: 3px solid #f404c0;
    border-radius: 20px !important;
    box-shadow: 0 5px 3px rgba(14, 146, 245, 0.3);
}

/* Cropped Gallery Image Styling */
.blocks-gallery-grid.is-cropped .blocks-gallery-image a,
.blocks-gallery-grid.is-cropped .blocks-gallery-image img,
.blocks-gallery-grid.is-cropped .blocks-gallery-item a,
.blocks-gallery-grid.is-cropped .blocks-gallery-item img,
.wp-block-gallery.is-cropped .blocks-gallery-image a,
.wp-block-gallery.is-cropped .blocks-gallery-image img,
.wp-block-gallery.is-cropped .blocks-gallery-item a,
.wp-block-gallery.is-cropped .blocks-gallery-item img {
    border: 1px solid #f404c0;
    border-radius: 20px !important;
}

/* Tag Image Styling */
.tagimg img {
    border: 1px solid #f404c0;
    border-radius: 20px !important;
}

/* Infobox Image Styling */
table.infobox td img {
    border: 2px solid #f404c0;
    border-radius: 20px !important;
}

/* Widget Grid Image Styling */
.widgets-grid-layout .widget-grid-view-image img {
    border: 2px solid #f404c0;
    border-radius: 20px !important;
}

/* General Image Styling */
img {
    border-radius: 20px !important;
    box-shadow: 0 5px 3px rgba(244, 4, 192, 0.3);
    border-bottom: 2px solid #f404c0 !important;
    border-right: 2px solid #0e92f5 !important;
    border-top: 2px solid #0e92f5 !important;
    border-left: 2px solid #f404c0 !important;
}


/* ===========================
   SEARCH STYLE
   =========================== */
/* Styling for Search */
#searchsubmit {
    border: 10px !important;
}

/* ===========================
   H1 SHADOW STYLES
   =========================== */

h1, .h1 {
    box-shadow: 0 5px 3px rgba(14, 146, 245, 0.3);
    border-radius: 3px;
}

/* ===========================
   SOCIAL ICON STYLES
   =========================== */
/* Font Awesome Icon Base Styling */
.fa, .fab, .fal, .far, .fas {
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

/* Font Awesome Brands Font Styling */
.fab {
    font-family: "Font Awesome 5 Brands";
}

/* Right Float Styling */
.pull-right {
    float: right !important;
}

/* Font Awesome Icon Specific Styling */
.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    transform: translate(0, 0);
}

/* Footer Social Link Styling */
.footer-bottom .thecityceleb-content a {
    color: #ffffff;
    background: #f404c0;
    width: 35px;
    height: 35px;
    font-size: 20px;
    text-align: center !important;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center !important;
}

/* Footer Content Box Styling */
.footer-bottom .thecityceleb-content {
    border-top: 3px solid #f404c0;
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center !important;
}

/* Footer Bottom Styling */
.footer-bottom {
    padding: 15px 0;
    color: #969696;
}

/* ===========================
   DROP CAP STYLES
   =========================== */
/* Drop Cap First Letter Styling */
.has-drop-cap:not(:focus):first-letter {
    color: #000000;
    font-size: 60px !important;
    font-weight: bold !important;
    float: left !important;
    margin: 2px 10px 2px 0;
    padding: 8px 2px 8px 5px;
    border-top: 3px solid #f404c0;
    border-left: 3px solid #0e92f5;
}

/* Accent Color Styling */
.color-accent,
.color-accent-hover:hover,
color-accent-hover:focus,
:root .has-accent-color,
.has-drop-cap:not(:focus):first-letter,
.wp-block-button.is-style-outline,
a {
    color: #f404c0;
}

/* Site Navigation Styling */
#site-navigation, #site-navigation.shrink {
    background-color: #fff;
    box-shadow: 0 10px 20px -12px rgba(0,0,0,.42), 0 3px 20px 0 rgba(0,0,0,.12), 0 8px 10px -5px rgba(0,0,0,.2);
    border: none;
}

/* Section Title Styling */
.section-title a {
    color: #fff!important;
    background-color: #0e92f5!important;
    font-weight: 800!important;
}

/* Section Title After Styling */
.section-title:after, .section-title a:after, .widget-title:after {
    background-color: #f404c0!important;
}

/* Hide Last Breadcrumb Span */
span.breadcrumb_last {
    position: absolute;
    left: -99999px;
}

/* Site Navigation White Background Styling */
#site-navigation, #site-navigation.shrink {
    background-color: white!important;
}

/* Dropdown Menu Styling */
.dropdown-menu {
    background-color: #f404c0!important;
    z-index: 99999!important;
}

/* Link Styling for Specific Areas */
.single-entry-summary a, .comment-body a, .textwidget a, .post-excerpt a {
    text-decoration: none!important;
}

/* Hover Link Color Styling */
.single-entry-summary a:hover {
    color: #D51D1A!important;
}

/* Heading 1 Styling for Single Entries */
h1.single-title {
    color: #ffffff!important;
}

/* Heading 1 Styling for Pages */
h1.page-title {
    color: white!important;
}

/* Heading 1 Styling for Search Results */
h1.search-head.text-center {
    color: white!important;
}

/* Open Panel Button Styling */
.open-panel span {
    background-color: black!important;
    border-radius: 10px!important;
}

/* Open Panel Button Hover Styling */
button.open-panel, button.open-panel:hover {
    border: none!important;
    color: blue;
}

/* Widget and Post Excerpt Font Weight Styling */
.widget, .post-excerpt {
    font-weight: 350!important;
}

/* Table Header and Cell Font Weight Styling */
td, th {
    font-weight: 400;
}


/* ===========================
   QUOTABLES STYLES
   =========================== */
/* Styling for Quotables Wrapper */
.quotables-wrapper {
    display: flex;
    height: auto;
    padding: 0 20px;
}

/* Main Quotables Container Styling */
.quotables {
    position: relative;
    font-family: 'Barlow Condensed', sans-serif;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

/* Quotables Paragraph Styling */
.quotables p {
    font-family: 'Abril Fatface', cursive;
    position: relative; /* for pseudos */
    color: #0e92f5;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1;
    margin: 0;
    border: 2px solid #f404c0;
    border-radius: 20px;
    padding: 25px;
    border-color: #f404c0;
    font-style: italic;
}

/* Media Query for Larger Screens (600px and above) */
@media all and (min-width: 600px) {
    .quotables p {
        font-size: 30px;
        line-height: 1.4;
    }
}

/* ===========================
   RESPONSIVE LAYOUT STYLES
   =========================== */
/* Styling for Responsive Layout */
html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

.container, .wrapper, .content {
    max-width: 100%;
}

header {
    max-width: 100%;
    overflow: hidden;
}

/* ===========================
   HOMEPAGE & OTHER PAGES STYLES
   =========================== */
/* Styling for Other Pages */
.latest-post {
    
    border-bottom: 1px solid #d9d9d9;
    margin-top: 9px;
    margin-bottom: 7px;
    padding: 11px 0;
    font-size: 18px;
    text-align: center;
    font-weight: 700;
    border-radius: 20px !important;
    box-shadow: 0 5px 3px rgba(14, 146, 245, 0.3);
	  max-width: 750px; /* Limits width */
    margin-right: auto; /* Centers the element */
	  background: #f404c0 !important;
    color: white !important;
}

.latest-post:hover {
    background: none !important;
    color: #f404c0 !important;
	  border: 3px solid #0E92F5 !important;
}

/* ===========================
   RELATED POSTS STYLES
   =========================== */
/* Styling for Related Posts */
.CityRel-container {
    background-color: #f2f2f2; /* Background for the container */
    padding: 10px;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); /* Optional shadow */
}

/* Styling for List Items in CityRel */
.CityRel-related li {
    list-style: disclosure-closed; /* Custom list-style */
    padding-bottom: 0.5em;
    margin-bottom: 0.2em; /* Space between list items */
    list-style-position: inside; /* Ensure numbers align with text */
}

/* Link Styling in CityRel List */
.CityRel-related li a {
    color: #0e92f5; /* Link color */
}

/* Marker Styling for List Items */
.CityRel-related li::marker {
    color: #f404c0;
}

/* Hover Effect for Links in CityRel */
.CityRel-related li a:hover {
    text-decoration: underline; /* Optional: add underline on hover */
}

/* General Styling for CityRel-related Section */
.CityRel-related {
    background-color: #f2f2f2;
    padding: 10px !important;
    font-size: 1.2em;
    border-radius: 20px;
    font-family: "Alegreya", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, "Times New Roman", serif !important;
    box-shadow: 0 5px 3px rgba(14, 146, 245, 0.3);
    max-width: 100%;
    overflow: hidden;
}

/* Styling for h6 Headers in CityRel Container */
.CityRel-container h6 {
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #f404c0;
    border-radius: 20px !important;
    box-shadow: 0 5px 3px rgba(244, 4, 192, 0.3);
    border-left: 3px solid #0e92f5 !important;
    border-bottom: 3px solid #0e92f5 !important;
    border-right: 3px solid #f404c0 !important;
}

/* Styling for Links in CityRel-related Section */
.CityRel-related a {
    color: #0e92f5;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    max-width: 90%;
}


/* ===========================
   TABLE OF CONTENTS STYLES
   =========================== */
/* Styling for Table of Contents */
div#ez-toc-container ul li {
    font-size: 65%!important;
}

div#ez-toc-container {
    border-radius: 20px !important;
    box-shadow: 0 5px 3px rgba(244, 4, 192, 0.3);
    border: 3px solid #f404c0 !important;
    border-left: 3px solid #0e92f5 !important;
    border-bottom: 3px solid #0e92f5 !important;
    border-right: 3px solid #f404c0 !important;
}

/* ===========================
   COMMENT FORM STYLES
   =========================== */
/* Styling for Comment Form */
h3#reply-title.comment-reply-title {
        position: absolute;
    left: -9999px;
}

label[for="comment"] {
    position: absolute;
    left: -9999px;
}

/* ===========================
   AUTHOR BOX STYLES
   =========================== */
/* Layout for Authors Container */
.authors-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* Individual Author Box Styling */
.author-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 0px rgba(255, 105, 180, 0.17);
    text-align: center;
    transition: transform 0.3s ease-in-out;
    border-left: 3px solid #0e92f5 !important;
    border-right: 3px solid #f404c0 !important;
}

/* Hover Effect for Author Box */
.author-box:hover {
    transform: translateY(-5px);
}

/* Styling for Author Images */
.author-box img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

/* Enlarging Author Image on Hover */
.author-box:hover .author-image {
    transform: scale(1.2); /* Enlarges the image */
}

/* Author Name Styling */
.author-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

/* Author Role Styling */
.author-role {
    color: #f404c0;
    font-size: 14px;
    font-weight: 600 !important;  /* Normal weight */
    margin-bottom: 10px;
}

/* Author Bio Styling */
.author-bio {
    font-size: 14px;
    font-weight: 400 !important;  /* Normal weight */
    color: #555;
    margin-bottom: 10px;
}

/* Styling for Social Icons */
.social-icons a {
    display: inline-block;
    margin: 0 8px;
    text-decoration: none;
    font-size: 20px;
    color: #555;
    transition: color 0.3s ease-in-out;
}

/* Social Icons Hover Effect */
.social-icons a:hover {
    color: #0073e6;
}

/* Styling for Read More Link */
.read-more-link {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 16px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800 !important;
  text-decoration: none;
  background: linear-gradient(45deg, #00aff2, #0077b6);
  border-radius: 6px !important;
  box-shadow: 0 5px 8px rgba(14, 146, 245, 0.3);
  transition: all 0.3s ease-in-out;
}

/* Hover Effect for Read More Link */
.read-more-link:hover {
  background: linear-gradient(45deg, #0077b6, #005f99);
  transform: translateY(-2px);
  box-shadow: 0 8px 12px rgba(14, 146, 245, 0.4);
}

/* Styling for nickname */
.nickname {
    font-size: 14px;
    color: #777;
    margin-top: 5px;
}

/* ================================
   CATEGORY BUTTON STYLING
   ================================ */

/* Container for category links */
.cat-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px; /* Space between buttons */
    margin-top: 10px;
}

/* Category title label (e.g., "Category") */
.cat-links span.space-right,
.tags-links span.space-right{
    font-weight: bold;
    font-size: 14px;
    color: #fff;
    background: #ff6600; /* Orange background */
    padding: 8px 14px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cat-links span.space-right::after {
	content: "▶"; /* Triangle arrow as marker */
}

/* Default styling (won’t show on mobile due to media query) */
@media (min-width: 768px) {
    .tags-links span.space-right::after {
        content: "▶"; /* Right triangle arrow */
    }
}

/* Individual category buttons */
.cat-links a {
    display: inline-block;
    background: #0073e6; /* Blue button */
    color: white;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

/* Hover effect for category buttons */
.cat-links a:hover {
    background: #005bb5; /* Darker blue on hover */
    transform: scale(1.05); /* Slight scale effect */
}

/* ================================
   RESPONSIVE DESIGN (FOR SMALL SCREENS)
   ================================ */
@media (max-width: 768px) {
    .cat-links {
        flex-wrap: wrap; /* Ensure items wrap instead of stacking */
        justify-content: flex-start; /* Align items to the start */
    }

    .cat-links a {
        flex-grow: 1; /* Allows buttons to be flexible while staying in a row */
        max-width: calc(50% - 5px); /* Ensures two buttons per row */
        text-align: center;
    }
}

/* ================================
   FOOTER NAVIGATION STYLING
   ================================ */
/* Styles for the footer navigation container */
.footer-nav {
    background-color: #1a1a1a; /* Dark background similar to the image */
    padding: 15px 0; /* Vertical padding for spacing */
    border-top: 1px solid #333; /* Subtle top border for separation */
}

/* Footer Links Styling */
/* Styles for the navigation links in the footer */
.footer-links a {
    color: #ccc; /* Light gray color for links */
    text-decoration: none; /* Remove underline from links */
    font-size: 14px; /* Font size for readability */
    font-family: Arial, sans-serif; /* Simple font */
}

/* Footer Links Hover Effect */
/* Hover styles for footer navigation links */
.footer-links a:hover {
    color: #fff; /* White on hover for contrast */
}

/* Separator Styling */
/* Styles for the dot separator between footer links */
.footer-links .separator {
    color: #ccc; /* Same light gray for the dot separator */
    margin: 0 10px; /* Spacing around the separator */
}