.top-banner{
    height: 60vh;
    min-height: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0px auto;
    flex-wrap: wrap;
    gap: 5%;
    border-bottom: 3px solid #fff;
    box-sizing: border-box;
}

.rc24-logo{
    height: 100vh;
    max-height: 20%;
    min-height: 100px;
    margin-top: 2.5%;
}

.rc24-font-wrapper{
    height: 27.5%;
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: space-around;
    flex-wrap: nowrap;
}

.rc24-font-wrapper txt{
    color: #fff;
    line-height: 1;
    font-size: clamp(5rem,8vh,7rem); 
    letter-spacing: 1px;
    font-family: 'Desyrel', cursive;
}

.blog-home-wrapper{
    background: rgb(40, 40, 44);
    width: 100%;
    min-height: 80vh;
    box-sizing: border-box;
    height: auto;
    display: flex;
    justify-content: center;
}
.blog-home-container{
    width: 80%;
    margin: 0px auto;
    height: 100%;
    max-width: 1000px;
}

/* article containers */
.blog-section-heading{
    height: 150px;
    width: 100%;
    display: flex; 
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.mr-container {
    background: #474646;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    height: 400px;
    margin-bottom: 60px;
    transition: 0.5s ease all;
    overflow: hidden;
}

.mr-container.collapsed{
    height: 0px;
    margin-bottom: 0px;
}
.mr-info{
    min-width: 400px;
    width: 50%;
    height: 90%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    padding: 0 30px;
}
.mr-info-title{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.mr-info-desc{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    display: -webkit-box;
    -webkit-line-clamp: 5;      /* number of lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.mr-info-metadata{
    width: 90%;
    
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}
.mr-info-metadata-item, .article-metadata-item, .author-link{
    color: white;
    text-decoration: none;
}

.mr-image{
    min-width: 400px;
    width: 50%;
    height: 100%;
    align-items: center;
}
.mr-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mr-button-wrapper{
    height:auto;
    width: 98%;
    display: flex;
    justify-content: flex-end;
}
.mr-button {
    background: rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(0, 0, 0, 0); 
    border-radius: 0;         
    font: inherit;
    cursor: pointer;
    line-height: 1;
    color: #f0b347;
    font-weight: bold;
    transition-duration: 0.4s;
    width: 125px;
    height: 50px;
}

.mr-button:hover {
  background: rgba(0, 0, 0, 0.7);
  border: 3px solid rgba(0, 0, 0, 0.7);  
}

.blog-grid-container{
    width: 100%;
    margin: 0px auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    height: 100%;
    gap: 25px;
    justify-content: center;
}

/* scroll bar */
.nav-wrapper{
    height:150px;
    width: 100%;
    display: flex; 
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.page-total{
    color: white;
    padding: 5px 0px;
    width: 150px;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
}
.sb{
    width: 150px;
    height: 50px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.sb-nav{
    border: none;
    height: 100%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0);
    transition: all 0.3s ease;
    color: white;
}
.sb-nav:disabled{
    pointer-events: none;
    cursor: default;
    background: rgba(100, 100, 100, 0.7);
}
.sb-indicator{
    color: white;
}

.sb-nav:not(:disabled):hover{
    background: rgba(0, 0, 0, 1);
}


