/* Author : Anthea Matillano */
/* Version : 0.0.2 */
/* Date : 31.01.2025 */
/* -------------------------- */

/* =========HIDDEN============= */
.site-branding a, .entry-footer, .site-footer, .entry-title {
    display: none;
}
/* ============================= */

/* ------FONTS------ */
body {
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
    scroll-behavior: smooth;
    letter-spacing: 0.3px;
 }
 main {
    padding: 5vh 10vh;
 }
.entry-header h1 {
    font-size: 18px;
    font-weight:400 ;
}
h1 {
    font-size: 128px;
}
h2 {
    font-size: 36px;
}
.entry-content h1 {
    line-height: 10px;
}
.left {
    margin-left: -10px;
}
.job-title {
    margin-top: -20px;
    font-size: 24px;
    font-weight: bold;
}
.bio {
    font-size: 24px;
    margin-top: -10px;
    max-width: 75vw;
    text-align: center;
    margin: 0 auto;
}
/* ------blocks------ */
.wp-block-group {
    margin: 45vh 0;
}
.wp-block-button a {
    color: #000;
    background-color: #fff;
    font-size: 12px;
    font-weight: 400;
    border: solid thin #000;
}
.wp-block-button a:hover {
    background-color: #000;
    color: #fff;
}
.wp-block-button {
    text-align: center;
    padding-right: 20px;
}

.wp-block-media-text > .wp-block-media-text__content {
    padding: 0 60px 0 0 !important; 
    /* disables text padding in block group */
}
/* .wp-block-file a {
   padding-top: 40px;
   padding-left: 10px;
    color:#000
} */

/* ------ footer/widget ------- */
.widget-area {
    margin-bottom: 5vh;
}
.wp-block-column-is-layout-flow {
    display: flex;
    justify-content: center;
}
.wp-block-file {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}
.widget-area a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
}
.widget-area a:hover {
    color: cornflowerblue;
}

/* ------- RESPONSIVE ------- */

@media screen and (max-width: 600px) {
    main {
        padding: 2.5vh 5vh;
    }
    h1 {
        font-size: 45px;
    }
    .wp-block-media-text > .wp-block-media-text__content, :where(.wp-block-button__link) {
        padding: 0 !important;
    }
    .wp-block-column-is-layout-flow {
        padding-bottom: 10vh;
    }
    .bio {
        font-size: 18px;
    }
    .wp-block-button a {
        padding: 16px 32px !important;
    }
    .left {
        margin-left: -4px;
    }
    .job-title {
        margin-left: -2px;
    }
 }
 @media screen and (max-width:400px) {
    .wp-block-button {
        padding-right: 12px;
    }
 }