.detail-page{
    margin-top: 10px;
}

.detail-page-section{
    display: flex;
    gap: 20px;
    border-radius: 5px;
}
.detail-page-left-section{
    width: 66%;
}
.detail-page-left-section-content{
    display: flex;
    align-items: center;
    background-color: #D5DCFF;
    gap: 10px;
    padding: 10px 5px 10px 5px;
}
.detail-page-left-section-content h5{
    font-weight: 500;
    font-size: 20px;
    font-family: 'ShorifJonota', serif;
}
.detail-page-left-section-content img{
  width: 20px;
}
.detail-page-left-section-image{
    margin-top: 10px;
}
.detail-page-right-section{
    width: 34%;
}
/* side-bar */
.sidebar-detail-page {
    /* width: 300px; */
    border-top: 2px solid rgb(105, 0, 0);
    background-color: white;
    box-shadow: #333 0px 0px 10px;
}

.sidebar-header-detail-page{
    background-color: #186C5C;
    color: white;
    padding: 10px 15px;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
}

.sidebar-content-left{
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: thick;
    scrollbar-color: rgb(99,99,99) #f1f1f1;
}

.sidebar-content-left::-webkit-scrollbar {
    width: 8px;
}

.sidebar-content-left::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.sidebar-content-left::-webkit-scrollbar-thumb {
    background: rgb(99,99,99);
    border-radius: 4px;
}

.sidebar-list-left{
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-list-left li {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

.sidebar-list-left li:hover {
    background-color: #f0f0f0;
}

.sidebar-list-left li img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    margin-right: 10px;
}

.sidebar-list-left li::before {
    /* content: '►'; */
    margin-right: 10px;
    color: #084F91;
    font-size: 22px;
}

.sidebar-list-left li a {
    text-decoration: none;
    color: #333;
    font-size: 22px;
}
.font-symbols{
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 10px;;
}
.font-symbols span{
    cursor: pointer;
    background-color: #F0F0F0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid black;
}
.view-all-btn-2 {
    display: block;
    width: 100%;
    padding: 10px;
    text-align: right;
    /* background-color: #084F91; */
    color: black;
    text-decoration: none;
    font-weight: 600;
    font-size: 22px;
}
.detail-page-left-section-title{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}
.detail-page-left-section-title h3{
    color: #0D21B4;
    font-size: 30px;
}
.detail-page-left-section-title .red-para{
  font-size: 18px;
  color: red;
}
.detail-page-left-section-title .black-para{
    font-size: 16px;
    color: #333;
    font-weight: 500;
}
.detail-page-left-section-cover-image{
    margin-top: 20px;
    margin-bottom: 20px;
}
.detail-page-left-section-image h4{
    font-size: 22px;
    font-weight: 600;
    margin-top: 20px;
}
.detail-page-left-section-image p{
    font-size: 20px;
    font-weight: lighter;
    letter-spacing: 1.5px;
    line-height: 1.5;
    margin: 5px 0px 16px;

}
.detail-page-left-section-image-2{
    margin-top: 100px;
    margin-bottom: 80px;
}
.detail-page-left-section-card{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}
.detail-page-scrollbar{
    margin-top: 60px;
    margin-bottom: 30px;
}
.detail-page-scrollbar .sidebar-list-left li img {
    width: 40%;
    
}
.detail-page-scrollbar .sidebar-list-left li{
    padding: 25px 15px 5px 5px;
} 

@media (max-width:768px){
    .detail-page-section{
        flex-direction: column;
    }
    .detail-page-left-section{
        width: 100%;
    }
.detail-page-right-section{
    width: 100%;
}
.detail-page-scrollbar .sidebar-list-left li img {
    width: 100px;
    
}
.detail-page-left-section-card{
    grid-template-columns:1fr;
}
.detail-page-left-section-card .news-item{
    flex-direction: column;
}
.detail-page-left-section-card .news-item img{
    width: 100%;
    height: 300px;
    /* object-fit: contain; */
}
.detail-page{
    padding-top: 60px;
}
}