#pageWrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    max-width: 1500px;
    margin: 0 auto;
    border-left: 1px solid var(--ct_navbg);
    border-right: 1px solid var(--ct_navbg);
}

.container {
    padding-left: 0px !important;
    padding-right: 0px !important;
    max-width: 100% !important;
}

body {
	background-color: var(--ct_bodybg) !important;
	overflow-x: hidden;
}

#siteHeading {
    background-color: rgba(23, 26, 32, 0.2);
    border-bottom: 1px solid var(--ct_navbg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#siteHeading h1 {
    color: wheat;
    font-size: 22px;
    font-weight: 600;
    font-family: var(--titlefont);
}

#siteHeading p {
    color: var(--ct_fadedcolour);
    font-size: 14px;
    font-weight: 400;
}

.footerBottom {
    background-color: rgba(35, 41, 53, 0.3);
    border-top: 1px solid var(--ct_navbg);
    padding: 20px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footerBottom h2 {
    color: wheat;
    font-size: 24px;
    font-weight: 600;
    font-family: var(--titlefont);
    margin-bottom: 2px !important;
}

.footerBottom p {
    color: var(--ct_fadedcolour);
    font-size: 14px;
    font-weight: 400;
}

/* Home */

.homeBanner {
    width: 100%;
    height: 35vh;
    position: relative;
}

.homeBanner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.homeBanner .innerContent {
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    background: rgba(29, 33, 42, 0.7);
    padding: 1vh;
}

.homeBanner .innerContent h1 {
    color: wheat;
    font-size: 30px;
    font-family: var(--titlefont);
    font-weight: 700;
}

.homeBanner .innerContent h1 a {
    color: wheat;
    text-decoration: none;
    font-family: var(--titlefont);
}

.homeBanner .innerContent h3 {
    color: white;
    font-size: 16px;
    font-weight: 400;
}

/* Tables */

.tableView {
    width: 100%;
    padding: 20px 20px 0 20px;
}

.tableView table {
    width: calc(100% + 40px);
    margin-left: -20px !important;
    margin-right: -20px !important;
}

.tableView table tr th {
    color: white;
    font-size: 15px;
    font-weight: 500;
    padding: 6px 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.06);
}

.tableView table tr td {
    color: var(--ct_fadedcolour);
    font-size: 14px;
    font-weight: 400;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 6px 10px;
    text-align: left;
}

.tableView table tr td a {
    color: var(--ct_coolgrey);
    text-decoration: none;
}

.tableView table tr:nth-of-type(even) {
    background-color: #20252f;
}

.tableView table tr td img {
    width: 25px;
    aspect-ratio: 1/1;
}

.pageNav {
    display: flex;
    flex-direction: row !important;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.splitLinks {
    display: flex;
    flex-direction: row !important;
    margin-top: 20px;
    align-items: center;
    justify-content: space-between;
}

.splitLinks p {
    color: var(--darktext);
    font-weight: 300;
    font-size: 14px;
}

.splitLinks p a {
    color: var(--ct_coolgrey) !important;
    text-decoration: none;
}

.pageNav p.active {
    background-color: var(--ct_coolgrey);
    color: white;
}

.pageNav p {
    background-color: #384255;
    border-radius: 50%;
    margin: 0;
    aspect-ratio: 1/1;
    width: 40px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.pageNav p a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: white;
    text-decoration: none;
    font-weight: 500;
}

/** News **/

.newsPost {}

.newsPost .banner {
    width: 100%;
    border: 1px solid var(--titleborder);
    border-radius: 5px;
    overflow: hidden;
}

.newsPost .meta {
    color: wheat;
    font-weight: 300;
    font-size: 14px;
}

.newsPost ul {
    display: block;
    list-style: disc;
    padding-left: 30px !important;
}

.newsPost ul li {
    color: var(--ct_fadedcolour);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
}

/** Content Page **/

.infoView {
    overflow: hidden;
}

.infoView h3 {
    color: white;
    font-size: 15px;
    font-weight: 400;
    width: 100%;
    text-align: center;
    padding: 15px;
    background-color: #222732;
}

.infoView img {
    width: 30%;
    align-self: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.infoView .sectionHr {
    margin: 0 !important;
}

.infoView .infoTable {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.infoView .infoTable:last-child {
    border: none;
}

.infoView .infoTable .head {
    color: white;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.7;
}

.infoView .infoTable .info {
    color: var(--ct_fadedcolour);
    font-weight: 300;
    font-size: 14px;
    line-height: 1.7;
}

.staffView {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.staffView img {
    border-radius: 50%;
    width: 60%;
    aspect-ratio: 1;
    border: 1px solid white;
}