/*
 Theme Name:   Phoenix TCH
 Theme URI:    https://tpsghull.com
 Description:  Theme for Phoenix Trans Community, Hull. Based on GeneratePress
 Author:       Tobias Alexander
 Author URI:   https://phoenixtch.com
 Template:     generatepress
 Version:      0.1
*/

/**GENERAL STYLES**/

.inside-header {
    padding: 0;
}

.pthc-emphasis {
    color: yellow;
}



/** HOME STYLES **/
.home h1 {
    text-align: center;
}

@media (max-width: 320px) {
    .home h1 {
        font-size: 1.5rem;
    }

    .home h2 {
        font-size: 1.25rem;
    }
}

.site-main {
    padding-inline: 2em;
}

/**SOCIAL ICONS**/

.main-navigation .social_link_span {
    display: block;
    line-height: 60px;
    
}

.social_link {

    display: grid;
    width: 1.5rem;
    align-items: center;
    height: 1.5rem;
}

.social_link_description {
    display: none;
}


.main-navigation.main-navigation.toggled .social_link {
    display: inline-block;
    margin-inline-end: 1.5rem;

}
/** SOCIAL IN MOBILE MENU **/

.main-navigation.toggled .social_link_span {
    display: flex;
    align-items: center;;
}

.main-navigation.toggled .social_link_description {
    display: inline-block;
}


/**TEAM PAGE STYLES**/

.ptch-team-title {
    text-align: left;
}

.ptch-team-photo {
    display: block;
    margin: 0 auto;
    position: relative;
}

.ptch-team-photo::after {
    content: '';
    position: absolute;
    top: -4px;
    right: -4px;
    bottom: -4px;
    left: -4px;

    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 9999px;
    width: 105%;
    height: 105%;

}

@media (max-width: 768px) {
    .ptch-team-title {
        text-align: center;
    }

}