.BlogLandingPage{
    width:100%;
}

.blogHead{
    padding-top: 10%;
    font-size:30px;
    font-family: 'HelveticaNowDisplay-Bold';
    background: linear-gradient(to right, #ffffff, #999999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blogSubText{
    font-size: 16px;
    font-family: 'HelveticaNowDisplay-Regular';
    color:white;
    text-align: center;
    
}

.blogText{
    font-size: 16px;
    font-family: 'HelveticaNowDisplay-Regular';
    color:white;
    width:100%;
    word-wrap: break-word;
    text-align: justify;
}

.blogCardHead{
    margin-top: 15%;
}

.blogCardHead img{
    width:67px;
    height:67px;
}

.blogCardAuthor{
    margin-left: -50px;
    font-size:20px;
    font-family: 'HelveticaNowDisplay-Bold';
    background: linear-gradient(to right, #ffffff, #999999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blogCardDate{
    margin-left: -50px;
    margin-top: -15px;
    font-size: 16px;
    font-family: 'HelveticaNowDisplay-Regular';
    color:white;
}

.blogLine {
    width: 60%;
    border: none; /* Remove default border */
    height: 1px; /* Set the thickness of the line */
    background-color: #FF9900; /* Set the color to white */
    margin-bottom:20px; /* Add spacing above and below */
    opacity: 1;
}



ol {
    list-style: none;          /* remove default numbers */
    counter-reset: item;       /* initialize counter */
    padding-left: 1.5rem;      /* spacing from left */
    line-height: 1.8;          /* space between lines */
}

ol li {
    counter-increment: item;   /* increase counter */
    margin-bottom: 0.6rem;     /* space between items */
    position: relative;
    padding-left: 2.8rem;      /* space for the circle */
}

ol li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    background-color: white;   /* white circle */
    color: black;              /* number color inside */
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 885px){
    .blogHead{
        padding-top: 25%;
    }
}

@media only screen and (max-width: 768x){
    .blogSubText{
        padding-left: 10%;
    }
    .blogHead{
        padding-top: 20%;
        padding-left: 10%;
        font-size: 30px;
    }
    .blogCardHead{
        padding-left: 10%;
    }
    .blogText{
        padding-left:10%;
    }
    .blogLine{
        margin-left: 10%;
    }
}

@media only screen and (max-width: 568px){
    .blogCardHead{
        margin-left: 20px
    }
    .blogCardAuthor{
        margin-top:20px;
        margin-left: 10px;
    }
    .blogCardDate{
        margin-left: 10px;
    }
    .blogHead{
        padding-top: 30%;
        padding-left: 10%;
        font-size: 30px;
    }

    .blogText{
        padding-left:5%;
        padding-right: 5%;
    }

    .blogLine{
        margin-left: 5%;
    }
    ol{
        padding-left:0;
    }


}