.blog-left {
    width: 100% !important;
    min-height: 400px;
    background: #fafafa;
    margin: 2rem 0 !important;
    border-radius: 20px;
    padding: 2.4rem 2rem !important;
    padding-bottom: 0.9rem !important;
}

.l-blog-title {
    font-size: 2rem;
    font-family: 'Baskervville';
    font-weight: 800;
}

.l-blog-img {
    width: 100%;
    margin-top: 1.5rem;
}

.l-blog-img img {
    height: 100%;
    width: 100%;
}

.l-blog-des {
    font-size: 1.1rem;
    margin-top: 18px;
}

.blog-icons-container {
    gap: 1rem;
    margin: 0 !important;
}

.blog-icon {
    width: 45px;
    height: 45px;
    border-radius: 6px;
    margin: 0 !important;
    background: #10625733;
}

.blog-card-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 20px;
    justify-items: stretch;
    padding: 10px 1rem;
}

.blog-card {
    position: relative;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    min-height: 450px !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.blog-card img {
    width: 100%;
    /* min-height: 44%; */
    height: 200px;
    object-fit: cover;

}

.blog-card-content {
    padding: 20px 10px;
    flex-grow: 1;
    height: 270px;
}

.blog-card h3 {
    font-size: 1.25rem;
    font-family: 'Baskervville';
    margin-bottom: 10px;
    font-weight: 800;
}

.blog-card p {
    font-size: 15px;
    color: #555;
}

.blog-card .author {
    width: 100%;
    padding-right: 1.5rem;
    font-size: 0.8em;
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: #888;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
}

.related-blogs {
    width: 100%;
    margin: 20px auto;
    border-radius: 15px;
    padding: 1.5rem 1.2rem;
    padding-bottom: 0.2rem;
    background-color: #f9f9f9;
}

.related-blogs h2 {
    text-align: left;
    font-size: 19px;
    font-family: 'Baskervville';
    font-weight: 800;
    margin-bottom: 1.4rem;
    color: #333;
}

.blog-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.blog-item:last-child {
    border-bottom: none;
}

.blog-item img {
    width: 90px;
    height: 80px;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
    margin-right: 10px;
}

.blog-content {
    display: flex;
    flex-direction: column;
}

.blog-date {
    font-size: 12px;
    color: #a5a5a5;
    margin-bottom: 5px;
}

.blog-title {
    font-size: 14px;
    color: #333;
    margin: 0;
}

.table-of-content {
    min-height: 250px;
    padding: 3rem;
    padding-left: 2rem;
    width: 100%;
    background: #fafafa;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.table-of-content h5 {
    font-size: 1.4rem;
    font-weight: 800;
    font-family: 'Baskervville';

}

.blog-main-content {
    padding: 3rem 2rem;
    width: 100%;
    background: #fafafa;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

