.banner-hero {
    height: 490px;
    background-size: cover;
    background-position: center;
}

@media (max-width: 768px) {
	.banner-hero {
		height: 400px;
	}
}

.container.single-article-content {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 15px;
}

.post-date {
    color: #5386E4;
    font-weight: 700;
    font-size: 23px;
	line-height: 1;
    margin-bottom: 45px;
	text-align: center;
}

.post-title {
	color: #081836;
    font-weight: 700;
    font-size: 40px;
	line-height: 1.2;
    margin-bottom: 35px;
	text-align: center;
}


@media (max-width: 768px) {
	.post-title {
		font-size: 26px;
	} 
}

.custom-author-box {
	display: flex;
	gap: 30px;
	align-items: center;
	padding: 15px 25px;
	background: #081836;
	border-radius: 20px;
	max-width: 576px;
	margin: 0 auto;
	
	&>.custom-author-photo {
		
		&>img {
			width: 91px;
			object-fit: cover;
			border-radius: 50%;
		}
	}
	
	&>.custom-author-info {
		&>.custom-author-title{
			color: #F5F4FF;
			font-weight: 500;
			font-size: 18px;
			line-height: 1;
			margin: 0 0 5px;;
		}
		&>.custom-author-name{
			color: #F5F4FF;
			font-weight: 700;
			font-size: 30px;
			line-height: 1.2;
			margin: 0 0 5px;;
		}
		&>.custom-author-role{
			color: #F5F4FF;
			font-weight: 500;
			font-size: 16px;
			line-height: 1;
			margin: 0;
		}
	}
}


@media (max-width: 568px) {
	.custom-author-box {
		align-items: center;
		padding: 10px 15px;
		background: #081836;
		border-radius: 20px;
		max-width: 90%;
		margin: 0 auto;

		&>.custom-author-photo {

			&>img {
				width: 91px;
				object-fit: cover;
				border-radius: 50%;
			}
		}

		&>.custom-author-info {
			&>.custom-author-title{
				color: #F5F4FF;
				font-weight: 500;
				font-size: 16px;
				line-height: 1;
				margin: 0 0 5px;;
			}
			&>.custom-author-name{
				color: #F5F4FF;
				font-weight: 700;
				font-size: 20px;
				line-height: 1.2;
				margin: 0 0 5px;;
			}
			&>.custom-author-role{
				color: #F5F4FF;
				font-weight: 500;
				font-size: 14px;
				line-height: 1;
				margin: 0;
			}
		}
	}
}

.post-author {
    font-weight: 400;
    font-size: 23px;
	line-height: 1;
    color: #5386E4;
	margin-bottom: 70px;
	text-align: center;
}

.post-content {
    margin-top: 30px;
    line-height: 1.6;
    font-size: 20px;
    color: #11316C;
	
	figure.wp-block-image {
		& > img {
			border-radius: 40px;
		}
	}
}

@media (max-width: 768px) {
	.post-content {
		figure.wp-block-image {
			& > img {
				border-radius: 20px;
				height: 500px;
				object-fit: cover;
			}
		}
	} 
}

.custom-cta-container {
    padding: 40px;
    text-align: center;
    margin-top: 50px;
}

@media (max-width: 768px) {
	.custom-cta-container {
		padding: 40px 10px;
	}
}


.custom-cta-container h2 {
    font-weight: 700;
    font-size: 35px;
    margin-bottom: 25px;
	color: #5386E4;
	line-height: 1.2;
	max-width: 814px;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}


.custom-cta-container p {
    font-size: 16px;
	color: #5386E4;
	line-height: 1.1;
	font-weight: 500;
    margin-bottom: 30px;
	max-width: 610px;
	width: 70%;
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 768px) {
	.custom-cta-container h2 {
		font-size: 30px;
		width: 100%;
	}
	
	.custom-cta-container p {
		font-size: 14px;
		width: 100%;
	}
}

.custom-cta-container a {
    background-color: #5386E4;
    color: #F5F4FF;
    padding: 12px 30px;
    border-radius: 30px;
	line-height: 1;
    text-decoration: none;
    font-weight: 700;
	transition: background-color 0.3s linear;
	
	&:hover {
		color: #F5F4FF;
		background-color: #1949A1;
	}
}