@charset "utf-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}

/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		6;
	dw-num-cols-tablet:		10;
	dw-num-cols-desktop:	14;
	dw-gutter-percentage:	25;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

/* Mobile Layout: 480px and below. */

	


/* ─── Resources & Spotlights ──────────────────────────── */



#newscard{

}


#blogcard{

}


#careercard{
	background-color: white;
}






/* Cards */
.story-card {
  border:  1px solid rgba(205, 150, 112, 0.3);
  background-color: transparent;
  padding: 1em 2em 2em;
  position: relative;
  overflow: hidden;
  transition: background-color var(--transition-smooth);
  width: calc(100% - 4em);
  height: calc(100% - 3em);
  display: block;
  float: left;
  clear: none;
  border-radius: 2em;
}

/* Thin gold left-bar reveal on hover */
.story-card::before {
  content: '';
  position: absolute;
  left: 0; top: 12%; bottom: 12%;
  width: 2px;
  background: var(--color-accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-card:hover {
  background-color: rgba(205, 150, 112, 0.05);
}

.story-card:hover::before {
  transform: scaleY(1);
}

.story-card:hover .story-readmore{
  background-color: #fff;
  box-shadow: 1px 8px 25px -3px rgba(174, 115, 73, 0.31);
-webkit-box-shadow: 1px 8px 25px -3px rgba(174, 115, 73, 0.31);
-moz-box-shadow: 1px 8px 25px -3px rgba(174, 115, 73, 0.31);
cursor: pointer;
}




.story-img{
	width: 100%;
	height: 100%;
	display: block;
	float: left;
	clear: none;
	position: absolute;
	z-index: 10;
	top: 100%;
	left: 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	transition: all .2s;
	border-radius: 2em;
}




.story-card:hover .story-img{
	width: 100%;
	height: 100%;
	display: block;
	float: left;
	clear: none;
	position: absolute;
	z-index: 10;
	top: 0%;
	left: 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}








/* Bookmark mark */
.story-mark {
  background-color: rgba(255, 255, 255, 0.05);
  font-family: 'GeneralSans-Regular';
  color: var(--color-accent);
  border-radius: 1em;
  transition: background-color var(--transition-base), color var(--transition-base);
  display: block;
  float: left;
  clear: none;
   display: grid; 
  grid-auto-flow: row dense; 
  grid-template-columns: auto auto; 
  grid-template-rows: 1fr; 
  gap: 0em 0em; 
  grid-template-areas: 
    "auto auto"; ;
    padding: 1em 1em;
    margin: 1em 0;
	position: relative;
z-index: 0;
    
}

.story-mark i{
  display: inline;
  margin: 0 .5em 0 0;
  color: #bc805eb3;
}

.story-mark p{
  font-size: .85em;
  color: #352b29;
}

.story-card:hover .story-mark {
  background-color: var(--color-accent);
  color: #1a1210;
}

/* Title */
.story-title {
font-size: 1.6em;
font-family: 'GeneralSans-Medium';
letter-spacing: .5px;
position: relative;
z-index: 0;
}

/* Excerpt */
.story-excerpt {
  color: rgb(56, 56, 56);
  line-height: 1.2;
  margin: 1em 0;
  position: relative;
z-index: 0;
}

/* Meta */
.story-meta{
  width: auto;
  display: block;
  clear: both;
  margin: 1.5em 0;
  position: relative;
z-index: 0;
}

.story-author {
  font-family: 'GeneralSans-Regular';
  clear: both;
  display: block;
  font-weight: 600;
  letter-spacing: .25px;
  position: relative;
z-index: 0;
}

.story-detail {
  color: #bc805e;
  letter-spacing: 0.1em;
  font-family: 'GeneralSans-Regular';
  font-weight: 400;
   clear: both;
    display: block;
    font-size: .8em;
    margin-top: .5em;
position: relative;
z-index: 0;
}






/* Read more */
.story-readmore {
  font-family: 'GeneralSans-Regular';
  color: #352b29;
  border-bottom-color: rgba(205, 150, 112, 0.45);
  font-size: .9em;
  letter-spacing: 0em;
  background-color: #cd97702c;
  padding: 1em 1.5em;
  border-radius: 2em;
  margin-top: 2em;
  clear: both;
  display: block;
  float: left;
  transition: .3s all;
  position: relative;
  z-index: 100;
}

.story-readmore i{
  margin-left: .5em;
}

.story-readmore:hover {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}





/* ─── Event ──── */


.eventslide{

}



#eventcard {
  width: calc(100% - 0em);
  height: calc(100% - 0em);
  display: block;
  float: left;
  clear: none;
  border-radius: 2em;
  display: grid; 
  grid-auto-flow: row dense; 
  grid-template-columns: 1fr; 
  grid-template-rows: 1fr 1fr; 
  gap: 0em 0em; 
  grid-template-areas: 
    "."
    "."; 
	 background-color: #352b29;
	 transition: all .3s;
}

#eventcard:hover{
	background-color: #463936;
}

#eventcard .story-img{
	width: 100%;
	height: 100%;
	display: block;
	float: left;
	clear: none;
	position: relative;
	z-index: 10;
	top: auto;
	left: auto;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	transition: all .2s;
	border-radius: 2em;
	
}


#eventcard .story-card {
  border:  1px solid rgba(205, 150, 112, 0.0);
  padding: 1em 2em 2em;
  position: relative;
  overflow: hidden;
  transition: background-color var(--transition-smooth);
  width: calc(100% - 4em);
  height: calc(100% - 3em);
  display: block;
  float: left;
  clear: none;
  border-radius: 2em;
}

#eventcard .story-card:hover{
	background: none;
}


#eventcard .story-mark {
  background-color: rgba(0, 0, 0, 0.153);
  font-family: 'GeneralSans-Regular';
  color: #cd9670;
  border-radius: 1em;
  transition: background-color var(--transition-base), color var(--transition-base);
  display: block;
  float: left;
  clear: none;
   display: grid; 
  grid-auto-flow: row dense; 
  grid-template-columns: auto auto; 
  grid-template-rows: 1fr; 
  gap: 0em 0em; 
  grid-template-areas: 
    "auto auto"; ;
    padding: 1em 1em;
    margin: 1em 0;
	position: relative;
z-index: 0;
    
}

#eventcard .story-mark i{
  display: inline;
  margin: 0 .5em 0 0;
  color: #bc805eb3;
}

#eventcard .story-mark p{
  font-size: .85em;
  color: #ffffff;
}

#eventcard .story-card:hover .story-mark {
  background-color: rgba(0, 0, 0, 0.25);
  color: #fbd6bb;
}

/* Title */
#eventcard .event-title {
font-size: 1.6em;
font-family: 'GeneralSans-Medium';
letter-spacing: .5px;
position: relative;
z-index: 0;
color: #fff;
}

/* Excerpt */
#eventcard .event-des {
  color: rgb(223, 223, 223);
  line-height: 1.2;
  margin: 1em 0;
  position: relative;
z-index: 0;
}




/* Meta */
.event-meta{
  width: auto;
  display: block;
  clear: both;
  margin: 1.5em 0;
  position: relative;
z-index: 0;
}

.location-name {
  font-family: 'GeneralSans-Regular';
  clear: both;
  display: block;
  font-weight: 600;
  letter-spacing: .25px;
  position: relative;
z-index: 0;
color: #fff6f1;
}

.event-date {
  color: #bc805e;
  letter-spacing: 0.1em;
  font-family: 'GeneralSans-Regular';
  font-weight: 400;
   clear: both;
    display: block;
    font-size: 1em;
    margin-top: .5em;
position: relative;
z-index: 0;
}






/* Read more */
#eventcard .event-button {
  font-family: 'GeneralSans-Regular';
  color: #ffffff;
  border-bottom-color: rgba(205, 150, 112, 0.45);
  font-size: .9em;
  letter-spacing: 0em;
  background-color: #cd97708b;
  padding: 1em 1.5em;
  border-radius: 2em;
  margin-top: 2em;
  clear: both;
  display: block;
  float: left;
  transition: .3s all;
  position: relative;
  z-index: 100;
}

#eventcard .event-button i{
  margin-left: .5em;
}

#eventcard:hover  .event-button{
  background-color: #fff;
  color: #352b29;
  border-bottom-color: var(--color-accent);
}

























/* ─── Article Page ──── */

#article-page{
		width: 90%;
		height: auto;
		display: block;
		float: left;
		clear: none;
		margin: 0vh 5% 10vh;
	}

	.ap-left{
		width: 100%;
		height: auto;
		display: block;
		float: left;
		clear: none;
		border-radius: 1em;
		background-color: #fff;
		border:  1px solid rgba(205, 150, 112, 0.3);
		position: relative;
		z-index: 5;
		top: -5vh;
		left: 0;
	}

	.ap-left .story-card{
   width: calc(100% - 4em);
   height: calc(100% - 1em);
   padding: .5em 2em ;
   border:0;
   background-color: #ffffff00;
}

	.ap-left h4{
		margin: 1em 0 .5em;
	}

	.ap-left .story-meta {
		margin: .5em 0 1em;
	}


	.apl-image{
		width: 100%;
		height: 50vh;
		display: block;
		float: left;
		clear: none;
		border-radius: 1em;
		background-size: cover;
		background-position: center;
	}


	.ap-right{
		width: 100%;
		height: auto;
		display: block;
		float: right;
		clear: none;
		border-radius: 1em;
    margin: 1em 0;
	}


	.article-content{
		width: 100%;
		height: auto;
		display: block;
		float: left;
		clear: none;

	}

	.article-content p{
		text-align: justify;
	}


	.other-articles{
		width: 100%;
		height: auto;
		display: block;
		float: left;
		clear: none;
		 
	border:  solid rgba(205, 150, 112, 0.3);
	border-width: 1px 0 0 0;
	padding: 1em 0;
	}

	.other-articles h3{
		margin: .5em 0;
	}


	.other-articles-inner{
		width: 100%;
		height: auto;
		display: grid; 
		grid-auto-flow: row dense; 
		grid-template-columns: 1fr; 
		grid-template-rows: 1fr; 
		gap: 1em 1em; 
		grid-template-areas: 
		"."; 
		clear: both;
		float: left;
	}


/* ─── Article Page ──── */










/* ─── Media Page ──── */

#media-list{
	width: 85%;
	height: auto;
	float: left;
	clear: none;
	margin: auto 7.5% 10vh;
	 display: grid; 
  grid-auto-flow: row dense; 
  grid-template-columns: 1fr; 
  grid-template-rows: 1fr; 
  gap: 0em 0em; 
  grid-template-areas: 
    "."; 
}

#event-list{
	width: 85%;
	height: auto;
	float: left;
	clear: none;
	margin: auto 7.5% 10vh;
	 display: grid; 
  grid-auto-flow: row dense; 
  grid-template-columns: 1fr; 
  grid-template-rows: 1fr; 
  gap: 1em 1em; 
  grid-template-areas: 
    "."; 
}
/* ─── Media Page ──── */

















/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {



  	.other-articles-inner{
		width: 100%;
		height: auto;
		display: grid; 
		grid-auto-flow: row dense; 
		grid-template-columns: 1fr 1fr; 
		grid-template-rows: 1fr; 
		gap: 1em 1em; 
		grid-template-areas: 
		". ."; 
		clear: both;
		float: left;
	}




  #event-list{
	width: 85%;
	height: auto;
	float: left;
	clear: none;
	margin: auto 7.5% 10vh;
	 display: grid; 
  grid-auto-flow: row dense; 
  grid-template-columns: 1fr 1fr; 
  grid-template-rows: 1fr; 
  gap: 1em 1em; 
  grid-template-areas: 
    ". ."; 
}






}



/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {







#eventcard {
  width: calc(100% - 0em);
  height: calc(80vh - 0em);
  display: block;
  float: left;
  clear: none;
  border-radius: 2em;
  display: grid; 
  grid-auto-flow: row dense; 
  grid-template-columns: 1fr; 
  grid-template-rows: .7fr 1.3fr; 
  gap: 0em 0em; 
  grid-template-areas: 
    "."
    "."; 
	 background-color: #352b29;
	 transition: all .3s;
}


#eventcard .story-img{
	width: 100%;
	height: 100%;
	display: block;
	float: left;
	clear: none;
	position: relative;
	z-index: 10;
	top: auto;
	left: auto;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	transition: all .2s;
	border-radius: 2em;
	
}


#eventcard .story-card {
  border:  1px solid rgba(205, 150, 112, 0.0);
  padding: 1em 2em 2em;
  position: relative;
  overflow: hidden;
  transition: background-color var(--transition-smooth);
  width: calc(100% - 4em);
  height: calc(100% - 3em);
  display: block;
  float: left;
  clear: none;
  border-radius: 2em;
}










/* ─── Article Page ──── */

#article-page{
		width: 85%;
		height: auto;
		display: block;
		float: left;
		clear: none;
		margin: auto 7.5% 10vh;
	}

	.ap-left{
		width: 40%;
		height: auto;
		display: block;
		float: left;
		clear: none;
		border-radius: 1em;
		background-color: #fff;
		border:  1px solid rgba(205, 150, 112, 0.3);
		position: sticky;
		z-index: 5;
		top: 15vh;
		left: 0;
	}

	.ap-left .story-card{
   width: calc(100% - 4em);
   height: calc(100% - 1em);
   padding: .5em 2em ;
   border:0;
   background-color: #ffffff00;
}

	.ap-left h4{
		margin: 1em 0 .5em;
	}

	.ap-left .story-meta {
		margin: .5em 0 1em;
	}


	.apl-image{
		width: 100%;
		height: 50vh;
		display: block;
		float: left;
		clear: none;
		border-radius: 1em;
		background-size: cover;
		background-position: center;
	}


	.ap-right{
		width: 55%;
		height: auto;
		display: block;
		float: right;
		clear: none;
		border-radius: 1em;
    margin: 0;
	}


	.article-content{
		width: 100%;
		height: auto;
		display: block;
		float: left;
		clear: none;

	}

	.article-content p{
		text-align: justify;
	}


	.other-articles{
		width: 100%;
		height: auto;
		display: block;
		float: left;
		clear: none;
		 
	border:  solid rgba(205, 150, 112, 0.3);
	border-width: 1px 0 0 0;
	padding: 1em 0;
	}

	.other-articles h3{
		margin: .5em 0;
	}


	.other-articles-inner{
		width: 100%;
		height: auto;
		display: grid; 
		grid-auto-flow: row dense; 
		grid-template-columns: 1fr 1fr; 
		grid-template-rows: 1fr; 
		gap: 1em 1em; 
		grid-template-areas: 
		". ."; 
		clear: both;
		float: left;
	}



/* ─── Article Page ──── */




/* ─── Media Page ──── */

#media-list{
	width: 85%;
	height: auto;
	float: left;
	clear: none;
	margin: auto 7.5% 10vh;
	 display: grid; 
  grid-auto-flow: row dense; 
  grid-template-columns: 1fr 1fr 1fr; 
  grid-template-rows: 1fr; 
  gap: 0em 0em; 
  grid-template-areas: 
    ". . ."; 
}

#event-list{
	width: 85%;
	height: auto;
	float: left;
	clear: none;
	margin: auto 7.5% 10vh;
	 display: grid; 
  grid-auto-flow: row dense; 
  grid-template-columns: 1fr 1fr 1fr; 
  grid-template-rows: 1fr; 
  gap: 1em 1em; 
  grid-template-areas: 
    ". . ."; 
}
/* ─── Media Page ──── */







}
    /* Desktop Layout: 769px to a max of 1080px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 1080px) {
	
    
    


	


/* ─── Resources & Spotlights ──────────────────────────── */



#newscard{

}


#blogcard{

}


#careercard{
	background-color: white;
}






/* Cards */
.story-card {
  border:  1px solid rgba(205, 150, 112, 0.3);
  background-color: transparent;
  padding: 1em 2em 2em;
  position: relative;
  overflow: hidden;
  transition: background-color var(--transition-smooth);
  width: calc(100% - 4em);
  height: calc(100% - 3em);
  display: block;
  float: left;
  clear: none;
  border-radius: 2em;
}

/* Thin gold left-bar reveal on hover */
.story-card::before {
  content: '';
  position: absolute;
  left: 0; top: 12%; bottom: 12%;
  width: 2px;
  background: var(--color-accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-card:hover {
  background-color: rgba(205, 150, 112, 0.05);
}

.story-card:hover::before {
  transform: scaleY(1);
}

.story-card:hover .story-readmore{
  background-color: #fff;
  box-shadow: 1px 8px 25px -3px rgba(174, 115, 73, 0.31);
-webkit-box-shadow: 1px 8px 25px -3px rgba(174, 115, 73, 0.31);
-moz-box-shadow: 1px 8px 25px -3px rgba(174, 115, 73, 0.31);
cursor: pointer;
}




.story-img{
	width: 100%;
	height: 100%;
	display: block;
	float: left;
	clear: none;
	position: absolute;
	z-index: 10;
	top: 100%;
	left: 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	transition: all .2s;
	border-radius: 2em;
}




.story-card:hover .story-img{
	width: 100%;
	height: 100%;
	display: block;
	float: left;
	clear: none;
	position: absolute;
	z-index: 10;
	top: 0%;
	left: 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}








/* Bookmark mark */
.story-mark {
  background-color: rgba(255, 255, 255, 0.05);
  font-family: 'GeneralSans-Regular';
  color: var(--color-accent);
  border-radius: 1em;
  transition: background-color var(--transition-base), color var(--transition-base);
  display: block;
  float: left;
  clear: none;
   display: grid; 
  grid-auto-flow: row dense; 
  grid-template-columns: auto auto; 
  grid-template-rows: 1fr; 
  gap: 0em 0em; 
  grid-template-areas: 
    "auto auto"; ;
    padding: 1em 1em;
    margin: 1em 0;
	position: relative;
z-index: 0;
    
}

.story-mark i{
  display: inline;
  margin: 0 .5em 0 0;
  color: #bc805eb3;
}

.story-mark p{
  font-size: .85em;
  color: #352b29;
}

.story-card:hover .story-mark {
  background-color: var(--color-accent);
  color: #1a1210;
}

/* Title */
.story-title {
font-size: 1.6em;
font-family: 'GeneralSans-Medium';
letter-spacing: .5px;
position: relative;
z-index: 0;
}

/* Excerpt */
.story-excerpt {
  color: rgb(56, 56, 56);
  line-height: 1.2;
  margin: 1em 0;
  position: relative;
z-index: 0;
}

/* Meta */
.story-meta{
  width: auto;
  display: block;
  clear: both;
  margin: 1.5em 0;
  position: relative;
z-index: 0;
}

.story-author {
  font-family: 'GeneralSans-Regular';
  clear: both;
  display: block;
  font-weight: 600;
  letter-spacing: .25px;
  position: relative;
z-index: 0;
}

.story-detail {
  color: #bc805e;
  letter-spacing: 0.1em;
  font-family: 'GeneralSans-Regular';
  font-weight: 400;
   clear: both;
    display: block;
    font-size: .8em;
    margin-top: .5em;
position: relative;
z-index: 0;
}






/* Read more */
.story-readmore {
  font-family: 'GeneralSans-Regular';
  color: #352b29;
  border-bottom-color: rgba(205, 150, 112, 0.45);
  font-size: .9em;
  letter-spacing: 0em;
  background-color: #cd97702c;
  padding: 1em 1.5em;
  border-radius: 2em;
  margin-top: 2em;
  clear: both;
  display: block;
  float: left;
  transition: .3s all;
  position: relative;
  z-index: 100;
}

.story-readmore i{
  margin-left: .5em;
}

.story-readmore:hover {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}





/* ─── Event ──── */


.eventslide{

}



#eventcard {
  width: calc(100% - 0em);
  height: calc(100% - 0em);
  display: block;
  float: left;
  clear: none;
  border-radius: 2em;
  display: grid; 
  grid-auto-flow: row dense; 
  grid-template-columns: 1fr; 
  grid-template-rows: 1fr 1fr; 
  gap: 0em 0em; 
  grid-template-areas: 
    "."
    "."; 
	 background-color: #352b29;
	 transition: all .3s;
}

#eventcard:hover{
	background-color: #463936;
}


#eventcard .story-img{
	width: 100%;
	height: 100%;
	display: block;
	float: left;
	clear: none;
	position: relative;
	z-index: 10;
	top: auto;
	left: auto;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	transition: all .2s;
	border-radius: 2em;
	
}


#eventcard .story-card {
  border:  1px solid rgba(205, 150, 112, 0.0);
  padding: 1em 2em 2em;
  position: relative;
  overflow: hidden;
  transition: background-color var(--transition-smooth);
  width: calc(100% - 4em);
  height: calc(100% - 3em);
  display: block;
  float: left;
  clear: none;
  border-radius: 2em;
}

#eventcard .story-card:hover{
	background: none;
}


#eventcard .story-mark {
  background-color: rgba(0, 0, 0, 0.153);
  font-family: 'GeneralSans-Regular';
  color: #cd9670;
  border-radius: 1em;
  transition: background-color var(--transition-base), color var(--transition-base);
  display: block;
  float: left;
  clear: none;
   display: grid; 
  grid-auto-flow: row dense; 
  grid-template-columns: auto auto; 
  grid-template-rows: 1fr; 
  gap: 0em 0em; 
  grid-template-areas: 
    "auto auto"; ;
    padding: 1em 1em;
    margin: 1em 0;
	position: relative;
z-index: 0;
    
}

#eventcard .story-mark i{
  display: inline;
  margin: 0 .5em 0 0;
  color: #bc805eb3;
}

#eventcard .story-mark p{
  font-size: .85em;
  color: #ffffff;
}

#eventcard .story-card:hover .story-mark {
  background-color: rgba(0, 0, 0, 0.25);
  color: #fbd6bb;
}

/* Title */
#eventcard .event-title {
font-size: 1.6em;
font-family: 'GeneralSans-Medium';
letter-spacing: .5px;
position: relative;
z-index: 0;
color: #fff;
}

/* Excerpt */
#eventcard .event-des {
  color: rgb(223, 223, 223);
  line-height: 1.2;
  margin: 1em 0;
  position: relative;
z-index: 0;
}




/* Meta */
.event-meta{
  width: auto;
  display: block;
  clear: both;
  margin: 1.5em 0;
  position: relative;
z-index: 0;
}

.location-name {
  font-family: 'GeneralSans-Regular';
  clear: both;
  display: block;
  font-weight: 600;
  letter-spacing: .25px;
  position: relative;
z-index: 0;
color: #fff6f1;
}

.event-date {
  color: #bc805e;
  letter-spacing: 0.1em;
  font-family: 'GeneralSans-Regular';
  font-weight: 400;
   clear: both;
    display: block;
    font-size: 1em;
    margin-top: .5em;
position: relative;
z-index: 0;
}






/* Read more */
#eventcard .event-button {
  font-family: 'GeneralSans-Regular';
  color: #ffffff;
  border-bottom-color: rgba(205, 150, 112, 0.45);
  font-size: .9em;
  letter-spacing: 0em;
  background-color: #cd97708b;
  padding: 1em 1.5em;
  border-radius: 2em;
  margin-top: 2em;
  clear: both;
  display: block;
  float: left;
  transition: .3s all;
  position: relative;
  z-index: 100;
}

#eventcard .event-button i{
  margin-left: .5em;
}

#eventcard:hover  .event-button{
  background-color: #fff;
  color: #352b29;
  border-bottom-color: var(--color-accent);
}

























/* ─── Article Page ──── */

#article-page{
		width: 85%;
		height: auto;
		display: block;
		float: left;
		clear: none;
		margin: auto 7.5% 10vh;
	}

	.ap-left{
		width: 40%;
		height: auto;
		display: block;
		float: left;
		clear: none;
		border-radius: 1em;
		background-color: #fff;
		border:  1px solid rgba(205, 150, 112, 0.3);
		position: sticky;
		z-index: 5;
		top: 15vh;
		left: 0;
	}

	.ap-left .story-card{
   width: calc(100% - 4em);
   height: calc(100% - 1em);
   padding: .5em 2em ;
   border:0;
   background-color: #ffffff00;
}

	.ap-left h4{
		margin: 1em 0 .5em;
	}

	.ap-left .story-meta {
		margin: .5em 0 1em;
	}


	.apl-image{
		width: 100%;
		height: 50vh;
		display: block;
		float: left;
		clear: none;
		border-radius: 1em;
		background-size: cover;
		background-position: center;
	}


	.ap-right{
		width: 55%;
		height: auto;
		display: block;
		float: right;
		clear: none;
		border-radius: 1em;
    margin: 0;
	}


	.article-content{
		width: 100%;
		height: auto;
		display: block;
		float: left;
		clear: none;

	}

	.article-content p{
		text-align: justify;
	}


	.other-articles{
		width: 100%;
		height: auto;
		display: block;
		float: left;
		clear: none;
		 
	border:  solid rgba(205, 150, 112, 0.3);
	border-width: 1px 0 0 0;
	padding: 1em 0;
	}

	.other-articles h3{
		margin: .5em 0;
	}


	.other-articles-inner{
		width: 100%;
		height: auto;
		display: grid; 
		grid-auto-flow: row dense; 
		grid-template-columns: 1fr 1fr; 
		grid-template-rows: 1fr; 
		gap: 1em 1em; 
		grid-template-areas: 
		". ."; 
		clear: both;
		float: left;
	}



/* ─── Article Page ──── */










/* ─── Media Page ──── */

#media-list{
	width: 85%;
	height: auto;
	float: left;
	clear: none;
	margin: auto 7.5% 10vh;
	 display: grid; 
  grid-auto-flow: row dense; 
  grid-template-columns: 1fr 1fr 1fr; 
  grid-template-rows: 1fr; 
  gap: 0em 0em; 
  grid-template-areas: 
    ". . ."; 
}

#event-list{
	width: 85%;
	height: auto;
	float: left;
	clear: none;
	margin: auto 7.5% 10vh;
	 display: grid; 
  grid-auto-flow: row dense; 
  grid-template-columns: 1fr 1fr 1fr; 
  grid-template-rows: 1fr; 
  gap: 1em 1em; 
  grid-template-areas: 
    ". . ."; 
}
/* ─── Media Page ──── */









    
    
    
}
    
    
    /* Desktop Layout:1080px to a max of 1440px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 1440px) {

    
    
    
    
    
    
    
    
    
    
    
}
    
        /* Desktop Layout: 1440px to a max of 1920px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 1920px) {
	
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
  
    
    
    
}
            /* Desktop Layout: 1920px to a max of 2400px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 2400px) {
	

    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
		
}