h1,
h2,
h3,
h4 {
    color: var(--blue-navy-light);
    font-weight: 600;
}

main h1.title, #side-panel h3{
    font-size: 1.5rem;
}

.heading {
    color: var(--blue-navy-light);
}

.heading > span {
    color: var(--orange);
}

.w-60 {
    width: 60%;
}

.d-hidden {
    display: none;
}

.rm-style {
    padding: 0;
    margin: 0;
    border: 0;
    outline: 0;
    background-color: transparent;
}

#search-container {
    border: 1px solid #ecf2f6;
    border-radius: 12px;
    color: #27272e;
    /* width: 80%; */
}

#search-container input {
    padding: 3px 10px;
    border-radius: 12px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    width: calc(100% - 21px);
    min-width: 100px;
}

#search-container input::placeholder {
    color: #27272e;
}

#search-container > #search-divider {
    border: 0.5px solid #99a1aa;
    height: 10px;
}

#search-container > button {
    padding: 5px;
    width: 21px;
}

#content .shareable {
    width: 140px;
    height: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2px;
    line-height: 13px;
    margin: 2rem 0;
}

#content .shareable:first-of-type {
    position: relative;
    left: 65%;
    transform: translate(0, -50%);
}

#content .media{
    width: max-content;
    display: inline-block;
}

@media screen and (max-width: 576px) {
    #content .shareable:first-of-type {
        position: relative;
        left: 50%;
    }
}

#content .shareable span {
    width: 13px;
    height: 13px;
    background-color: #461717;
    display: block;
}

#content .shareable span:first-of-type {
    width: fit-content;
    background-color: transparent;
    margin-right: 5px;
}

#content img#banner {
    object-fit: cover;
    width: 100%;
    height: auto;
}

/* #content p,
li {
    line-height: clamp(30px, 2vw, 32px);
    font-size: clamp(12px, 1vw, 14px);
} */

#content #description h1,
#content #description h2,
#content #description h3,
#content #description h4 {
    font-size: clamp(14px, 1.1vw, 16px);
    line-height: clamp(30px, 2vw, 32px);
    font-style: italic;
    font-weight: 700;
    color: black;
}

#content #description img {
    object-fit: cover;
    max-width: 100%;
    margin-bottom: 2rem;
    height: auto;
}

#side-panel #category-section li {
    list-style: none;
    color: var(--grey-light);
}

#side-panel #category-section li a {
    color: var(--grey-light);
}
#side-panel #category-section li a:hover {
    color: #000000;
}

#side-panel #category-section li ul li {
    border-bottom: 1px solid #ecf2f6;
}

#side-panel #category-section li button {
    padding: 1rem 0;
    color: var(--grey-light);
    border-bottom: 1px solid #ecf2f6;
}

#side-panel #category-section li button img {
    transition: transform 0.5s;
    transform: rotate(90deg);
    fill: #27272e;
}

#side-panel #category-section li button[aria-expanded="true"] img {
    transform: rotate(180deg);
}

@media screen and (min-width: 576px) {
    .d-hidden-sm {
        display: none;
    }

    .w-sm-80 {
        width: 80% !important;
    }
}

@media screen and (min-width: 768px) {
    .w-md-80 {
        width: 80%;
    }

    .w-md-60 {
        width: 60% !important;
    }

    .d-block-md {
        display: block;
    }

    .d-hidden-md {
        display: none;
    }
}

@media screen and (min-width: 992px) {
    .w-lg-60 {
        width: 60%;
    }

    .w-lg-40 {
        width: 40% !important;
    }

    .d-block-lg {
        display: block;
    }
}
