/*
   Styles for Awards page

          Dark: #4f4a21
         Light: #9e9c70
   20% lighter: #d1cfa3
*/

/* Awards page specific styles */

/* Navigation section */
#content .awards-navigation {
    background-color: #f8f8f8;
    border: 1px solid #d1cfa3;
    border-radius: 5px;
    padding: 1em;
    margin-bottom: 2em;
}

#content .awards-navigation p {
    margin: 0 0 0.5em 0;
    font-weight: 500;
}

#content .awards-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

#content .awards-navigation li {
    margin: 0.7em 0;
}

#content .awards-navigation a {
    color: #4f4a21;
    text-decoration: none;
    padding: 0.25em 0.5em;
    border-radius: 3px;
    transition: background-color 0.2s ease;
}

#content .awards-navigation a:hover {
    background-color: #d1cfa3;
}

#content h2 {
    color: #4f4a21;
    border-bottom: 2px solid #9e9c70;
    padding-bottom: 0.5em;
    margin-top: 2em;
    margin-bottom: 1.5em;
}

#content h2:first-of-type {
    margin-top: 1em;
}

#content h3 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

#content h3 a {
    color: #4f4a21;
    text-decoration: none;
}

#content h3 a:hover {
    background-color: #d1cfa3;
}

/* Award entries styling */
#content .bigger p {
    margin-bottom: 0.75em;
    line-height: 1.4;
}

#content .bigger p strong {
    color: #4f4a21;
}


/* Responsive adjustments */
@media (max-width: 767px) {
    #content h2 {
        font-size: 1.5em;
        margin-top: 1.5em;
    }

    #content h3 {
        font-size: 1.2em;
        margin-top: 1.2em;
    }

    #content .bigger p {
        font-size: 110%;
    }
}
