.cecap-main{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;  
    gap: 1rem;
    width: 80%;
    & > .page-header{
        margin: 1rem 0;
    }
}

.cecap-cover{
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: .6rem;
}

.cecap-section{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 300;
    padding: 1rem;
    text-align: center;
}

.module-content{
    width: 100%;
    margin-bottom: 2rem;
    & > thead > tr > th.module-title{
        background-color: var(--primary-red);
        color: var(--tertiary-font-color);
        padding: .2rem .5rem;
        font-weight: 700;
        font-size: .8rem;
    }
    & > tbody > tr > td.module-subtitle{
        font-weight: 700;
        font-size: .8rem;
        background-color: var(--tertiary-color);
    }
    & > tbody > tr > td{
        font-weight: 500;
        font-size: .8rem;
        padding: .3rem 1rem;
        text-transform: uppercase;
    }
}
