.article {
width:100%;
padding:50px 15% 50px 25%;
color: #033b80;	
font-size:20px;
font-weight:300;
line-height:35px;
margin-top:80px;
}


.article h1 {
font-size:45px;
font-weight:500;
margin-top:40px;
line-height:50px;
margin-bottom: 50px;
font-family: var(--font-title);
}

.article h3 {
    font-weight: 500;
    border-left: 2px solid #033b80;
    padding-left: 20px;
	margin:20px 0;
	font-size:24px;
}

.article img {
width:100%;
height:auto;
margin:20px 0;
}

.article a {
text-decoration: underline;
}

.article strong {
font-weight: 500;
}

.article p {
margin-bottom:20px;
}

.article em,
.article i {
    font-style: italic;
}

/* Underline */
.article u {
    text-decoration: underline;
}


.subsection-title {
	color: #0c4d80;	
	font-size:45px;
	font-weight:700;
}


.share-box {
width:100%;
padding:50px 15% 50px 25%;

}

.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-buttons a,
.share-buttons button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;
    padding: 0;

    border: #0c4d80;
    border-radius: 50%;

    background: #0c4d80;
    color: #fff;

    text-decoration: none;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    transition: .2s;
}

.share-buttons i {
    line-height: 1;
}

.share-buttons a:hover,
.share-buttons button:hover {
    background: var(--color-main-menu);
    color: #fff;
}

a.category {
    padding: 10px 16px;
    border: 2px solid #033b80;
    border-radius: 999px;
    text-decoration: none;
    color: #fff;
	background: #033b80;
	font-size:17px;
}


.article iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
	margin:20px 0;
}

.article .wp-block-embed iframe {
    width: 100%;
    height: 450px;
    border: 0;
	margin:20px 0;
}

.circle {
    width: 300px;
    height: 300px;
    border: 2px solid #7f904a;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    overflow: hidden;
}

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


@media (max-width: 768px) {
	.article {
		padding:0;
		font-size:18px;
	}
	
	.article h1 {
font-size:35px;
line-height:40px;

}
}