/* ==================================================
   CSS Imports
================================================== */

@import url("reset.css");

/* ==================================================
   Icon Fonts
================================================== */

@import url("fonts/fontawesome/font-awesome.css");

/* ==================================================
   Google Fonts
================================================== */

@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,300italic,400,400italic,600,600italic,700,700italic,900,900italic");
@import url('https://fonts.googleapis.com/css2?family=Changa:wght@200&display=swap');

/* ==================================================
   Global Styles
================================================== */

*
{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html
{
	height: 100%;
	overflow: auto;
	
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body
{

	/*font-family: "Source Sans Pro", Arial, Helvetica, sans-serif;*/
	font-size: 20px;
	line-height: 32px;
	font-weight: 300;
	color: #999;
	background: #000;
	
	text-rendering: optimizeLegibility;
	vertical-align: baseline;
}

::selection
{
	background: #149077;
	color: #FFF;
}

::-moz-selection
{
	background: #149077;
	color: #FFF;
}

a
{
	/*color: #16A085;*/
	text-decoration: none;
}

	a:hover, a:visited, a:focus, a:active, a:link
	{
		/*color: #444;*/
		text-decoration: none;
	}

/* ==================================================
   Default Typography
================================================== */

p
{
	margin: 0 0 20px 0;
}

strong
{
	font-weight: 600;
}

em
{
	font-style: italic;
}
h1 {
	font-family: "Changa";
}
h1, h2, h3
{
	font-size: 60px;
	line-height: 60px;
	margin: 0;
	letter-spacing: -1px;
	font-weight: 300;
	text-transform: uppercase;
}

	h2
	{
		font-size: 24px;
		line-height: 38px;
	}
		
	h3
	{
		font-size: 32px;
		line-height: 32px;
	}

/* ==================================================
   Background Colours
================================================== */

.colour1
{
	background: #453a34;
}

.colour2
{
	background: #ed7906;
}

.colour3
{
	background: #EEE;
}

.colour4
{
	background: #ebe5df;
}


/* ==================================================
   Separator Arrows
================================================== */

.arrow-separator
{
	position: relative;
	top: -1px;
}

	.arrow-separator:after
	{
		top: 100%;
		border: solid transparent;
		content: " ";
		height: 0;
		width: 0;
		position: absolute;
		pointer-events: none;
		border-width: 12px;
		left: 50%;
		margin-left: -12px;
		z-index: 11;
	}
	
		.arrow-white:after
		{
			border-color: #FFF rgba(255,255,255,0) rgba(255,255,255,0) rgba(255,255,255,0); /** Using RGB to remove dark line in Firefox **/
		}
		.arrow-black:after
		{
			border-color: #000 rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0);
		}
		.arrow-milk:after
		{
			border-color: #ebe5df rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0);
		}
		
		.arrow-theme:after
		{
			border-color: #453a34 rgba(69,58,52,0) rgba(69,58,52,0) rgba(69,58,52,0);
		}
		
		.arrow-themelight:after
		{
			border-color: #ed7906 rgba(254,92,0,0) rgba(254,92,0,0) rgba(254,92,0,0);
		}

		.arrow-grey:after
		{
			border-color: #EEE rgba(238,238,238,0) rgba(238,238,238,0) rgba(238,238,238,0);
		}

		.arrow-ground:after
		{
			border-color: #453a34 rgba(238,238,238,0) rgba(238,238,238,0) rgba(238,238,238,0);
		}

/* ==================================================
   General Layout Styles
================================================== */

.fullwidth
{
	width: 100%;
	/*padding: 60px 30px;*/
	min-width: 280px;
	padding: 60px 0;
}

.fullwidth.headercontainer
{
	padding-top: 0;
}
	.fullwidth .bodycontainer
	{
		margin: 0 auto;
		width: 100%;
		max-width: 1000px;
		text-align: center;
	}
	
#topcontainer
{

}

	#topcontainer h1
	{
		padding: 6px 0 10px 0;
		margin-bottom: 0;
		letter-spacing: -1.5px;
		color: #fff;
		font-weight: 400;
	}
	
		#topcontainer h1 span
		{
			font-size: 70px;
			line-height: 70px;
			letter-spacing: -1.4px;
			font-weight: 300;
		}
		#topcontainer h1 a:hover, #topcontainer h1  a:visited, #topcontainer h1  a:focus, a:active, #topcontainer h1  a:link
		{
			text-decoration: none;
			color: white;
		}

	#topcontainer p
	{
		margin-bottom: 0;
		color: #999;
		text-align: center;
	}

	#topcontainer p span
	{
		font-size: 90px;
		line-height: 90px;
		color: #1abc9c;
	}
	
#countdown
{
	color: #FFF;
}

	#countdown #countdowncont
	{
		width: 100%;
		max-width: 700px;
		margin: 0 auto;
	}

		#countdown #countdowncont ul#countscript li
		{
			float: left;
			width: 25%;
			padding: 30px 0;
			margin: 0;
			list-style-type: none;
		}

			#countdown #countdowncont ul#countscript li span
			{
				font-size: 80px;
				line-height: 80px;
				font-weight: 300;
				color: #FFF;
			}

			#countdown #countdowncont ul#countscript li p
			{
				color: rgba(255, 255, 255, 0.6);
				font-weight: 300;
				text-transform: uppercase;
				font-size: 18px;
				line-height: 18px;
				margin: 0;
			}
		
#maincont
{
	color: #FFF;
}

	#maincont a
	{
		color: #FFF;
		opacity: 0.6;
	}
	
		#maincont a:hover
		{
			opacity: 1;
		}
	
	#maincont #signupform
	{
		margin: 0 auto 20px auto;
		width: 80%;
	}

		.sb-search
		{
			position: relative;
			width: 100%;
			min-width: 50px;
			height: 50px;
			overflow: hidden;
		}

			.sb-search .sb-search-input
			{
				position: absolute;
				top: 0;
				right: 0;
				border: none;
				outline: none;
				background: #FFF;
				border: 0;
				width: 100%;
				height: 50px;
				margin: 0;
				z-index: 10;
				padding: 0 65px 0 15px;
				font-family: inherit;
				font-size: 20px;
				color: #333;
				
				-webkit-border-radius: 0;
				-moz-border-radius: 0;
				border-radius: 0;
				
				-webkit-appearance: none;
			}

		button.formbutton, .sb-search-submit 
		{
			width: 60px;
			height: 60px;
			display: block;
			position: absolute;
			right: 0;
			top: 0;
			padding: 0;
			margin: 0;
			text-align: center;
			cursor: pointer;
		}

			.sb-search-submit
			{
				background: #FFF; /* IE needs this */
				-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; /* IE 8 */
				filter: alpha(opacity=0); /* IE 5-7 */
				opacity: 0;
				color: transparent;
				border: none;
				outline: none;
				z-index: -1;
			}
			
			button.formbutton
			{
				color: #FFF;
				background: #16A085;
				z-index: 90;
				border: 0;
				height: 50px;
			}
			
			button.formbutton span
			{
				font-size: 19px;
			}
			
				button.formbutton:hover
				{
					background: #149077;
				}
			
#quotecont
{
	padding: 30px 0;
}

	#quotecont .owl-theme .owl-controls .owl-page span
	{
		background: #CCC;
	}
	
		#quotecont .owl-theme .owl-controls .owl-page.active span,
		#quotecont .owl-theme .owl-controls.clickable .owl-page:hover span
		{
			background: #1ABC9C;
		}

#footercont
{
	position: relative;
	font-size: 18px;
	padding: 50px;
}

	#footercont #socialmedia ul
	{
		margin: 0 0 30px 0;
	}

	#footercont #socialmedia ul li
	{
		display: inline-block;
		list-style-type: none;
		margin: 0 10px;
	}

		#footercont #socialmedia ul li a
		{
			font-size: 36px;
			color: #999;
		}
		
			#footercont #socialmedia ul li a:hover
			{
				color: #1ABC9C;
			}
			
	#footercont p.backtotop
	{
		margin: 0 0 40px 0;
	}

		#footercont p.backtotop a
		{
			position: relative;
			display: inline-block;
			background: #EEE;
			font-size: 32px;
			line-height: 32px;
			color: #999;
			padding: 5px 12px;
			
			-webkit-border-radius: 4px;
			-moz-border-radius: 4px;
			border-radius: 4px;
		}
		
			#footercont p.backtotop a:hover
			{
				background-color: #1ABC9C;
				color: #FFF;
				text-decoration: none;
			}
			
				#footercont p.backtotop a:active
				{
					top: 2px;
				}

/* ==================================================
   Responsive Media Queries - Tablets
================================================== */

@media screen and (max-width: 768px)
{

	body
	{
		font-size: 23px;
		line-height: 29px;
	}
	
	#topcontainer h1
	{
		font-size: 54px;
		line-height: 54px;
		letter-spacing: -1.2px;
	}

		#topcontainer h1 span
		{
			font-size: 70px;
			line-height: 70px;
		}
	
	#countdown #countdowncont
	{
		max-width: 400px;
	}
	
		#countdown #countdowncont ul#countscript li
		{
			width: 50%;
			padding: 10px 0;
		}
		
			#countdown #countdowncont ul#countscript li span
			{
				font-size: 70px;
				line-height: 70px;
			}
			
	#quotecont
	{
		padding: 15px 0;
	}
		
	#footercont
	{
		font-size: 19px;
	}
		
		#footercont #footerleft
		{
			float: none;
			padding: 30px 0;
			text-align: center;
		}
		
			#footercont #socialmedia ul li a
			{
				font-size: 32px;
			}
		
		#footercont #footerright
		{
			float: none;
		}
	
}

/* ==================================================
   Responsive Media Queries - Mobiles
================================================== */

@media screen and (max-width: 480px)
{	

	body
	{
		font-size: 21px;
		line-height: 27px;
	}
	
	#topcontainer h1
	{
		font-size: 36px;
		line-height: 36px;
		
	}

		#topcontainer h1 span
		{
			font-size: 50px;
			line-height: 50px;
		}
	
	#countdown #countdowncont ul#countscript li
	{
		padding: 6px 0;
	}
	
		#countdown #countdowncont ul#countscript li span
		{
			font-size: 62px;
			line-height: 62px;
		}

		#countdown #countdowncont ul#countscript li p
		{
			font-size: 16px;
			line-height: 16px;
		}
		
	#maincont #signupform
	{
		margin: 0 auto 20px auto;
		width: 100%;
	}
	
	#quotecont
	{
		padding: 5px 0;
	}
	
	#footercont #socialmedia ul li
	{
		margin: 0 5px;
	}
	
		#footercont #socialmedia ul li a
		{
			font-size: 28px;
		}
}



#topcontainer img
{
	width: 10%;
	display: inline;
}



.pagination-outer{ text-align: center; }
.pagination{
	font-family: 'Ubuntu', sans-serif;
	display: inline-flex;
	position: relative;
}
.pagination li a.page-link{
	color: #fff;
	background-color: #333;
	font-size: 20px;
	font-weight: 500;
	line-height: 39px;
	height: 40px;
	width: 40px;
	padding: 0;
	margin: 0 5px;
	border: none;
	border-radius: 7px;
	overflow: hidden;
	position: relative;
	z-index: 1;
	transition: all 0.3s ease 0s;
}
.pagination li a.page-link:hover,
.pagination li a.page-link:focus,
.pagination li.active a.page-link:hover,
.pagination li.active a.page-link{
	color: #fff;
	background: #f45c27;
}
.pagination li a.page-link:before,
.pagination li a.page-link:after{
	content: '';
	background: #555;
	height: 100%;
	width: 7px;
	border-radius: 10px 0 0 10px;
	opacity: 1;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	transition: all 0.4s ease 0s;
}
.pagination li a.page-link:after{
	border-radius: 0 10px 10px 0;
	left: auto;
	right: 0;
	top: auto;
	bottom: 0;
}
.pagination li a.page-link:hover:before,
.pagination li a.page-link:focus:before,
.pagination li.active a.page-link:before{
	background-color: #cd5a11;
	border-radius: 10px 10px 0 0;
	width: 100%;
	height: 7px;
}
.pagination li a.page-link:hover:after,
.pagination li a.page-link:focus:after,
.pagination li.active a.page-link:after{
	background-color: #cd5a11;
	border-radius: 0 0 10px 10px;
	width: 100%;
	height: 7px;
}

.selection-head h2 {
	font-size: 5vw;
	line-height: 5vw;
	color: #333;
	text-align: center;
	padding-top: 100px;
}

@media only screen and (max-width: 480px){
	.pagination{
		font-size: 0;
		border: none;
		display: inline-block;
	}
	.pagination li{
		display: inline-block;
		vertical-align: top;
		margin: 0 0 10px;
	}
}

.pagination li.disabled {
	visibility: hidden;
}

.infoblock {
	margin: 5px 10%;
	padding: 5px 20px;
}

.ad_for_error_wrapper {
	text-align: center;
	width: 300px;
	margin: 30px auto 0;
}

.ad_for_button_wrapper {
	text-align: center;
	width: 350px;
	margin: 30px auto 0;
}

.ad_for_button_wrapper > iframe {
	scale: 109%;
	margin: 0 auto;
}

article.description, .cluster-cta, .artist-bio-cta {
	min-width: 350px;
	max-width: 47%;
	margin: 20px auto 20px;
	font-size: 16px;
	background: #6f6565;
	color: black;
	padding: 20px 20px 20px;
	text-align: justify;
	line-height: 20px;
}
article.description {
	margin-bottom: 78px;
}
article.description p, article.description li, .cluster-cta p, .cluster-cta li, .artist-bio-cta p {
	padding: 20px;
	border: white 5px;
	display: block;
	background: #e3dbd5;
	border-radius: 1px;
	margin: 0 0 20px 0;
	font-family: "Source Sans Pro";
	font-style: italic;
}

article.description>p:last-child, .cluster-cta>p:last-child, .artist-bio-cta p:last-child{
	margin: 0;
	font-weight: normal;
	font-size: 18px;
	line-height: 22px;
	font-style: normal;
}
article.description>p:first-child, .cluster-cta>p:first-child, .artist-bio-cta p:first-child{
	font-weight: normal;
	font-size: 18px;
	line-height: 22px;
	font-style: normal;
}

.cluster-cta, .artist-bio-cta {
	width: 350px;
}

.article-separator {
	margin-top: 35px;
}

article.description p strong, .cluster-cta p strong {
	display: block;
	border-bottom: 2px #b9aea8 solid;
	margin-bottom: 10px;
	font-style: normal;
	line-height: 52px;
	text-align: center;
	margin-top: -25px;
}

.fullwidth.article {
	padding: 45px;
}
.fullwidth.article p{
	font-style: normal;
	font-size: larger;
	color: black;
	padding: 50px 20px 0;
	line-height: 60px;
	margin-top: 20px;
}
.fullwidth.article h3 {
	text-align: center;
	line-height: 60px;
}

#footercont a, #footercont a:hover, #footercont a:visited, #footercont a:focus, #footercont a:active, #footercont a:link
{
	color: #ff9642;
}
/** повторяет score_thumb, потому что используется на detailed */
img.pic {
    width: 100%;
}

.score h2 {
    text-decoration: none;
    text-transform: none;
    color: #fbfbfb;
    line-height: 1em;
    text-align: center;
    background: #685959;
    margin: 0;
}
.thumb h2 {
    font-size: 17px;

    padding: 8px;
    margin: 0;
}
.detailed h2 {
    padding: 15px;
    display: block;
    min-height: 70px;
}
/** повторяет score_thumb, потому что используется на detailed */
.caption {
    text-align: center;
}

.info {
    color: #3c0000;
    padding: 15px 25px;
    background: #ff9c3a61;
    height: 110px;
}
.detailed.score:after
{
    content: "";
    height: 0;
    width: 350px;
    position: absolute;
    border-top: 175px solid #ff9c3a61;
    border-left: 175px solid transparent;
    border-right: 175px solid transparent;
    z-index: 99;
}

.detailed.score {
    max-width:350px;
    margin:0 auto;

    margin-bottom: -50px;
    z-index: 1;
    position: relative;
    bottom: -60px;
}
article.detailed.score {
    background: none;
}

.download-button
{
    max-width: 350px;
    margin: 20px auto;
    text-align: center;

    background: #ed7906;
    height: 70px;
    line-height: 30px;

    color: white;

    font-size: 34px;
    font-family: 'Changa';
}
.download-button .button {
    padding: 10px;
    background: #ed7906;
}

/** повторяет score_thumb, потому что используется на detailed */
.image-outer {
    background: #fff;
}

#mainCarousel {
    /*width: 600px;*/
    margin: 0 auto 1rem auto;

    --carousel-button-color: #170724;
    --carousel-button-bg: #fff;
    --carousel-button-shadow: 0 2px 1px -1px rgb(0 0 0 / 20%),
    0 1px 1px 0 rgb(0 0 0 / 14%), 0 1px 3px 0 rgb(0 0 0 / 12%);

    --carousel-button-svg-width: 20px;
    --carousel-button-svg-height: 20px;
    --carousel-button-svg-stroke-width: 2.5;
}

#mainCarousel .carousel__slide img {
    min-height: 300px;
}

#mainCarousel .carousel__slide {
    width: 100%;
    padding: 0;
}

#mainCarousel .carousel__button.is-prev {
    left: -1.5rem;
}

#mainCarousel .carousel__button.is-next {
    right: -1.5rem;
}

#mainCarousel .carousel__button:focus {
    outline: none;
    box-shadow: 0 0 10px 3px #f45c276b;
}

#thumbCarousel .carousel__slide {
    opacity: 0.5;
    padding: 0;
    margin: 0.25rem 0.25rem 0.25rem 0;
    width: 113px;
    height: 164px;
    cursor: pointer;
}

#thumbCarousel .carousel__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.carousel__slide img {

    background: #fff;
    margin:0 auto;
}

#thumbCarousel .carousel__slide.is-nav-selected {
    opacity: 1;
}


.max-w-xl {
    max-width: 350px;
}

.content-container
{
    position: relative;
    top: -60px;
}
.btn-1-2 {
    text-decoration: none;
    line-height: 80px;
    box-sizing: border-box;
    transition: 1s ease-in-out;
    font-family: "Open Sans", Helvetica, arial, sans-serif;
    text-align: center;
    color: #a18ca2;
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 80px;
    max-width: 350px;
    margin: 1rem auto;
    text-transform: uppercase;
    border: 1px solid currentColor;
}
a.btn-1-2, a.btn-1-2:visited, a.btn-1-2:focus, a.btn-1-2:active, a.btn-1-2:link
{
    color: #a18ca2;
}
.btn-1-2:before, .btn-1-2:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-top: 0;
    border-bottom: 80px solid #564858;
    z-index: 0;
    box-sizing: border-box;
    transition: 0.5s ease-in-out;
}
.btn-1-2:before {
    right: -90px;
    border-right: 80px solid transparent;
    transform: translateX(-100%);
}
.btn-1-2:after {
    left: -90px;
    border-left: 80px solid transparent;
    transform: translateX(100%);
}
a.btn-1-2:hover {
    color: #e3dde4;
}
.btn-1-2:hover:before {
    transform: translateX(-45%);
}
.btn-1-2:hover:after {
    transform: translateX(45%);
}
.btn-1-2>span {
    position: relative;
    z-index: 1;
}
section.teasers {
    width: 90%;
    margin: 110px auto 0;
}

article.post-teaser .post-title>a {
    color: #333;
}

article.post-teaser .post-meta, article.post .post-meta {
    font-size: 11px;
}
article.post .post-meta {
    text-align: center;
}

ul.post-tags {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
    font-size: 12px;

    flex-wrap: wrap;
    align-items: flex-start;
}

ul.post-tags li {
    background: #f0f0f0;
    padding: 0 4px;
    border-radius: 4px;
}

ul.post-tags li>a, ul.post-tags li>a:hover, ul.post-tags li>a:visited {
    color: #bd6a28;
}

.post-excerpt, .post-text {
    color: black;
}

.post-teaser {
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* Пунктирная линия */
.post-teaser:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: repeating-linear-gradient(
            to right,
            rgba(0, 0, 0, 0.3) 0,
            rgba(0, 0, 0, 0.3) 5px,
            transparent 5px,
            transparent 12px
    );
}

.blog h2 {
    color: #333;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 5%;
    box-sizing: border-box;
    font-size: clamp(20px, 4vw, 42px);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

article.post .post-meta>time {
    font-size: 16px;
}
article.post .post-meta {
    margin-top: 25px;
}
article.post .post-text {
    padding: 0 15%;
    text-align: justify;
}
article.post footer {
    padding: 0 15%;
    margin-top: 60px;
}


article.category-description .post-text {
    text-align: justify;
    margin: 30px 15%;
    padding: 30px 50px;
    background: #d6dee6;
    border-radius: 15px;
}

article.category-description footer {
    padding: 0 15%;
    margin-top: 60px;
}
.post-meta .separator {
    margin: 0 0.5rem;
    color: #ccc;
}

.post-text {
    margin-top: 115px;
}

.post-header {
    width: 100%;
}

.hori-separator {
    position: relative;
    margin: 30px 0;
}

.hori-separator::after {
    content: "";
    display: block;
    width: 250px;
    height: 2px;
    background: #8B4513;
    margin: 0 auto;
}

.article-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.article-categories {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 15px;
}

.article-category {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 10px;
    transition: color 0.3s ease;
    font-family: sans-serif;
}

.article-category:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 6px;
    height: 6px;
    background-color: #000;
}

.article-category:last-child {
    padding-right: 0;
}

.article-category:hover {
    color: #e74c3c;
}

@media (max-width: 480px) {
    .article-categories {
        flex-direction: column;
        gap: 10px;
    }

    .article-category:not(:last-child)::after {
        display: none;
    }

    .article-category {
        padding: 5px 0;
    }
}

.article-sheet-music {
    margin-top: 115px;
}

.article-sheet-music h3 {
    text-align: center;
    margin-bottom: 60px;
}

.music-list {
    list-style: none;
    padding: 30px;
    font-family: Arial, sans-serif;
    font-size: 18px;
    background: #dbd81dc4;
    border-radius: 30px;
    margin-top: 50px;
    box-shadow: inset 2px 2px 26px 4px #DDDCD9;
}

.music-list li {
    padding: 10px 0;
    padding-left: 40px;
    position: relative;
    /*border-bottom: 1px dashed #eee;*/
}

.music-list li::before {
    content: "♪";
    font-size: 24px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #885050;
}

.post-content .artist-pic-container {
    text-align: center;
    margin-top: 35px;
}

.post-content .artist-pic-container > img {
    width: 250px;
    margin-bottom: -40px;
}

.post-thumbnail {
    flex: 0 0 auto;
    max-width: 200px;
}

.post-thumbnail img {
    display: block;
    max-width: 100%;
    height: auto;
}

.subhead {
    text-align: justify;
    margin: 30px 15%;
    padding: 30px 50px;
}

.category-description  h3
{
    text-align: center;
    margin-bottom: 50px;
}

.category-description .post-text h3
{
    margin: 0 0 50px;
}

.post-text h3 {
    font-size: 32px;
    line-height: 32px;
    margin: 80px 0 30px 0;
    color: #604e3d;
}

@media (max-width: 480px) {
    .teasers {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        padding: 2rem;
        justify-content: center;
    }

    .post-teaser {
        width: 320px;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .post-teaser:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    }

    .post-thumbnail img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    .post-content {
        padding: 1rem;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .post-title a {
        font-size: 1.1rem;
        font-weight: 600;
        color: #2c3e50;
        text-decoration: none;
    }

    .post-title a:hover {
        text-decoration: underline;
    }

    .post-meta {
        font-size: 0.85rem;
        color: #888;
    }

    .separator {
        margin: 0 0.3em;
        color: #ccc;
    }

    .read-time {
        color: #555;
    }

    .post-excerpt p {
        font-size: 0.95rem;
        color: #333;
        line-height: 1.4;
    }

    .post-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.4em;
        margin-top: 0.5rem;
        padding: 0;
        list-style: none;
    }

    .post-tags li a {
        font-size: 0.75rem;
        background: #f1f1f1;
        color: #333;
        padding: 0.3em 0.6em;
        border-radius: 5px;
        text-decoration: none;
        transition: background 0.2s ease;
    }

    .post-tags li a:hover {
        background: #dcdcdc;
    }

    .post-thumbnail {
        width: 100%;
        overflow: hidden;
        max-width: none;
    }

    .subhead {
        padding: 0;
    }
    article.category-description .post-text {
        margin: 0;
    }
    article.post .post-text {
        padding: 0;
    }
}