/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

p {
	margin: 10px auto 10px auto !important;
}

/*Navigation Hover Effect*/

.wp-block-navigation-item__content:hover {
  text-decoration: none; /* Remove any default underline */
  position: relative; /* Enable positioning for the pseudo-element */
}

.wp-block-navigation-item__content:hover::after {
  content: ''; /* Add an empty pseudo-element */
  position: absolute;
  left: 0;
  right: 0;	
  bottom: 4px; /* Adjust to position the underline below the text */
  height: 3px; /* Thickness of the underline */
  background-color: #FF6900; /* Underline color */
  transition: all 0.3s ease; /* Smooth transition for hover effect */
}

/*End Navigation Hover Effect*/

/*Blog Pagination Buttons*/

.page-numbers, 
.page-numbers.current, 
.next.page-numbers {
	border:3px solid;
	border-radius: 10px;
}


/*End Blog Pagination Buttons*/

/* QA Images*/ 

/* Mobile styling */
@media (max-width: 768px) { /* Target smaller screen sizes */
    .qa-image {
        float: none !important; /* Remove float for mobile */
        margin: 10px auto 0 auto !important; /* Center the image horizontally */
        display: block !important; /* Ensure it behaves like a block element */
        text-align: center; /* Align the content within the figure */
		margin-inline-start: 0 !important;
		margin-inline-end: 0 !important;
    }
}

/*End QA Images*/

/*Age Gate Styles*/

.age-gate {
	border: 3px solid #FF6900 !important;
	border-radius: 15px;
}
.age-gate__heading-title {
	font-weight: normal;
}

.age-gate__label {
	color: #FFF !important;
}

.age-gate__input {
	background-color: rgba(64,64,64,0.5) !important;
	border: 3px solid #FF6900 !important;
	border-radius:10px !important;
	color: #FFF !important;
}

.age-gate__remember-text {
	color: #FFF;
}
.age-gate__button {
	background-color: #FF6900 !important;
	border: 3px solid #FFF !important;
	border-radius: 15px !important;
}
.age-gate__additional-information a {
	font-size: 14px;
    color: #FFF; /* Change link color */
    text-decoration: none; /* Remove underline */
    font-weight: bold; /* Make the link bold */
 	background-color: #FF6900 !important;
	border: 3px solid #FFF !important;
	border-radius: 15px !important;
	padding: 10px 14px !important;
	margin-bottom: 60px;
}

.age-gate__additional-information a:hover {
    background-color: #FF8800 !important;
}

.age-gate__additional-information hr{
	border: none;
	height: 3px;
	background-color: #FF6900;
	margin-top: 20px;
	margin-bottom: 20px;
}

.age-gate__additional-information p {
	margin; 5px !important;
	font-size: 16px;
}
/*End Age Gate Styles*/

.wp-element-caption {
	background-color: #000 !important;
	color: #fff;
	margin-top: 0px;	
	padding: 5px;
}

@media (max-width: 768px) { /* Target smaller screen sizes */
    .mobile-image {
        float: none !important; /* Remove float for mobile */
        margin: 10px auto 0 auto !important; /* Center the image horizontally */
    } 
}
