@charset "UTF-8";
/*
Theme Name: Hot Dogs
Theme URI: https://example.com/product/hot-dogs-theme-for-wordpress/
Author: Custom Development
Author URI: https://example.com
Tags: blog, food, restaurant, recipes, cooking, dining, fun, one-column, two-columns, three-columns, custom-background, custom-header, custom-menu, custom-colors, featured-images, left-sidebar, sticky-post, post-formats
Description: Hot Dogs - A deliciously fun WordPress theme perfect for food blogs, restaurants, casual dining, and fun lifestyle sites. Features a clean, responsive design with customizable layouts. Great for sharing recipes, restaurant reviews, food photography, and culinary adventures. Easy to customize and ready to serve up some tasty content!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hot-dogs


/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# General
# Typography
# Elements
# Forms
# Links
# Accessibility
# Alignments
# Clearings
# Sidebar
# Content
# Posts and pages
# Asides
# Content
# Comments
# Infinite scroll
# Media
# Captions
# Galleries
# Main menu
# header
# 404 not found
# footer
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

/* Site-wide 75% width constraint */
.header-area .container,
.mainmenu .container,
.content-area .container,
.footer-area .container {
  max-width: 75%;
  margin: 0 auto;
  width: 75%;
}

/* Ensure responsive behavior on smaller screens */
@media screen and (max-width: 1200px) {
  .header-area .container,
  .mainmenu .container,
  .content-area .container,
  .footer-area .container {
    max-width: 90%;
    width: 90%;
  }
}

@media screen and (max-width: 768px) {
  .header-area .container,
  .mainmenu .container,
  .content-area .container,
  .footer-area .container {
    max-width: 95%;
    width: 95%;
  }
}


html,
body { height: 100% }
body { 
	font-family: "Roboto", sans-serif;
	background-color:#000000;
	font-size: 14px;
	line-height:26px;
	color: #ffffff;
}
a {
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: #FF8C00;
}
a:hover { text-decoration: none }

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

a:active,
a:hover {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}



mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-size: 14px;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"] {
	-webkit-appearance: textfield;
	box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
    padding: .8em;
    text-align: left;
    border: 1px solid #ddd;
}





/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 5px;
    font-weight: 700;
	color:#ffffff;
}
button,
input,
select,
textarea {
	color: #404040;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}


p {
	margin-bottom: 26px;
}

dfn,
cite,
em,
i {
    font-style: italic;
    overflow: hidden;
    margin-top: 10px;
}

blockquote {
	margin-bottom: 20px;
}

address {
	margin-bottom: 40px;
	color: #151515;
	font-style: italic;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-size: 14px;
	padding: 8px;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after { 
	box-sizing: inherit;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	quotes: "" "";
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto;
	max-width: 100%; 
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, .8);
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1;
	padding: .6em 1em .4em;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	border-color: #aaa #bbb #bbb;
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
	color: #111;
}

input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"] {
  border: 1px solid #ddd;
  padding: 8px;
}

textarea {
	padding-left: 3px;
	width: 100%;
}
p.form-submit input#submit {
  color: #ffffff;
  font-size: 12px;
  padding: 10px;
}
form.post-password-form input[type="submit"] {
  color: #ffffff;
  font-size: 11px;
  padding: 10px;
}


/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/
a {
	color: #FF8C00;
}

a:visited {
	color: #FF8C00;
}

a:hover,
a:focus,
a:active {
	color: #FF6600;
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}


/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; 
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}
header.page-header .page-title {
  background: #2E2E2E none repeat scroll 0 0;
  border-left: 5px solid #D27A00;
  padding: 10px;
  color: #E5E5E5;
}
.taxonomy-description p {
    font-size: 14px;
}
.entry-header .entry-title > a {
  color: #D27A00;
  font-family: "Roboto", sans-serif;
  font-size: 25px;
  font-weight: 700;
  text-decoration: none;  
}
.entry-header .entry-title > a:hover {
  color: #E8981D;
  text-decoration: none;
}

.entry-meta .posted-on {
    color: #4B4B4B;
    font-size: 13px;
    text-transform: uppercase;
}
.entry-meta .posted-on a {
    color: #FF8C00;
}
.entry-meta .byline .author.vcard a {
    color: #B0B0B0;
    font-size: 13px;
}
.entry-footer .cat-links {
    color: #ffffff;
    font-size: 15px;
}
.entry-footer span.cat-links {
  color: #ffffff;
  float: left;
  font-size: 15px;
  margin-left: 5px;
  text-transform: uppercase;
}
.entry-footer .cat-links a {
    color: #FF8C00;
    margin-right: 15px;
}
.tags-links {
  color: #ffffff;
  display: block;
  float: left;
  font-size: 15px;
  overflow: hidden;
  text-transform: uppercase;
}
.comments-link {
  display: block;
  font-size: 15px;
  overflow: hidden;
  text-align: right;
  text-transform: uppercase;
}
.tags-links a {
  color: #FF8C00;
  margin-right: 5px;
}
/* post format aside */
.post-aside {
  background: #ff0000 none repeat scroll 0 0;
  color: #fff;
  margin-bottom: 15px;
  padding: 30px;
}
/* post format link */
.entry-link {
    background: #ff0000 none repeat scroll 0 0;
    margin-bottom: 15px;
    text-align: center;
}
.entry-link a {
  color: #fff;
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 700;
  outline: medium none;
  padding: 30px;
}
.entry-link a:hover {
    color: #ddd;
}
.entry-link i {
  margin-right: 10px;
}
div.entry-content iframe {
  width: 100%;
}
.entry-contents ul {
  margin: 0 0 15px;
}
div.entry-content ol {
  margin: 0 0 15px;
}


/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.main-sidebar {
  margin-top: 23px;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
}
.main-sidebar aside {
    margin-bottom: 15px;
    width: 100%;
    display: block;
    overflow: hidden;
}
.main-sidebar h1.widget-title {
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 700;
    margin-top: 0;
    text-transform: uppercase;
}
.main-sidebar aside ul li {
    font-size: 13px;
    line-height: 25px;
    list-style: outside none none;
}
.main-sidebar aside ul {
    margin: 0;
    padding: 0;
}
.main-sidebar aside ul li a {
  color: #FF8C00;
  font-size: 15px;
}
.main-sidebar aside ul li a:hover {
    color: #FF6600;
}

.widget_categories select {
    font-weight: 500;
    background-color: #fff;
    font-size: 14px;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px 12px;
    cursor: pointer;
    letter-spacing: 0;
}


form.search-form input.search-field {
    display: block;
    float: left;
    overflow: hidden;
    width: 90%;
}
form.search-form input.search-submit {
    display: block;
    float: left;
    overflow: hidden;
    width: 30%;
}
form.search-form label {
    float: left;
    width: 70%;
}


.main-sidebar .widget_search form.search-form {
    position: relative;
}
.main-sidebar .widget_search form.search-form label{
    margin-bottom: 0;
}
.main-sidebar  .widget_search input[type=search] {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    width: 100%;
    margin: 0px;
    padding-right: 60px;
    border: 0px;
	background:#ddd;
}
.main-sidebar  .widget_search input[type=search] {
	padding: 5px 5px 5px 12px;
    width: 100%;
    font-size: 15px;
    height: 49px;
    display: block;
    overflow: hidden;
    outline: none;
    text-decoration: none;
    box-shadow: none;
	border-radius:0;
}
.main-sidebar .widget_search input[type=submit] {
    position: absolute;
    top: 0px;
    right: 0px;
    margin: 0px;
    height: 100%;
    border: 0px;
	background-color: #1a1a1a;
}
.main-sidebar .widget_search input[type=submit] {
    color: #fff;
    padding: 0px;
    font-size: 15px;
    display: block;
    overflow: hidden;
    line-height: 19px;
    text-transform: uppercase;
    font-weight: 600;
    height: 49px;
    box-shadow: none;
    border-radius: 0;
    text-decoration: none;
}
/* Widget: Calendar */
.widget_calendar thead {
  border: 1px solid #ebebeb;
}
.widget_calendar th {
  text-align: center;
  padding: 10px 0;
  border: 0;
  font-size: 11px;
  color: #666;
}
.widget_calendar caption {
  padding-bottom: 14px;
  font-size: 13px;
}
.widget_calendar tr td {
  padding: 7px 0;
  background: transparent;
  border: 1px solid #efefef;
  color: #777;
  font-size: 12px;
  text-align: center;
}
.widget_calendar td a {
  font-weight: 700;
  color: #FF8C00;
}
.widget_calendar #today {
  font-weight: 700;
}
.widget_calendar tfoot a {
  font-weight: 600;
  text-transform: uppercase;
}

/* Tag Cloud */
.tagcloud a {
  border: 1px solid #ddd;
  border-radius: 16px;
  color: #696969;
  display: block;
  float: left;
  font-size: 11px !important;
  font-weight: 400;
  letter-spacing: 0.4px;
  line-height: 20px;
  margin: 0 6px 6px 0;
  padding: 6px 22px;
  text-transform: capitalize;
}
.tagcloud a:hover {color:red;}


/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
.content-area article {
  padding-bottom: 25px;
  padding-top: 10px;
}
article .entry-meta {
    margin-bottom: 15px;
}
.entry-content > blockquote {
  background: #ddd none repeat scroll 0 0;
  border-left: 5px solid #ff0000;
}
.entry-content img.attachment-philips-blog-thumbnails {
  margin-bottom: 22px;
}

/* Contact form 7 */

.entry-content .wpcf7 p label {
    width: 100%;
}

.entry-content .wpcf7-textarea {
    height: 200px;
}

.entry-content .wpcf7 .wpcf7-submit {
    background: #ffffff;
    font-size: 15px;
    color: #000;
    outline: none;
    box-shadow: none;
    margin: 0;
    padding: 10px 20px;
    box-shadow: none;
    text-decoration: none;
    outline: none;
    border-radius: 0;
}

/* post format blockquote */
.entry-quote > blockquote {
  background: #ddd none repeat scroll 0 0;
  border-left: 5px solid #ff0000;
  margin-bottom: 15px;
}
.entry-quote blockquote blockquote {
  border-left: medium none;
}
.entry-content pre {
  font-size: 15px;
}
.comment-content {
  font-size: 15px;
}
.comment-content blockquote {
  background: #ddd none repeat scroll 0 0;
  border-left: 5px solid #ff0000;
}
.comment-content pre {
  font-size: 15px;
}
.sticky {
	display: block;
}
.hentry {
	margin: 0 0 1.5em;
}
.byline,
.updated:not(.published) {
	display: none;
}
.single .byline, .group-blog .byline {
  display: inline;
  text-transform: uppercase;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

.nav-previous {
    color: #ff0000;
    font-size: 15px;
    padding-bottom: 30px;	
    padding-top: 30px;
}
.nav-previous a {
  color: #ffffff;
  outline: medium none;
  text-decoration: none;
  text-transform: uppercase;
}
.nav-previous a:hover {
    color: #ff0000;
    text-decoration: none;
}

.nav-next {
    font-size: 15px;
    padding-bottom: 30px;
    padding-top: 30px;
}
.nav-next a:hover {
    color: #ff0000;
    text-decoration: none;
}
.nav-next a {
  color: #ffffff;
  font-size: 15px;
  outline: medium none;
  text-decoration: none;
  text-transform: uppercase;
}
.page-header {
  margin: 0;
  border: none;
}

.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

/*--------------------------------------------------------------
# Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}
.bypostauthor {
	display: block;
}
form.search-form input.search-submit {
  color: #ffffff;
  padding: 11px;
}
.comment-notes > span#email-notes {
    font-size: 15px;
}
.comment-notes {
    font-size: 15px;
}
.comment-form-author > input#author {
    width: 100%;
}
.comment-form-email > input#email {
    width: 100%;
}
.comment-form-url > input#url {
    width: 100%;
}
.comment-form-author > label {
    font-size: 14px;
}
.comment-form-email > label {
    font-size: 14px;
}
.comment-form-url > label {
    font-size: 14px;
}
.comment-form-comment > label {
    font-size: 14px;
}
div#comments ol.comment-list {
  margin: 0;
  padding: 0;
}
div#comments ol.comment-list li {
  list-style: outside none none;
}
.comment-metadata > a {
  color: #ffffff;
  display: block;
  font-size: 12px;
  margin-bottom: 10px;
  margin-top: 10px;
  overflow: hidden;
}
.reply a.comment-reply-link {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
}
.comment-author.vcard {
  font-size: 14px;
}
.comment-author.vcard b.fn a {
  color: #ffffff;
}




/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/

.infinite-scroll .posts-navigation, 
.infinite-scroll.neverending .site-footer {
	display: none;
}

.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Captions
--------------------------------------------------------------*/
.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
    position: relative;
    overflow: hidden;
}


.wp-caption:hover .wp-caption-text {
    transition: 0.5s;
    margin-bottom: -50px;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 0 auto;
}

.wp-caption-text {
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 1;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    line-height: 22px;
    padding: 13px 10px;
    text-align: center;
    color: #fff;
    background: #192535;
    transition: 0.5s;
}

.wp-caption .wp-caption-text {
	margin: 0;
}
.wp-caption.alignnone {
  display: block;
  height: auto;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}
/*--------------------------------------------------------------
# Galleries
--------------------------------------------------------------*/
.main-sidebar .widget_media_gallery figure.gallery-item {
    margin: 0;
    padding: 5px;
}
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

/*
------------------------------------
# Main menu
------------------------------------
*/
.nav.navbar-nav.navbar-right {
    margin-right: 0;
    margin-top: 23px;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.nav.navbar-nav.navbar-right {
	margin-top: 0px
}

.mainmenu ul.nav.navbar-nav li a {
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: none;
    outline: none;
}
.navbar-right .dropdown-menu {
	left: 0;
	right: auto;
}
.mainmenu .navbar-right .dropdown-menu li {
    display: block;
    list-style: outside none none;
    overflow: hidden;
}
.mainmenu .navbar-right .dropdown-menu li a {
    font-size: 14px;
    line-height: 30px;
}

ul.nav.navbar-nav li.current_page_item a,
ul.nav.navbar-nav li:hover > a {
	background-color: transparent
}
.nav > li > a:focus, .nav > li > a:hover {
    background-color: transparent;
    color: inherit;
    text-decoration: none;
}
.nav .open > a, .nav .open > a:focus, .nav .open > a:hover {
    background-color: transparent;
}
ul.nav.navbar-nav li ul.dropdown-menu li a {
	text-transform: none;
	font-weight: 400
}
ul.nav.navbar-nav li a:hover {
  color: #ff0000;
}
.mainmenu {
  background: #000000 none repeat scroll 0 0;
  margin-bottom: 50px;
  position: relative;
  width: 100%;
  z-index: 999;
  border-bottom: 1px solid #333;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: block;
	}
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}


/*
------------------------------------
# header
------------------------------------
*/

.header-area {
  background: #000000 none repeat scroll 0 0;
  padding-bottom: 40px;
  padding-top: 40px;
  text-align: center;
}
.site-title a {
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 
               0 0 20px rgba(255, 255, 255, 0.6), 
               0 0 30px rgba(255, 255, 255, 0.4), 
               0 0 40px rgba(255, 255, 255, 0.2);
  animation: pulseGlow 4s ease-in-out infinite;
}
.site-title a:hover {
	color: #ffffff;
	text-decoration: none;
	text-shadow: 0 0 15px rgba(255, 255, 255, 1), 
	             0 0 25px rgba(255, 255, 255, 0.8), 
	             0 0 35px rgba(255, 255, 255, 0.6), 
	             0 0 45px rgba(255, 255, 255, 0.4);
}
/* Keyframe animation for pulsing glow effect */
@keyframes pulseGlow {
  0% {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 
                 0 0 20px rgba(255, 255, 255, 0.6), 
                 0 0 30px rgba(255, 255, 255, 0.4), 
                 0 0 40px rgba(255, 255, 255, 0.2);
  }
  50% {
    text-shadow: 0 0 20px rgba(255, 255, 255, 1), 
                 0 0 30px rgba(255, 255, 255, 0.9), 
                 0 0 40px rgba(255, 255, 255, 0.7), 
                 0 0 50px rgba(255, 255, 255, 0.5), 
                 0 0 60px rgba(255, 255, 255, 0.3);
  }
  100% {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 
                 0 0 20px rgba(255, 255, 255, 0.6), 
                 0 0 30px rgba(255, 255, 255, 0.4), 
                 0 0 40px rgba(255, 255, 255, 0.2);
  }
}

.logo h2.site-description {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.7), 
               0 0 15px rgba(255, 255, 255, 0.5), 
               0 0 25px rgba(255, 255, 255, 0.3);
}



/*
------------------------------------
# links
------------------------------------
*/

.edit-link {
    display: block;
    font-size: 15px;
    text-align: right;
    text-transform: uppercase;
}
.edit-link a {
    color: #FCDCA7;
}
.comments-link > a {
  color: #ffffff;
  outline: medium none;
  text-decoration: none;
}



/*
------------------------------------
# 404 not found
------------------------------------
*/


.not_fount_sidebar .widget h2 {
    font-size: 15px;
    text-transform: uppercase;
}
.not_fount_sidebar ul {
    margin: 0;
    padding: 0;
}
.not_fount_sidebar ul li {
    line-height: 25px;
    list-style: outside none none;
}
.not_fount_sidebar ul li a {
    color: #FF8C00;
    font-size: 13px;
}
.not_fount_sidebar .widget {
    margin-bottom: 15px;
}
.not_fount_sidebar ul li a:hover {
    color: #FF6600;
}
.not_fount_sidebar ul li a {
    font-size: 15px;
}
.widget.widget_archive > p {
    font-size: 15px;
}
div.page-content input.search-submit {
  display: block;
  font-size: 20px;
  overflow: hidden;
  padding: 6px;
  width: 30%;
}



/*
------------------------------------
# WordPress Blocks - Latest Posts
------------------------------------
*/

/* Latest Posts Block - Match individual blog post styling */
.wp-block-latest-posts {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 26px;
}

/* Latest Posts Block - Post Title */
.wp-block-latest-posts__post-title,
.wp-block-latest-posts .wp-block-latest-posts__post-title a {
  color: #D27A00;
  font-family: "Roboto", sans-serif;
  font-size: 25px;
  font-weight: 700;
  text-decoration: none;
  text-transform: none;
  margin-bottom: 8px;
  display: block;
}

.wp-block-latest-posts__post-title a:hover,
.wp-block-latest-posts .wp-block-latest-posts__post-title a:hover {
  color: #E8981D;
  text-decoration: none;
}

/* Latest Posts Block - Post Date */
.wp-block-latest-posts__post-date,
.wp-block-latest-posts .wp-block-latest-posts__post-date {
  color: #4B4B4B;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 5px;
  display: block;
}

/* Latest Posts Block - Post Author (if displayed) */
.wp-block-latest-posts__post-author,
.wp-block-latest-posts .wp-block-latest-posts__post-author {
  color: #B0B0B0;
  font-size: 13px;
  text-transform: uppercase;
}

/* Latest Posts Block - Post Excerpt */
.wp-block-latest-posts__post-excerpt,
.wp-block-latest-posts .wp-block-latest-posts__post-excerpt {
  font-size: 14px;
  line-height: 26px;
  margin-bottom: 15px;
  color: #ffffff;
}

/* Latest Posts Block - Individual Post Items */
.wp-block-latest-posts li {
  margin-bottom: 15px;
  list-style: none;
}

/* Latest Posts Block - List styling within post content */
.wp-block-latest-posts ul,
.wp-block-latest-posts ol {
  margin: 0 0 15px 30px !important;
  padding-left: 0 !important;
}

.wp-block-latest-posts ul {
  list-style: disc !important;
  list-style-type: disc !important;
}

.wp-block-latest-posts ol {
  list-style: decimal !important;
  list-style-type: decimal !important;
}

.wp-block-latest-posts ul li,
.wp-block-latest-posts ol li {
  margin-bottom: 5px;
  line-height: 24px;
  list-style-position: outside !important;
  display: list-item !important;
}

.wp-block-latest-posts ul li {
  list-style: disc !important;
  list-style-type: disc !important;
}

.wp-block-latest-posts ol li {
  list-style: decimal !important;
  list-style-type: decimal !important;
}

.wp-block-latest-posts ul li:last-child,
.wp-block-latest-posts ol li:last-child {
  margin-bottom: 0;
}

/* Nested lists within Latest Posts */
.wp-block-latest-posts li ul,
.wp-block-latest-posts li ol {
  margin: 5px 0 5px 30px !important;
}

/* Override any existing list-style: none rules */
.wp-block-latest-posts ul li:not(.wp-block-latest-posts > li),
.wp-block-latest-posts ol li:not(.wp-block-latest-posts > li) {
  list-style: inherit !important;
  display: list-item !important;
}

/* Ensure proper spacing for paragraphs within Latest Posts excerpts */
.wp-block-latest-posts__post-excerpt p {
  margin-bottom: 15px;
  line-height: 26px;
}

.wp-block-latest-posts__post-excerpt p:last-child {
  margin-bottom: 0;
}

/* Latest Posts Block - Read More Link (if any) */
.wp-block-latest-posts a.wp-block-latest-posts__post-full-content {
  color: #FF8C00;
  font-size: 14px;
  text-decoration: none;
}

.wp-block-latest-posts a.wp-block-latest-posts__post-full-content:hover {
  color: #FF6600;
  text-decoration: underline;
}

/* Read More Link Styling */
.read-more-link {
  color: #FF8C00;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

.read-more-link:hover {
  color: #FF6600;
  text-decoration: underline;
}

/* Custom Collapsible Archive Widget Styling */
.custom-archive-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.custom-archive-list li {
  margin-bottom: 8px;
  list-style: none;
}

.custom-archive-list li a {
  color: #FF8C00;
  font-size: 15px;
  text-decoration: none;
}

.custom-archive-list li a:hover {
  color: #FF6600;
  text-decoration: none;
}

.archive-toggle-container {
  margin-top: 10px;
  border-top: 1px solid #333;
  padding-top: 10px;
}

.archive-toggle {
  color: #FF8C00 !important;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  padding: 5px 0;
}

.archive-toggle:hover {
  color: #FF6600 !important;
  text-decoration: underline;
}

.older-archives {
  margin: 10px 0 0 0;
  padding: 0;
  list-style: none;
}

.older-archives li {
  margin-bottom: 5px;
  opacity: 0.8;
}

.older-archives li a {
  font-size: 14px;
  color: #FF8C00;
}

.older-archives li a:hover {
  color: #FF6600;
}

/*
------------------------------------
# Home Page Column Borders
------------------------------------
*/

/* Home page column borders - only on home page */
.home .content-area .container .row .col-md-8,
.home .content-area .container .row .col-md-4 {
  border: 2px solid #333;
  padding: 15px;
  margin-bottom: 20px;
}

/*
------------------------------------
# Home Page Title
------------------------------------
*/

/* Hide page title on home page only */
.home .entry-title,
.home .page-title,
.home header.page-header .page-title,
.home .entry-header .entry-title {
  display: none;
}

/*
------------------------------------
# Single Post Styling
------------------------------------
*/

/* Single Post - Match Latest Posts Block styling */
.single .entry-header .entry-title {
  color: #D27A00;
  font-family: "Roboto", sans-serif;
  font-size: 25px;
  font-weight: 700;
  text-decoration: none;
  text-transform: none;
  margin-bottom: 8px;
  display: block;
}

/* Single Post - Entry Meta (Posted date and author) */
.single .entry-meta .posted-on {
  color: #4B4B4B;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 5px;
  display: block;
}

.single .entry-meta .posted-on a {
  color: #FF8C00;
}

.single .entry-meta .byline {
  color: #B0B0B0;
  font-size: 13px;
  text-transform: uppercase;
}

.single .entry-meta .byline .author.vcard a {
  color: #B0B0B0;
  font-size: 13px;
}

/* Single Post - Content styling */
.single .entry-content {
  font-size: 14px;
  line-height: 26px;
  margin-bottom: 15px;
  color: #ffffff;
}

.single .entry-content p {
  margin-bottom: 15px;
  line-height: 26px;
}

.single .entry-content p:last-child {
  margin-bottom: 0;
}

/* Single Post - List styling within content */
.single .entry-content ul,
.single .entry-content ol {
  margin: 0 0 15px 30px !important;
  padding-left: 0 !important;
}

.single .entry-content ul {
  list-style: disc !important;
  list-style-type: disc !important;
}

.single .entry-content ol {
  list-style: decimal !important;
  list-style-type: decimal !important;
}

.single .entry-content ul li,
.single .entry-content ol li {
  margin-bottom: 5px;
  line-height: 24px;
  list-style-position: outside !important;
  display: list-item !important;
}

.single .entry-content ul li {
  list-style: disc !important;
  list-style-type: disc !important;
}

.single .entry-content ol li {
  list-style: decimal !important;
  list-style-type: decimal !important;
}

.single .entry-content ul li:last-child,
.single .entry-content ol li:last-child {
  margin-bottom: 0;
}

/* Single Post - Entry Footer (categories, tags) */
.single .entry-footer .cat-links {
  color: #ffffff;
  font-size: 15px;
}

.single .entry-footer span.cat-links {
  color: #ffffff;
  display: block;
  font-size: 15px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.single .entry-footer .cat-links a {
  color: #FF8C00;
  margin-right: 15px;
}

.single .entry-footer .tags-links {
  color: #ffffff;
  display: block;
  font-size: 15px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.single .entry-footer .tags-links a {
  color: #FF8C00;
  margin-right: 5px;
}

.single .entry-footer .edit-link {
  display: block;
  font-size: 15px;
  text-align: right;
  text-transform: uppercase;
  margin-top: 20px;
}

.single .entry-footer .edit-link a {
  color: #FCDCA7;
}

/*
------------------------------------
# Archive Page Styling
------------------------------------
*/

/* Archive Pages - Match Latest Posts Block styling */
.archive .entry-header .entry-title a,
.blog .entry-header .entry-title a,
.search .entry-header .entry-title a {
  color: #D27A00;
  font-family: "Roboto", sans-serif;
  font-size: 25px;
  font-weight: 700;
  text-decoration: none;
  text-transform: none;
  margin-bottom: 8px;
  display: block;
}

.archive .entry-header .entry-title a:hover,
.blog .entry-header .entry-title a:hover,
.search .entry-header .entry-title a:hover {
  color: #E8981D;
  text-decoration: none;
}

/* Archive Pages - Entry Meta (Posted date and author) */
.archive .entry-meta .posted-on,
.blog .entry-meta .posted-on,
.search .entry-meta .posted-on {
  color: #4B4B4B;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 5px;
  display: block;
}

.archive .entry-meta .posted-on a,
.blog .entry-meta .posted-on a,
.search .entry-meta .posted-on a {
  color: #FF8C00;
}

.archive .entry-meta .byline,
.blog .entry-meta .byline,
.search .entry-meta .byline {
  color: #B0B0B0;
  font-size: 13px;
  text-transform: uppercase;
}

.archive .entry-meta .byline .author.vcard a,
.blog .entry-meta .byline .author.vcard a,
.search .entry-meta .byline .author.vcard a {
  color: #B0B0B0;
  font-size: 13px;
}

/* Archive Pages - Content styling */
.archive .entry-content,
.blog .entry-content,
.search .entry-content {
  font-size: 14px;
  line-height: 26px;
  margin-bottom: 15px;
  color: #ffffff;
}

.archive .entry-content p,
.blog .entry-content p,
.search .entry-content p {
  margin-bottom: 15px;
  line-height: 26px;
}

.archive .entry-content p:last-child,
.blog .entry-content p:last-child,
.search .entry-content p:last-child {
  margin-bottom: 0;
}

/* Archive Pages - Entry Footer (categories, tags) */
.archive .entry-footer .cat-links,
.blog .entry-footer .cat-links,
.search .entry-footer .cat-links {
  color: #ffffff;
  font-size: 15px;
}

.archive .entry-footer span.cat-links,
.blog .entry-footer span.cat-links,
.search .entry-footer span.cat-links {
  color: #ffffff;
  display: block;
  font-size: 15px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.archive .entry-footer .cat-links a,
.blog .entry-footer .cat-links a,
.search .entry-footer .cat-links a {
  color: #FF8C00;
  margin-right: 15px;
}

.archive .entry-footer .tags-links,
.blog .entry-footer .tags-links,
.search .entry-footer .tags-links {
  color: #ffffff;
  display: block;
  font-size: 15px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.archive .entry-footer .tags-links a,
.blog .entry-footer .tags-links a,
.search .entry-footer .tags-links a {
  color: #FF8C00;
  margin-right: 5px;
}

/* Archive Pages - Read More Links */
.archive .read-more-link,
.blog .read-more-link,
.search .read-more-link {
  color: #FF8C00;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

.archive .read-more-link:hover,
.blog .read-more-link:hover,
.search .read-more-link:hover {
  color: #FF6600;
  text-decoration: underline;
}

/* Ensure proper spacing between columns with borders */
.home .content-area .container .row .col-md-8 {
  margin-right: 15px;
}

/* Adjust responsive behavior for bordered columns */
@media screen and (max-width: 991px) {
  .home .content-area .container .row .col-md-8,
  .home .content-area .container .row .col-md-4 {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/*
------------------------------------
# footer
------------------------------------
*/

.footer-area {
  background: #000000 none repeat scroll 0 0;
  padding-bottom: 20px;
  padding-top: 20px;
}
.copyright {
    font-size: 14px;
}
.copyright > a {
    color: #ffffff;
    font-size: 14px;
    margin-right: 15px;
}



  padding: 20px 0;
}

  max-width: 100px;
  max-height: 75px;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: opacity 0.5s ease-in-out;
}

/* Responsive adjustments for footer image */
@media screen and (max-width: 768px) {
    max-width: 75px;
    max-height: 50px;
  }
}

@media screen and (max-width: 480px) {
    max-width: 60px;
    max-height: 40px;
  }
}



/* Footer Hot Dog Image Crossfade Styling */
.footer-image-container {
  padding: 20px 0;
}

.image-crossfade-container {
  position: relative;
  display: inline-block;
  max-width: 100px;
  max-height: 75px;
}

.crossfade-image {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100px;
  max-height: 75px;
  width: auto;
  height: auto;
  display: block;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.crossfade-image.active {
  opacity: 1;
}

.crossfade-image:first-child {
  position: relative;
}

/* Responsive adjustments for footer image */
@media screen and (max-width: 768px) {
  .image-crossfade-container {
    max-width: 75px;
    max-height: 50px;
  }
  
  .crossfade-image {
    max-width: 75px;
    max-height: 50px;
  }
}

@media screen and (max-width: 480px) {
  .image-crossfade-container {
    max-width: 60px;
    max-height: 40px;
  }
  
  .crossfade-image {
    max-width: 60px;
    max-height: 40px;
  }
}


}

/* =Collapsible Blog Archives
----------------------------------------------- */

/* Blog Archives Widget Collapsible Styles */
.blog-archives .archives-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 0.5rem;
    outline: none;
    padding: 5px;
    border-radius: 3px;
    transition: background-color 0.2s ease;
}

.blog-archives .archives-header:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.blog-archives .archives-header:focus {
    background-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 0 2px rgba(0, 136, 204, 0.25);
    border-radius: 3px;
}

.blog-archives .toggle-icon {
    font-size: 1.2em;
    transition: transform 0.3s ease;
    user-select: none;
    margin-left: 10px;
    font-weight: bold;
}

.blog-archives .archives-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.blog-archives .archives-list.expanded {
    max-height: 1200px; /* Increased to accommodate more archive entries */
    transition: max-height 0.3s ease-in;
    overflow-y: auto; /* Add scrollbar if content exceeds max-height */
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: #FF8C00 #333; /* Firefox - thumb and track colors */
}

/* Webkit scrollbar styling for Chrome/Safari */
.blog-archives .archives-list.expanded::-webkit-scrollbar {
    width: 8px;
}

.blog-archives .archives-list.expanded::-webkit-scrollbar-track {
    background: #333;
    border-radius: 4px;
}

.blog-archives .archives-list.expanded::-webkit-scrollbar-thumb {
    background: #FF8C00;
    border-radius: 4px;
}

.blog-archives .archives-list.expanded::-webkit-scrollbar-thumb:hover {
    background: #FF6600;
}

/* Animation for the toggle icon */
.blog-archives .expanded .toggle-icon {
    transform: rotate(180deg);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .blog-archives .archives-list.expanded {
        max-height: 800px; /* Increased for mobile */
    }
}

/* BlueSky Widget Styles */
.widget_hot_dogs_bluesky_widget h1.widget-title {
    color: #D27A00; /* Deep Orange-Yellow from brand palette */
}

/*
------------------------------------
# WordPress Latest Posts Block Custom Formatting
------------------------------------
*/

/* Hide the default author and date elements */
.wp-block-latest-posts .wp-block-latest-posts__post-author,
.wp-block-latest-posts .wp-block-latest-posts__post-date {
    display: none !important;
}

/* Style the post title to match theme */
.wp-block-latest-posts .wp-block-latest-posts__post-title a {
    color: #D27A00 !important; /* Deep Orange-Yellow from brand palette */
    font-family: "Roboto", sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: block !important;
    margin-bottom: 5px !important;
}

.wp-block-latest-posts .wp-block-latest-posts__post-title a:hover {
    color: #E8981D !important; /* Soft Orange-Yellow for hover */
    text-decoration: none !important;
}

/* Container for our custom author/date format */
.wp-block-latest-posts li {
    position: relative !important;
    margin-bottom: 15px !important;
}

/* Custom author and date styling - matches .entry-meta .posted-on */
.wp-block-latest-posts .custom-post-meta {
    color: #4B4B4B !important; /* Match .entry-meta .posted-on color */
    font-size: 13px !important;
    text-transform: uppercase !important;
    margin-bottom: 8px !important;
    display: block !important;
    font-family: "Roboto", sans-serif !important;
}

/* Author link styling - matches .entry-meta .byline .author.vcard a */
.wp-block-latest-posts .custom-post-meta .author-link {
    color: #B0B0B0 !important; /* Match .entry-meta .byline .author.vcard a color */
    text-decoration: none !important;
    font-weight: normal !important;
    font-size: 13px !important;
}

.wp-block-latest-posts .custom-post-meta .author-link:hover {
    color: #E5E5E5 !important; /* Pale Grey for hover */
    text-decoration: underline !important;
}

/* Date link styling - matches .entry-meta .posted-on a */
.wp-block-latest-posts .custom-post-meta .date-link {
    color: #FF8C00 !important; /* Match .entry-meta .posted-on a color */
    text-decoration: none !important;
    font-weight: normal !important;
    font-size: 13px !important;
}

.wp-block-latest-posts .custom-post-meta .date-link:hover {
    color: #FF6600 !important; /* Match standard hover color */
    text-decoration: underline !important;
}

/* Generic fallback for any other links in custom meta */
.wp-block-latest-posts .custom-post-meta a {
    text-decoration: none !important;
}

/* Ensure proper spacing for block items */
.wp-block-latest-posts {
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.wp-block-latest-posts li {
    list-style: none !important;
    padding-left: 0 !important;
}

/* Fix for wp-block-list spacing */
.wp-block-list li {
    margin-bottom: 5px !important;
    line-height: 24px;
}

.wp-block-list li:last-child {
    margin-bottom: 0 !important;
}

.wp-block-list ul li,
.wp-block-list ol li {
    margin-bottom: 5px !important;
    line-height: 24px;
}

.wp-block-list ul li:last-child,
.wp-block-list ol li:last-child {
    margin-bottom: 0 !important;
}

/* More specific fixes for wp-block-list spacing issues */
.wp-block-list,
.wp-block-list ul,
.wp-block-list ol {
    margin-bottom: 15px !important;
    margin-top: 0 !important;
    padding-left: 30px !important;
}

.wp-block-list li,
.wp-block-list ul li,
.wp-block-list ol li {
    margin-bottom: 5px !important;
    margin-top: 0 !important;
    line-height: 24px !important;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
}

.wp-block-list li:last-child,
.wp-block-list ul li:last-child,
.wp-block-list ol li:last-child {
    margin-bottom: 0 !important;
}

/* Fix any paragraph spacing within list items */
.wp-block-list li p,
.wp-block-list ul li p,
.wp-block-list ol li p {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    line-height: 24px !important;
}
