.left-block {
    width: 100%;
    
}

.center-block {
    width: 100%;
    background: white;
    border-radius: 10px;
}

.right-block {
    width: 100%;
}

.highlight {
    color: var(--base-color);
}

.top-block {
    border-radius: 10px 10px 0 0;
    font-size: 18px;
}

h1 {
    text-align: center;
    margin: 0;
    font-size: 24px;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 10px 10px 0 0;
}

.org-container {
    display: flex;
    align-items: center;
    background: white;
    padding: 12px;
}

.org-info-container {
    margin:0 10px;
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    line-height: 1.5;
}

.paper-name {
    margin-right: 10px;
    line-height: 1;
}

.class-btn {
    text-align: center;
    font-weight: bold; 
}

.class-text {
    font-size: 18px;
    background: darkblue;
    padding: 10px;
    border-radius: 50%;
    color: white;
}

.class-label {
    font-size: 12px;
    color: black;
}

.main {
    flex-direction: column;
}

.info-img {
    width: 100%;
    border-radius: 10px;
}

.papers-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.papers-container a {
    flex: 1 1 calc(50% - 10px);
    background: white;
    border: 1px solid lightgray;
}

.content-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    color: #004080;
    margin-bottom: 10px;
}

.content-header p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.exam-papers-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px; /* Compact layout */
    flex: 1;
}

.exam-paper-item {
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 64, 128, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.exam-paper-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0, 64, 128, 0.2);
}

.exam-paper-item h4 {
    font-size: 1.3rem;
    color: #004080;
    margin-bottom: 10px;
}

.exam-paper-item p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 5px; /* Reduce whitespace between text */
}

.exam-paper-item span {
    font-size: 1rem;
    color: #ff8800;
    text-decoration: none;
    font-weight: bold;
}

.exam-paper-item span:hover {
    text-decoration: underline;
}

/* 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: 20%;
    }
    
    .center-block {
        width: 60%;
    }

    .right-block {
        width: 20%;
    }

    
}