.left-block {
    width: 100%;
    display: none;
}

.center-block {
    width: 100%;
}

.right-block {
    width: 100%;
}

.highlight {
    color: var(--base-color);
}

h1 {
    text-align: center;
}

.page-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 64, 128, 0.1);
}

.page-content a {
    color: #0000EE;
}

.page-content p {
    line-height: 1.5;
    color: #333;
}

.page-content h3 {
    font-size: 19px;
    line-height: 1.2;
}

.page-content h2 {
    font-size: 1.5rem;
}

.page-heading {
    font-size: 1.8rem;
    margin: 8px;
}

.main {
    flex-direction: column;
}

.list-body a {
    display: block;
    width: 100%;
    border-bottom: 1px solid #eeeeee;
    padding: 10px 4px;
    font-weight: 500;
}

.center-block h1, h2, h3, h4, h5, h6 {
    color: var(--base-heading);
    margin: 1rem 0;
}

.center-block p {
    line-height: 1.6;
    margin-block-end: 1rem;
}


/*
.center-block h2, h3, h4, h5, h6 {
    margin-top: 20px ;
    margin-bottom: 10px;
}
*/

.cat-text {
    text-align: center;
}

.active-a {
    color: var(--base-heading);
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    

}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .left-block {
        width: 25%;
        display: block;
    }
    
    .center-block {
        width: 50%;
    }

    .right-block {
        width: 25%;
    }

    
}