.sidebar {
    background-color: #f8f9fa;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    transition: right 0.3s ease;
    z-index: 1050;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
}

.sidebar.show {
    right: 0;
}

.sidebar-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    display: none;
}

.sidebar-backdrop.show {
    display: block;
}

.main-content {
    transition: margin-right 0.3s ease;
}

.sidebar.show ~ .main-content {
    margin-right: 300px;
}

@media (min-width: 992px) {
    .sidebar {
        display: none !important;
    }

    .sidebar-backdrop {
        display: none !important;
    }

    .main-content {
        margin-right: 0 !important;
    }
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #dee2e6;
}

.btn-close-custom {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6c757d;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-title {
    margin: 0;
    font-size: 1.25rem;
}

.col-lg-9.fs-5 h4 {
    color: darkcyan !important;
}

.col-lg-9.fs-5 h5 {
    color: darkgoldenrod !important;
    font-size: 1.4rem;
}

.two-columns {
  column-count: 2;
  column-gap: 30px;
}

.three-columns {
  column-count: 3;
  column-gap: 30px;
}

.two-columns-50prc {
  column-count: 2;
  column-gap: 50%;
}

.thee-columns-33prc {
  column-count: 3;
  column-gap: 33%;
}

#articlesAccordion .accordion-item {
  border: 1px solid #0681a6;
  margin: 1.5em 0;
}

/* stylelint-disable @stylistic/selector-list-comma-newline-after */

blockquote:has(p) {
    border-left: #a5bcc3 solid 7px;
    background-color: #eaeaea99;
    padding: 21px 19px 3px;
}

a.mrd-nav-active {
    color: #ac5b5b !important;
}

ul.mrd-card-list {
    line-height: 1.6;
    list-style: none;
    font-size: 22px;
    padding-left: 0 !important;
    margin-bottom: 2rem !important;
}

ul.mrd-card-list a {
    color: #477ECF !important;
    text-decoration: none;
}

ul.mrd-card-list a:hover {
    text-decoration: underline;
}

.blog-header-logo {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif/*rtl:Amiri, Georgia, "Times New Roman", serif*/;
    font-size: 2.25rem;
}

.blog-header-logo:hover {
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif/*rtl:Amiri, Georgia, "Times New Roman", serif*/;
}

.flex-auto {
    flex: 0 0 auto;
}

.h-250 { height: 250px; }
@media (min-width: 768px) {
    .h-md-250 { height: 250px; }
}

/* Pagination */
.blog-pagination {
    margin-bottom: 4rem;
}

/*
 * Blog posts
 */
.blog-post {
    margin-bottom: 4rem;
}
.blog-post-meta {
    margin-bottom: 1.25rem;
    color: #727272;
}

h1 {
    color: #ac5b5b !important;
    margin-bottom: 0.5em !important;
}

h3 {
    color: #0681a6 !important;
    margin-top: 1em !important;
}

h4 {
    color: #666666 !important;
    margin-bottom: 0.75em !important;
}

.wrap_content h4 {
    color: #4795d4 !important;
}

.popular-links .btn {
    font-size: 12px !important;
  }
