/* Common CSS start */

body {
    font-weight: normal;
    line-height: normal;
    margin: 0px;
    padding: 0px;
    width: 100%;
    min-width: 320px;
    overflow-x: hidden;
    touch-action: manipulation;
    background-color: #FFFFFF;
}

main:has(.blog-content){
    min-height: 100dvh;
    padding-bottom: 2rem;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6{
  font-weight: 700;
  margin-bottom: 0.5rem;
}

h2,h3,h4{
    padding: 2rem 0 0.5rem;
}

h1 {
    font-size: clamp(1.875rem, 1.3542rem + 1.6667vw, 2.5rem);
}

h2 {
    font-size: clamp(1.5rem, 1.1875rem + 1vw, 1.875rem);
}

h3 {
    font-size: clamp(1.125rem, 0.9167rem + 0.6667vw, 1.375rem);
}

img,
svg,
video,
.img {
  height: auto;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
}

a{
    text-decoration: none;
}

ul{
    list-style-type: none;
    padding: 0;
    margin: 0;
}

p,summary{
    font-size: clamp(0.8125rem, 0.5521rem + 0.8333vw, 1.125rem);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

details summary {
    color: #fff;
    background-color: #ffb333;
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
}

details summary::marker {
    color: #FFF;
    font-size: 1.5rem;
}

details p{
    padding: 1rem;
    background-color: #f9f9f9;
    border-left: 5px solid #ffb333;
    transition: 0.5s all ease-in-out;
}

/* Common CSS End */

/* Blog details CSS start */

.blog-image { 
    max-width: 100%; 
    height: auto; 
    margin-bottom: 2rem; 
    border-radius: 15px ;
}

.blog-content .content-image {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 15px;
    margin-block: 1rem;
}

.CS-1b7a48b6-7fd7-800f-872a-fff3cda9cf8d .content-image{
    aspect-ratio: unset;
    border-radius: 10px;
    width: 100%;
    max-width: 20%;
    margin: 1rem auto;
    border: 1px solid #ccc;
}

@media screen and (max-width: 768px){
    .CS-1b7a48b6-7fd7-800f-872a-fff3cda9cf8d .content-image{
        max-width: 60%;
    }
}

.blog-content a{
    color: #ffb333;
}

.blog-content a:hover{
    text-decoration: underline;
    text-underline-offset: 3px;
}

.blog-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    color: #374151;
    margin: 0;
}

.blog-content h2{
    border-bottom: 4px solid #ffb333;
    margin-bottom: 0.8rem;
}

/* Blog details CSS End */