.tp-entry-readmore a {
background-color: #000;
color: #fff;
}
.form-submit .submit	{
		background-color: #000;
		color: #fff;
}
.guestquote	{
		text-align: right;
		font-style: normal;
		margin: 1px 10px 10px auto;
		font-weight: 500;
}
h1.dems	{
		color: #ffffff;
		font-size: clamp(1rem, 2vw + 1rem, 3rem);
		text-shadow: -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black, 1px 1px 0 black;
}
h1.tp-main-title {
		text-transform: uppercase;
}
.pagination .page-numbers {
		background-color: #53585E;
}
/* HotSpot */
.eead-hotspot-desc {
		width: 98%;
		margin: 0px auto 8px auto;
		text-align: center;
}
/* GiveWP - Disable Donor Dashboard */
.donor-dashboard-link { display: none; }
/* Google Map - Responsive CSS */
.responsive-map-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}
.responsive-map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* Image Pop-up */
.image-popup{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 999 !important;
	background-color:rgba(0,0,0,0.6);
	visibility: hidden;
	opacity: 0;
	transition: all 1s ease;
}
.image-popup .image-box {
    position: absolute;
    left: 30%;
    top: 30%;
    transspace: translate(-50%,-50%);
    display: flex;
    flex-wrap: wrap;
    opacity: 0;
    transition: all 1s ease;
    height: 100%;
    background-repeat: no-repeat;
}
.image-popup .image-box .space .close-button {
    position: absolute;
    right: -20px;
    top: -25px;
    font-size: 25px;
    cursor: pointer;
    background: rgba(0,0,0,0.4);
    color: white;
    border-radius: 30px;
    padding: 4px 5px 0px 6px;
}
.image-popup.visible .image-box {
    opacity: 1;
    margin-left: 0;
}
.image-popup.visible{
	visibility:visible;
	opacity: 1;
}
/* Menu Highlight */
.shmenu {
		background-color: #5CEF5D;
		color: #ffffff;
}
/* Make the Details summary match your sidebar H2 headings */
#block-26 details.wp-block-details summary {
    font-family: 'Anton', sans-serif !important;
    font-size: inherit; /* this will pull from the parent font-size you already set */
    font-weight: 400 !important; /* Anton is naturally bold, so use normal weight */
    color: inherit; /* or match your H2 color */
    text-transform: none; /* if your other headings use this */
    letter-spacing: normal;
    padding: 0;
    margin: 0 0 10px 0;
    cursor: pointer;
}

/* Remove bold from the  tag inside summary */
#block-26 details.wp-block-details summary strong {
    font-weight: 400 !important;
}

/* Remove the default disclosure triangle */
#block-26 details.wp-block-details summary::-webkit-details-marker {
    display: none;
}

/* Optional: Add a custom arrow icon */
#block-26 details.wp-block-details summary::before {
    content: "▼ ";
    display: inline-block;
    margin-right: 5px;
    transition: transform 0.2s;
}

#block-26 details.wp-block-details[open] summary::before {
    transform: rotate(180deg);
}

/* Clean up spacing */
#block-26 details.wp-block-details {
    margin: 0;
    padding: 0;
}