/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

h1, h2, h3, h4, h5, h6, 
.entry-title, .site-title {
    font-weight: 500;
}


h2 {
    font-size: 1.75rem; 
}

h3 {
    font-size: 1.5rem; 
}

h4 {
    font-size: 1.25rem; 
}

h5 {
    font-size: 1.125rem; 
}

h6 {
    font-size: 1rem; 
}


@media (max-width: 768px) {
    h1, .entry-title {
        font-size: 1.875rem; 
    }
    h2 {
        font-size: 1.5rem; 
    }
    h3 {
        font-size: 1.25rem; 
    }
}

/* Grid & Formula E-E-A-T Author Box */

.gf-author-avatar {
    flex-shrink: 0; /* Prevents the text from squishing the container */
}




.gf-author-box {
    display: flex;
    align-items: center;
    background-color: #F7FAFC; /* Ultra-light grey/white */
    border-left: 4px solid #00B4D8; /* Cerulean Blue accent */
    padding: 30px;
    margin-top: 50px;
    margin-bottom: 30px;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
}

.gf-author-avatar img {
    border-radius: 50%;
    width: 90px;
    height: 90px;
    min-width: 90px; /* Forces the width to stay perfectly locked */
    object-fit: cover;
    border: 2px solid #FFFFFF;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.gf-author-content {
    margin-left: 24px;
}

.gf-author-name {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 700;
    color: #4B5C7A; /* Slate Indigo */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gf-author-bio {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #334155;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .gf-author-box {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
    .gf-author-content {
        margin-left: 0;
        margin-top: 16px;
    }
}

