@charset "utf-8";
/* CSS Document */

/* Start of Grid Rules */
.grid {
	max-width: 950px;
	margin: auto;
	font-family: 'Open Sans', sans-serif;
	display: grid;
	grid-gap: 5px;
	grid-auto-rows: auto;
	grid-template-areas:
		"hd"
		"art"
		"mnav"
		"ft";
}
	@media (min-width: 768px) {
		.grid {
			grid-gap: 2px;
			grid-template-areas:
			"hd"
			"dnav"
			"art"
			"ft";
			box-shadow: -1px 0px 2px #69828f, 1px 0px 2px #69828f;
			}
		}
/* End of Grid Rules */



/* Start of Header */
header {
	grid-area: hd;
	background-color: #2a3439;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23ffffff' fill-opacity='0.09' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
	min-height: 60px;
	max-height: 140px;
}

/* Logo */
.logo {
	margin: 0 auto 0 auto;
	display: block;
	padding: 5px 0 5px 0;
	height: auto;
	width: 80%;
}
	@media only screen and (min-width: 500px) {
		.logo {
			width: 70%;	
		}
	}

	@media only screen and (min-width: 600px) {
		.logo {
			max-width: 450px;	
		}
	}
/* End of Header */



/* Start of Desktop Menu */
.desktop-nav {
	grid-area: dnav;
	background-color: #3a6c85;
}

.desktop-nav ul {
	background-color: #3a6c85;
	text-align: center;
	font-size: 16px;
	padding: 8px 0 8px 0;
	margin: 0 auto 0 auto;
}

.desktop-nav li {
	display: inline-block;
	margin: 0 4px 0 4px;
}

.desktop-nav a {
	text-decoration: none;
	color: white;
}

.desktop-nav a:hover {
	text-decoration: underline;
}

	@media only screen and (max-width: 767px) {
		.desktop-nav {
			display: none;
		}
	}
/* End of Desktop Menu */



/* Start of Standard Article Styles */
article {
	grid-area: art;
	padding: 30px;
}
.standard-article h1 {
	color: #3a6c85;
	font-size: 24pt;
	text-align: left;
}
.standard-article h2 {
	color: #2a3439;
	font-size: 16pt;
	text-align: justify;
	text-justify: inter-word;
	font-weight: lighter;
}
.standard-article h3 {
	color: #3a6c85;
}
.standard-article p {
	font-size: 14pt;
	text-align: justify;
	text-justify: inter-word;
}
.standard-article a {
	color: #3a6c85;
	text-decoration: none;
}
.standard-article ul {
	list-style-type: none;
	padding: 10px;
}
.byline {
	color: #2a3439;
	font-weight: bolder;
	font-size: 16pt;
}
.profile-deets {
	font-weight: bolder;
	color: #3a6c85;
	padding-right: 5px;
}
.standard-article figure {
	padding: 0;
	margin: 0;
}
.standard-article img {
	width: 100%;
	height: auto;
}
.standard-article figcaption {
	font-size: 11pt;
}

.profile-picture figcaption {
	text-align: center;
}

.inart figcaption {
	text-align: justify;
	text-justify: inter-word;
}
.shutterstock {
	text-align: center;
}
	@media only screen and (min-width: 768px) {	
		.inartpic img {
			max-width: 600px;
			margin: 30px auto 0 auto;
			display: block;
			border-radius: 10px;
		}
		.inartpic figcaption {
			text-align: center;
			margin: 20px auto 10px auto;
		}
	}
.standard-article .atp {
	color: #3a6c85;
}
.standard-article .wta {
	color: #814885;
}
h3.preview-section {
	color: #009444;
	text-align: center;
	font-size: 18pt;
	text-decoration: underline;
}
.preview-name {
	color: #3a6c85;
	font-weight: bold;
}
p.tournament-results {
	font-size: 18pt;
}
.newsletter-headings {
	font-size: 22pt;
	text-align: center;
}
.newsletter-news {
	margin-left: 20px;
	font-size: 18px;
}
ul.newsletter-news {
	list-style-type: circle;
}
p.newsletter-intro {
	font-size: 16pt;
	font-style: italic;
	font-weight: bolder;
	margin-bottom: 30px;
	border-top: 4px dotted #009444;
	padding-top: 25px;
}
/* End of Standard Article Styles */



/* Start of Category Page Styles */

	/* Start of page description section */
	.page-description {
		border-bottom: solid 4px #3a6c85;
	}
	.page-description h1 {
		color: #3a6c85;
		font-size: 24pt;
	}
	.page-description p {
		font-size: 16pt;
	}
	/* End of page description section */

	/* Start of story Container */
	.pagestory img {
		height: auto;
		width: 100%;
		border-radius: 10px;
		margin-top: 30px;
	}
	.pagestory h2 {
		font-size: 18pt;
		text-transform: uppercase;
		color: #3a6c85;
		margin: 5px 0 8px 0;
	}
	p.page-subhead {
		font-size: 14pt;
		color: #000000;
		margin: 0 0 8px 0;
	}
	p.page-byline {
		font-size: 12pt;
		color: #2a3439;
		margin: 0 0 30px 0;
	}
	.pagestory a {
		text-decoration: none;
	}

	.pagestory hr {
		border: 0.5px solid #69828f;
	}

		@media only screen and (min-width: 1024px) {
			.pagestory {
				max-width: 90%;
				margin-left: auto;
				margin-right: auto;
			}
		}
	/* End of story container*/
	.page-substories {
		border-top: solid 4px #009444;
	}
		@media only screen and (min-width: 768px) {
			.page-substories {
				display: inline-block;
				padding: 20px 5px 30px 5px;
				width: 100%;
			}
			.page-substories img {
				max-width: 40%;
				float: right;
				margin-left: 15px;
			}
			.page-substories h2 {
				margin-top: 40px;
			}
		}
/* End of Category Page Styles */

	.newsletter-reminder {
		text-align: center;
	}

	.newsletter-reminder p {
		font-weight: bold;
		color: #3a6c85;
		text-align: center;
	}

	.newsletter-reminder img {
		width: 85%;
		border-radius: 20px;
		box-shadow: 3px 3px 4px;
	}

	@media only screen and (min-width: 768px) {
		.newsletter-reminder img {
			width: 55%;
		}
	}



/*Read More Element */
.read-more-2026 {
	background-color: #3a6c85;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23ffffff' fill-opacity='0.09' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
	border-radius: 5px;
	max-width: 600px;
	margin: auto;
	padding: 10px;
}

.read-more-2026 p {
	color: white;
	text-align: center;
}

.read-more-intro {
	font-weight: bold;
	text-decoration: underline;
	font-size: 18pt;
}

.read-more-headline {
	font-size: 14pt;
}










/* Mobile Menu */
.mobile-nav {
	grid-area: mnav;
	background-color: white;
	border-radius: 25px 25px 0 0;
}
	@media (min-width: 768px) {
		.mobile-nav {
			display: none;
		}
	}
.mobile-nav ul {
	list-style-type: none;
}
.mobile-nav ul li a {
	text-decoration: none;
	color:#ffffff;
	text-align: center;
	display: block;
	padding: 8px;
}
/*Accordion Menu*/
.accordion {
  background-color: #3a6c85;
  color: #ffffff;
  cursor: pointer;
  padding: 18px;
  margin-bottom: 1px;
  width: 100%;
  border-color: transparent;
  border-radius: 25px 25px 0 0;
  text-align: center;
  text-transform: uppercase;
  outline: none;
  font-size: 20px;
  transition: 0.4s;
}
.active, .accordion:hover {
  background-color: #3a6c85; 
}
.panel {
  display: none;
  background-color: #69828f;
  overflow: hidden;
  text-align: center;
  color: #ffffff;
}
.panel ul {
  list-style: none;
	margin: 0;
	padding: 0;
}
.panel ul li {
  padding: 10px 0 10px 0;
  border-bottom: solid .5px white;
  margin: 0;
}
/* End of Mobile menu */



/* Start of Footer */
footer {
	grid-area: ft;
	background-color: #2a3439;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23ffffff' fill-opacity='0.09' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
	min-height: 250px;
	color: #69828F;
}

footer ul {
	list-style: none;
	margin: 0;
	padding: 20px 0 0 0;
	text-align: center;
	font-size: 15pt;
}
footer li {
	line-height: 2.3;
}
footer p {
	text-align: center;
	padding: 2% 0 1% 0;
	font-size: 12pt;
}
	@media only screen and (min-width: 768px) {	
		footer li {
			display: inline-block;
			margin: 0px 10px 0 0;
		}
	}
footer a {
	text-decoration: none;
	color: #69828f;
}
footer a:hover {
	color: white;
}

#copyright-newsletter {
	font-size: 12pt;
}
/* End of Footer */