/* Set font size of overlay menu on posts | 40100350-hc (BS) */  
.single-post .wp-block-navigation-item__label {
    font-size: 3em;
}
/* Change color and width of file block button | hc40226126(pax) */
a.wp-block-file__button.wp-element-button {
    background-color: white;
    padding-left: 8px;
    padding-right: 8px;
    outline: none;
}
a.wp-block-file__button.wp-element-button {
    padding-top: 5px;
    padding-bottom: 5px;
}
a.wp-block-file__button:active,
a.wp-block-file__button:focus,
a.wp-block-file__button:visited {
color: black; /*Maintains black text color after clicking on link.*/
}
/* Reduce top margin for Columns Blocks on mobile view(when stack-on-mobile is off) | YH-40226126-hc */
.wp-block-columns.is-not-stacked-on-mobile.is-layout-flex {
    margin-top: 10px;
}
/*make title appear over image on homepage 40299780-hc JG*/
.home .wp-block-query .wp-block-group {
	display:block;
	position:relative;
}
.home .wp-block-query .wp-block-group h2 {
  display: block;
	position: absolute;
	bottom: 90px;
	width: 100%;
}
/*reduce desktop homepage featured image size | 40347389-hc (KAK)*/
@media screen and (min-width: 960px) {
    .home .wp-block-post .wp-block-group {
        width: 70%;
        margin: 0 auto;
    }
}
/* -- reduce top and bottom margin for comment content | 40987087-hc eD -- */
body .is-layout-flow > * + .wp-block-comment-content,
body .is-layout-flow > * + .wp-block-comment-reply-link {
	margin-block-start: calc(.25 * var(--wp--preset--spacing--50));
}

.wp-block-comment-content p {
	margin-top: .25rem;
	margin-bottom: .25rem;
}
/* -- /reduce top and bottom margin for comment content | 40987087-hc eD -- */
/* Hide outlines on button blocks 41053002-hc */
.wp-element-button {
	outline: none;
}
/* Change button hover color 41053002-hc */
.wp-block-file__button:hover, .wp-element-button {
	color: #000000;
}
/* Fixing the background colour of the form rating section | 41277684-HC (AVS) */
.page-id-2130 .grunion-radio-options {
	background-color: #181818 !important;
	border: none !important;
}
/* Customizing comment box | 41277684-hc GH */

.comment-form ,
.comment-form iframe {
  background-color: #ffffff;
  border-radius: 5px;
}

/* End | 41277684-hc GH */
/* remove border on crowdsignal vote buttons | 41559870-HC | NM */
.crowdsignal-forms-vote-item {
    border: none;
}
/* Prevent crowdsignal vote count wrapping / 41559870-HC (JW) */
.crowdsignal-forms-voteitems .crowdsignal-forms-vote-itemcount{
overflow-wrap: normal !important;
word-break: normal;
}
/* reduce padding and margin for elements in crowdsignal block for mobile devices | 41598156-hc eD */ @media screen and (max-width: 560px) { .size-medium .crowdsignal-forms-vote-item { padding-left: 5px; padding-right: 5px; } .crowdsignal-forms-vote-item:not(:last-child) { margin-inline-end: 0 !important; } }