.archive-section ul {
    padding-left: 0;
    margin: 0;
    list-style: none;
}

.archive-section ul li a {
    display: block;
    padding: 5px 10px;
    white-space: nowrap;
    text-decoration: none;
    color: #003366;
    font-weight: bold;
}

.case-study-inner-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.single-case-study-section {
    padding: 0;
}

.single-case-study-content {
    width: 75%;
}

.case-study-sidebar {
    width: 25%;
    flex-shrink: 0;
}

.single-case-study-content img,
.multiple-img-content img,
.yellow-border-img img {
    max-width: 100%;
    height: auto;
    display: block;
}

.single-case-study-item {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
}

.case-study-title {
    font-size: 2rem;
    color: #2A4198;
    font-weight: bold;
    margin-bottom: 10px;
}

.case-study-date {
    font-size: 1rem;
    color: #7A7A7A;
    margin-bottom: 20px;
    display: block;
}

.multiple-img {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 2rem;
}

.multiple-img-content {
    margin: 1rem;
}
.multiple-img-content:first-child {
    margin-left: 0;
}

.yellow-border-img {
    width: 80%;
    margin: 0 auto;
    border: 5px solid #FABC1C;
    border-radius: 10px;
    margin-bottom: 20px;
}

.voice-item {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    display: flex;
}

.single-details {
    border-radius: 5px;
    margin: 4rem 0;
}

.single-details h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0B3C91;
    border-bottom: 2px solid #FABC1C;
    padding-bottom: 5px;
    margin-bottom: 2rem;
}

.activity-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.activity-row {
    display: flex;
    align-items: center;
    padding-bottom: 1rem;
}

.under-yellow-line {
    border-bottom: 1px solid #FABC1C;
}

.sky-blue-label {
    flex-basis: 120px;
    background-color: #A8D5F2;
    font-weight: 500;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    margin-right: 15px;
}

.activity-value {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #363636;
}

.external-link {
    margin-left: 10px;
}

.external-link img {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    padding: 2px;
}

.case-study-content {
    width: 100%;
    box-sizing: border-box;
}
.case-study-content > * {
    width: 100% !important;
    box-sizing: border-box;
}

.case-abstract,
.case-mainimage,
.single-details,
.multiple-img,
.yellow-border-img {
    width: 100%;
    box-sizing: border-box;
}

/* Pagination */
#pagerbox {
    z-index: 100;
    position: relative;
    margin-top: 3rem;
}

#pagerbox .pagination,
#pagerbox .pagination li a {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

#pagerbox .pagination {
    list-style: none;
    padding-left: 0;
    margin: 0 auto;
}

#pagerbox .pagination li {
    background: white;
}

#pagerbox .pagination li svg {
    width: 1rem;
    height: 1rem;
}

#pagerbox .pagination a {
    min-width: 2rem;
    min-height: 2rem;
    padding-top: 1px;
    font-weight: 300;
    color: #0B3C91;
    text-decoration: none;
    border: 1px solid #0B3C91;
    border-left-width: 0;
}

#pagerbox .pagination li:not(.current) a:hover {
    background-color: #ececec;
}

#pagerbox .pagination li:first-of-type a {
    border-left-width: 1px;
}

#pagerbox .pagination li.current a {
    background: #0B3C91;
    cursor: not-allowed;
    color: white;
}

#pagerbox .pagination > li:first-child > a {
    border-radius: 4px 0 0 4px;
}

#pagerbox .pagination > li:last-child > a {
    border-radius: 0 4px 4px 0;
}

/* Back Button */
.back-button {
    display: flex;
    align-items: center;
    border: 2px solid #2D4F9D;
    border-radius: 10px;
    background-color: white;
    max-width: 160px;
    margin: 0 auto;
}

.back-button__text {
    background-color: #2D4F9D;
    color: white;
    padding: 0.1rem;
    text-align: center;
    font-size: 16px;
    flex: 3;
}

.back-button__icon {
    background-color: white;
    border: none;
    color: #2D4F9D;
    font-size: 16px;
    flex: 1;
    cursor: pointer;
}
.back-button__icon:hover {
    background-color: #2D4F9D;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .single-case-study-section,
    .case-study-section {
        display: block;
    }

    .single-case-study-content,
    .case-study-sidebar,
    .case-study-content,
    .case-study-link,
    .case-study-image,
    .case-study-details {
        width: 100%;
        margin-left: 0;
    }

    .new-posts {
        display: none;
    }

    .activity-row {
        display: block;
    }

    .sky-blue-label {
        width: fit-content;
    }
}