body {
    font-family: 'Rubik', sans-serif !important;
}

a {
    text-decoration: none !important;
}

#article-background {
    padding: 0;
    background-image: url('../img/background.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title {
    color: #031440;
    font-size: 55px;
    font-weight: 700;
    text-align: center;
    padding: 0 50px;
}

#article {
    margin-top: 60px;
}

.article-inner {
    display: flex;
    align-items: center;
}

.article-inner img {
    border-radius: 10px;
    margin-bottom: 15px;
}

.article-title {
    color: #031440;
    font-weight: 600;
}

.custom-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 10px 14px;
    background-color: #f5f8ff;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #031440;
    font-size: 16px;
}

.custom-list li i {
    margin-right: 12px;
    color: #fd7959;
    font-size: 18px;
}

.custom-list li:hover {
    background-color: #e6efff;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pagination {
    text-align: center;
}

.pagination button {
    background-color: #031440;
    border: 1px solid #031440;
    color: #fff;
    margin: 0px 7px;
    padding: 8px 18px;
    cursor: pointer;
    transition: .5s;
}

.pagination button:hover {
    background-color: #fd7959;
    border: 1px solid #fd7959;
}

.pagination button.active {
    background-color: #fd7959;
    border: 1px solid #fd7959;
    color: white;
}

#articleSearch {
    padding: 14px 14px 13px 14px;
    margin: 0px 0px 9px 0px;
    border-radius: 10px;
    color: #86898C;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #DFE9F0;
    margin-top: 10px;
}

#articleSearch:focus {
    border-style: solid;
    border-color: #ACAFA2;
}
        
.breadcrumb-item a {
    color: #031440;
    transition: .5s;
}
        
.breadcrumb-item a:hover {
    color: #fd7959;
}

.article-padding {
    background-color: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

#border-top {
    border-top: 1px dashed #dfdfdf;
    padding-top: 40px;
}

@media screen and (max-width: 520px) {
    #article-background {
        height: 200px;
    }
    
    .article-inner {
        display: inherit !important;
    }
}