/* SITE-WIDE WIDTH - Makes every page 1200px wide */
.wrap {
    max-width: 1200px !important;
}

/* DESKTOP LAYOUT - Removes the narrow columns on all pages */
@media screen and (min-width: 48em) {
    #primary, 
    .page-one-column .panel-content .wrap, 
    .page-template-default #primary,
    .page-full-width #primary {
        width: 100% !important;
        max-width: 100% !important;
        float: none !important;
    }

    .entry-header, 
    .entry-content,
    .page-one-column .entry-header, 
    .page-one-column .entry-content {
        width: 100% !important;
        float: none !important;
    }
}

/* FRONT PAGE PANELS - Increase text size specifically for home sections */
.panel-content .entry-content p, 
.panel-content .entry-summary p,
.twentyseventeen-panel .entry-content p {
    font-size: 28px !important;
    line-height: 1.6 !important;
}

/* MARGINS - Remove the huge gaps at the top */
.site-content {
    padding-top: 20px !important;
}

.entry-header {
    margin-bottom: 0 !important;
    padding-bottom: 10px !important;
}

/* SITE TITLE Increase Site Title size */
.site-title {
    font-size: 4rem !important; 
    font-weight: 800 !important;
    text-transform: none !important;
}

/* TAGLINE TITLE Increase Site Tagline size */
.site-description {
    font-size: 1.5rem !important;
    font-weight: normal !important;
}

/* PAGE TITLES, Headings, and Menu Links */
.entry-title, 
.main-navigation a, 
h1, h2, h3, h4, h5, h6 {
    color: #446EAC !important;
    font-size: 1.3rem !important;
    font-weight: bold !important;
    text-transform: none !important;
}

/* HOVER EFFECT FOR ABOUT US NAMES */
.name-hover {
    box-shadow: none !important;
    text-decoration: none !important;
    color: #446EAC !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
}

.name-hover:hover {
    color: #063863 !important;
    transform: scale(1.05) !important;
    text-shadow: 0px 2px 4px rgba(0,0,0,0.2) !important;
}

/* FORCE: Institutional names set to gray, overriding WordPress defaults */
.alliance-name a.name-hover {
    color: #666666 !important; /* Mid-gray color */
    text-decoration: none !important;
    transition: color 0.2s ease;
}

/* Hover state for the text link */
.alliance-name a.name-hover:hover {
    color: #333333 !important; /* Darker gray on hover */
    text-decoration: underline !important;
}