/* START : teaser-block */
.teaser-section h2 {
    font-weight: 700;
    margin: 20px 0;
    font-family: 'Gotham A', 'Gotham B', Arial, Sans-Serif;
}

.teaser-section {
    margin-bottom: 60px;
}

.teaser-section a {
    color: inherit;
    text-decoration: none;
}

.teaser-card {
    margin-bottom: 30px;
}

.teaser-card h4 {
    font-weight: 700;
    font-family: 'Gotham A', 'Gotham B', Arial, Sans-Serif;
    margin: 16px 0 0;
    font-size: 16px;
    line-height: 18px;
}

.teaser-card h3 {
    margin: 5px 0 7px;
    font-size: 24px;
    line-height: 24px;
    font-family: 'Guardian Egyptian Web', Serif;
    font-weight: normal;
}

.teaser-card p {
    font-size: 18px;
    line-height: 22px;
}

.teaser-card img {
    width: 100%;
    object-fit: cover;
    height: 184px;
}

@media (max-width:992px) {
    .teaser-card {
        margin-bottom: 30px;
        border-bottom: 1px solid gray;
    }
}

@media (max-width:767px) {
    .teaser-section {
        margin-bottom: 30px;
    }
}

/* END : teaser-block */

/* START : Profile */
.profile {
    margin-bottom: 60px;
}

.profile-header {
    border-bottom: 1px solid #000;
    padding: 60px 0;
    position: relative;
}

.profile-header h3 {
    font-family: 'Gotham A', 'Gotham B', Arial, Sans-Serif;
    font-weight: 700;
    font-size: 0.9em;
    margin: 0 0 15px;
    padding-right: 220px;
}

.profile-header h1 {
    font-weight: normal;
    font-family: 'Guardian Egyptian Web';
    font-size: 2.9em;
    line-height: 1.1em;
    margin: 0;
    padding-right: 220px;
}

.author-image {
    width: 180px;
    height: 180px;
    border-radius: 100%;
    position: absolute;
    right: 0;
    top: 50%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.profile-content {
    padding: 40px 0 20px;
}

.profile-social {
    display: flex;
    align-items: center;
}

.profile-social-link {
    line-height: 1;
    color: #000;
    font-family: 'Gotham A', 'Gotham B', Arial, Sans-Serif;
    font-weight: 700;
    font-size: 0.6em;
    display: flex;
    align-items: center;
    margin-right: 5px;
}

.profile-social-link.mail {
    margin-right: 50px;
}

.profile-social-link:hover,
.profile-social-link:focus {
    text-decoration: none;
    color: inherit;
}

.profile-social-link i {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 100%;
    background: rgb(153, 177, 154);
    color: #fff;
    -webkit-transition: background-color 0.5s ease;
    transition: background-color 0.5s ease;
    cursor: pointer;
    margin-right: 10px;
}


.profile-social-link:focus i,
.profile-social-link:hover i {
    background-color: #000000;
}

@media (max-width: 991px) {
    .author-image {
        width: 120px;
        height: 120px;
    }

    .profile-header h1,
    .profile-header h3 {
        padding-right: 120px;
    }

    .profile-header {
        padding: 30px 0;
    }
}

@media (max-width: 767px) {
    .profile-header h1 {
        font-size: 38px;
    }

    .author-image {
        position: relative;
        top: 0;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        margin-bottom: 20px;
    }

    .profile-header {
        padding: 20px 0;
    }

    .profile-header h1,
    .profile-header h3 {
        padding-right: 0;
    }

    .profile-content {
        padding-top: 20px;
    }

    .profile-social {
        flex-wrap: wrap;
    }

    .profile-social-link {
        font-size: 0;
    }

    .profile-social-link.mail {
        margin-right: 5px;
    }
}

/* END : Profile */