/*
TSRP Style sheet

 */
.main-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: 'TSRP'
      'Sidebar';
    gap: 1em;
}
.tsrp-panel {
    /*background: url(../images/upc-training-background.jpg) #D5D5D5; */
    background-color: var(--color-sidebar);
    border: 3px solid var(--color-emphasis);
    border-radius: 10px;
    text-align: center;
    margin: 1em 1em;
    grid-area: TSRP;
    justify-self: stretch;
    align-self: start;
}
.tsrp-panel h4, .sidebar h3 {
    padding-top: 1em;
    margin: 0;
    font-weight: 400;
}

.tsrp-panel h4 {
    padding-top: .75em;
    padding-bottom: 1em;
    font-weight: bold;
}

.tsrp-about {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-around;
}
.tsrp-image {
    max-width: 250px;
    max-height: 250px;
    border-radius: 10px;
    align-self: center;
    margin-bottom: .75em;
}
.tsrp-description {
    text-align: left;
    margin-bottom: .5em;
    font-size: 105%;
}

.sidebar {
    margin: 2em;
    grid-area: Sidebar;
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 1em;
}
.sidebar-links a {
    font-size: 110%;
}
.sidebar p {
    color: var(--color-text);
}


@media (min-width: 750px) {
    .main-container {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-areas: 'TSRP TSRP Sidebar';
    }
    .sidebar-links {
        gap: 2em;
    }
    .sidebar-links a {
        font-size: 125%;
    }
}
