.article-template {
    max-width: 950px;
    margin: 0 auto;
    padding-top: 50px;
}

h1.post-title {
    font-size: 55px;
    text-transform: uppercase;
    padding: 5px 15px;
    max-width: max-content;
    background-color: var(--yellow-site);
}

h2.wp-block-heading {
    font-size: 30px;
    text-transform: uppercase;
    padding: 5px 15px;
    margin-bottom: 25px;
    max-width: max-content;
    background-color: var(--light-blue-color);
}

.article-template p {
    text-align: justify;
}

.article-template .wp-block-list {
    margin-left: 20px;
    margin-bottom: 20px;
}

.article-template .wp-block-columns {
    padding-bottom: 50px;
}

/***********************************************/
/******************* Header ********************/
/***********************************************/

.wp-singular header {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/***********************************************/
/******************* image *********************/
/***********************************************/

.wp-block-image figcaption {
    font-size: 0.75rem;
    margin-top: 5px;
    font-style: italic;
}







/***********************************************/
/**************** Hero Section *****************/
/***********************************************/

.hero-section {
    width: 100%;
    height: 500px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(29, 39, 49, 0.5);
    z-index: 0;
    mix-blend-mode: multiply;
}

.hero-section h1 {
    color: var(--dark-blue-color);
    z-index: 1;
}

.hero-section h2 {
    color: white;
    z-index: 1;
}

.hero-section h1 {
    padding: 5px 15px;
    background-color: var(--yellow-site);
}