:root {
  --main-color: #d33753;
  --light-color: #fafafa;
  --padding-lg: 3rem;
  --padding-md: 2rem;
  --padding-sm: 1rem;
  --shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  --shadow-light: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

@font-face {
    font-family: "Macan";
    src: url('/newux/fonts/MacanPanWeb-Regular.ttf');
}

body {
    font-family: "Macan";
}

#blogDescription .ql-editor {
    height: 250px;
    overflow-y: auto;
}

.blog-wrapper {
    display: flex;
    justify-content: center;
}

.blog-cover {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 1rem;
}

.blog-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-head {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.blog-head-span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-head-span p {
    font-size: 14px;
}

.blog-title {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.blog-title h3 {
    font-size: 2rem;
    font-weight: 1000;
}

.blog {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog ul li {
    list-style: disc;
    margin-left: 30px;
}

.blog img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
}

.hashtags-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.hashtags-wrapper h4 {
    font-size: 18px;
    width: fit-content;
    position: relative;
}

.hashtags-wrapper h4::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--main-color);
}

.hashtags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hashtag {
    background-color: #FFF;
    padding: 10px 20px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    border-radius: 3rem;
    font-size: 14px;
}

.blog-more {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.similar-blogs {
    width: 100%;
    display: flex;
    gap: 1rem;
    align-items: center;
    overflow: auto;
}

.similar-blogs::-webkit-scrollbar {
    display: none;
}

.similar-blog {
    min-width: 325px;
}

.similar-blog a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.similar-blog-box {
    position: relative;
    width: 100%;
    height: 225px;
    border-radius: 8px;
    overflow: hidden;
}

.similar-blog-cover {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
}

.similar-blog-author-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
}

.blog-more-head {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.blog-more-btns {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-more-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFF;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.blog-more-btn i {
    font-size: 12px;
    color: var(--main-color);
}

.blog-more-title {
    display: flex;
    flex-direction: column;
}

.blog-more-title h4 {
    font-weight: 1000;
    font-size: 1.25rem;
}

.r-wrapper h4 {
    font-size: 1.25rem;
    font-weight: 1000;
    text-transform: capitalize;
}

.blog-more-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.blog-more-details h5 {
    font-size: 16px;
}

.blog-more-stamps {
    display: flex;
    gap: 10px;
    align-items: center;
}

.blog-more-stamp {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-more-stamp span {
    font-size: 12px;
    min-width: fit-content;
}

.author-singleblog-box {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.author-singleblog {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-singleblog img {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.author-singleblog-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.author-singleblog-details h5 {
    font-size: 18px;
}

.author-singleblog-stamps {
    display: flex;
    gap: 20px;
    align-items: center;
}

.author-singleblog-stamp {
    display: flex;
    align-items: center;
    gap: 7px;
} 