/*
 * sisterPageMenu
 */
.sisterPageMenu{
	list-style-type:none;
	padding:0;
	margin:0;
	margin-bottom:20px;
}
.sisterPageMenu li{
	background-color:#fcc;
	list-style-type:none;
	padding:0;
	margin-bottom:20px;
}
.sisterPageMenu a{
	display:block;
	background-color:var(--h-purple);
	color:#fff;
	padding: 20px 20px;
}
.sisterPageMenu a.active,
.sisterPageMenu a:hover{
	background-color:var(--h-green);
	color:#fff;
}

/*
 * contentIconContainer
 */
.contentIconContainer {
	text-align:center;
	margin-bottom:20px;
}
.contentIconContainer svg,
.contentIconContainer svg path{
	fill:var(--h-green) !important;
	height:60px;
	margin:auto;
}

/*
 * Metas
 */
.articleMetas{
	margin-bottom:30px;
	font-size:16px;
	color:#848484;
}
.articleMetas a{
	color:#848484;
}
.articleMetas svg{
	height:18px;
	margin-right:5px;
	margin-left:5px;
}
.articleMetas svg:first-child{
	margin-left:0;
}
.articleMetas a:after{
	content: ' -';
}
.articleMetas a:last-child:after{
	display:none;
}

/*
 * Image
 */
.imageLegend{
	font-style:italic;
	font-size:14px;
}

/*
 * Headings
 */
.wp-block-heading{
	font-size:40px;
	color:#5a3c50;
	text-transform:uppercase;
}
/*
.wp-block-heading:after{
	content:"";
	width:100px;
	border-bottom:1px solid #5a3c50;
	display:block;
	margin:40px auto;
}
*/
h2.wp-block-heading {
    margin-bottom: 25px;
    text-transform: uppercase;
    font-size: 28px;
    margin-top: 25px;
	font-weight:bold;
	display:flex;
	align-items:center;;
}
h2.wp-block-heading:after {
    content:"";
	border-top:1px solid var(--h-purple);
	flex-grow:1;
}
h3.wp-block-heading {
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 500;
    margin-top: 25px;
    position: relative;
    margin-bottom: 30px;
}
h3.wp-block-heading:after{
  content: '';
  width: 15%;
  height: 5px;
  background-color: #9fb4aa;
  margin-top:20px;
  display: block;
}
.wp-block-heading.has-white-color:after{
  background-color: #fff;
}
/*
h3.wp-block-heading:before,
h3.wp-block-heading:after {
  display: block;
  position: absolute;
}
h3.wp-block-heading:before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #ececec;
  top: 50px;
}
h3.wp-block-heading:after {
  content: '';
  width: 15%;
  height: 5px;
  background-color: #9fb4aa;
  top: 48px;
  z-index: 1;
}
*/
h4.wp-block-heading {
    font-size: 24px;
	font-weight:bold;
	text-transform:none;
}

/* 
 * wp-block-cover
 */
.articleContent .wp-block-cover a:hover{
	text-decoration:none;
	color:inherit;
}

/* 
 * wp-block-list
 */
ul.wp-block-list{
	padding-left:26px;
}
ul.wp-block-list li::marker  {
	color:#5a3c50;
	font-size:23px;
}
ul.wp-block-list li {
	margin-bottom:10px;
}
ol.wp-block-list{
	padding-left:40px;
}
ol.wp-block-list li::marker  {
	color:#5a3c50;
	font-weight:bold;
	font-size:20px;
	content: counter(list-item) " ➞ ";
}

/*
 * wp-block-details
 */
.wp-block-details{
	border-bottom:1px solid #5a3c50;
}
.wp-block-details > * {
    padding: 1rem 0;
}
.wp-block-details ul {
    padding-left: 2rem;
}
.wp-block-details > summary{
    padding: 1rem 1.25rem;
	position: relative;
    display: flex;
    align-items: center;
    width: 100%;
	background-color:#f9f9f9;
    text-align: left;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: var(--bs-accordion-transition);
}
.wp-block-details > summary::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23212529' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform 0.2s ease-in-out;
}
.wp-block-details[open] > summary::after {
	transform:rotate(-180deg)
}

/*
 * Image 
 */
figure.wp-block-image {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
    max-width: 100%;
    position: relative;
}
figure.wp-block-image figcaption{
	text-align:center;
	font-size:14px;
	font-style:italic;
}
figure.wp-block-image figcaption {
    background: linear-gradient(0deg, #000000b3, #0000004d 70%, #0000);
    bottom: 0;
    box-sizing: border-box;
    color: #fff;
    font-size: 13px;
    left: 0;
    margin-bottom: 0;
    max-height: 60%;
    overflow: auto;
    padding: 0 8px 8px;
    position: absolute;
    scrollbar-color: #0000 #0000;
    scrollbar-gutter: stable both-edges;
    scrollbar-width: thin;
    text-align: center;
    width: 100%;
    will-change: transform;
}
.wp-block-column > figure.wp-block-image{
	margin-bottom:0;
}

/*
 * backgroundedBlock
 */
.backgroundedBlock {
	border: 2px solid #5a3c50;
	border-radius:15px;
	padding:20px;
	text-align:left;
}
.backgroundedBlock .wp-block-heading{
	display:block;
	font-size:26px;
	font-weight:bold;
	text-transform:none;
}
.backgroundedBlock .wp-block-heading:after{
	display:none;
}
.backgroundedBlock .wp-block-columns{
	text-align:center;
	margin-bottom:6px;
	font-size:16px;
}
.backgroundedBlock a{
	text-decoration:underline;
}
.backgroundedBlock--green {
	background-color:#9fb4aa;
	color:#5a3c50;
}
.backgroundedBlock--purple {
	background-color:#5a3c50;
	color:#fff;
}
.backgroundedBlock--purple a,
.backgroundedBlock--purple .wp-block-heading{
	color:#fff;
}
.backgroundedBlock--gray {
	background-color:#f8f9f8;
	border:1px solid #ccc;
	border-radius:10px;
	color:#5a3c50;
}

.backgroundedBlock svg{
	height:60px;
	max-width:100px;
	margin:0 auto 16px;
}
.backgroundedBlock svg,
.backgroundedBlock path,
.backgroundedBlock g{
	fill:#fff !important;
	color:#fff !important;
}
.backgroundedBlock--purple a:hover svg {
	fill:#9fb4aa;
	color:#9fb4aa;
}
.backgroundedBlock .wp-block-heading:first-of-type{
	margin-top:0;
}
.backgroundedBlock .wp-block-button__link,
.backgroundedBlock .wp-block-button__link:hover{
	background-color:#fff !important;
	text-decoration:none;
}
.backgroundedBlock .wp-block-button__link:hover{
	background-color:#efefef !important;
}
.backgroundedBlock--purple .wp-block-button__link:hover,
.backgroundedBlock--purple .wp-block-button__link{
	color:#5a3c50 !important;
}
.backgroundedBlock--green .wp-block-button__link:hover,
.backgroundedBlock--green .wp-block-button__link{
	color:#9fb4aa !important;
}

/*
 * Article content 
 */
.articleContent{
	text-align:justify;
}
.articleContent a{
	color:#7b9589;
}
.articleContent a:hover{
	text-decoration:underline;
	color:#7b9589;
}
.articleContent p:last-child{
	margin-bottom:0;
}
.articleContent p > .alignleft,
.articleContent p > .alignright{
	margin-top:8px;
}
.articleContent .alignleft,
.articleContent .alignright{
	float:left;
	margin-bottom:16px;
}
.articleContent .alignleft{
	float:left;
	margin-right:20px;
}
.articleContent .alignright{
	float:right;
	margin-left:20px;
}
.articleContent .card{
	text-align:left;
}
.articleContent .wp-block-image.aligncenter,
.articleContent .wp-block-image.aligncenter figcaption{
    display:block;
}

.contentSocialIcons svg{
	width:13vw;
}

/*
 * Timeline
 */
.tl-timeline .tl-headline{
	color:#5a3c50;
}
.tl-timeline  .tl-slidenav-icon {
    color: #5a3c50 !important;
}

/*
 * USA Donation Form
 */
.USADonationForm{
	background-color:#f9f9f9;
	border:1px solid #ccc;
	border-radius:10px;
	padding:20px;
}
.USADonationForm .btn_donate{
	margin:0 auto;
	border:1px solid #ccc;
}

/* 
 * Blocks WP
 */
.wp-block-pullquote{
	padding:0 0 0 20px;
	margin: 6px 0 0 0;
	text-align:left;
	font-style:italic;
	color:var(--h-purple);
	font-size:27px;
	line-height:40px;
	border-left:4px solid  var(--h-purple);
}

/*
 * Medium screens
 */
@media (min-width: 992px)
{
}

/*
 * Small screens
 */
@media (max-width: 1136px)
{
	/*
	 * Content
	 */
	.wp-block-heading{
		font-size:26px;
	}
	h3.wp-block-heading{
		margin-bottom:30px;
	}
	h3.wp-block-heading:before{
		display:none;
	}
	h3.wp-block-heading:after{
		position:static;
		margin-top:20px;
	}
}

@media (max-width: 637px)
{
	.articleContent .alignright,
	.articleContent .alignleft,
	.articleContent figure.alignright > img,
	.articleContent figure.alignleft > img	{
        width: 100% !important;
        max-width: none;
        float: none;
        margin: 0 0 10px;
    }
}