.blog-info-container .default-content-wrapper p:has(em) em {
    font-style: normal;
}
 
.blog-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 46px;
}
 
 
.blog-info .info-metadata {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}
 
.blog-info div > * {
    margin-top: 0;
    margin-bottom: 0;
}
 
.blog-info .info-metadata p {
    color: var(--text-light);
    text-shadow: 0 4px 22px rgb(251 177 47 / 16%);
    font-size: 16px;
    font-style: normal;
    font-weight: var(--font-weight-regular);
    line-height: 18px;
}
 
.info-date-time {
    display: flex;
    gap: 8px;
}
 
.info-date-time p:not(:first-child) {
    padding-left: 8px;
    border-left: 1px solid var(--color-text-secondary);
    line-height: 16px;
}
 
.blog-info .info-title > * {
    text-shadow: 0 4px 22px rgb(251 177 47 / 16%);
    margin-top: 12px;
}
 
.blog-info .info-tag {
    display: flex;
    gap: 8px;
    text-transform: uppercase;
    flex-wrap: wrap;
}
 
.blog-info .info-tag span {
    color: var(--color-neutral-600);
    font-size: 14px;
    font-weight: var(--font-weight-regular);
    line-height: 10px;
    padding: 6px 8px;
    border-radius: 2px;
    background: var(--color-neutral-100);
    align-self: center;
}
 
.blog-share-list {
    gap: 16px;
}
 
.blog-share-list a {
    background-repeat: no-repeat;
    background-color: transparent;
    height: 24px;
    width: 24px;  
}
 
.share-linkedin {
    background-image: url("/icons/linked-in.svg");
}
 
.share-x {
    background-image: url("/icons/x.svg");  
    background-position: center;
}
 
.share-fb {
    background-image: url("/icons/facebook.svg");
}
 
.share-insta {
    background-image: url("/icons/instagram.png");
}
 
.blog-info-container picture img {
    width: 100%;
    border-radius: 8px;
}
 
.blog-info-container .default-content-wrapper p {
    color: var(--text-color);
}
 
.blog-info-container .default-content-wrapper a {
    font-size: 16px;
}
 
.blog-info-container .default-content-wrapper h2 strong,
.blog-info-container .default-content-wrapper h3 strong {
    font-weight: var(--font-weight-medium);
}
 
.blog-info-container .default-content-wrapper p + h3,
.blog-info-container .default-content-wrapper p + h2,
.blog-info-container .default-content-wrapper ol + h2,
.blog-info-container .default-content-wrapper ul + h2,
.blog-info-container .default-content-wrapper ol + h3,
.blog-info-container .default-content-wrapper ul + h3 {
    margin-top: 24px;
}
 
.blog-info-container .table {
    margin: 24px 0;
}
 
.blog-info-container .table p a.button {
    color: var(--link-color);
}
 
.blog-info-container .default-content-wrapper h3 a {
    font-family: var(--font-secondary);
    font-size: inherit;
    font-weight: var(--font-weight-medium);
    font-style: inherit;
}
 
.blog-page .blog-info-container .default-content-wrapper p:has(em) em {
    font-style: normal;
}
 
.blog-info-container .default-content-wrapper h2 strong u {
    font-size: var(--f-s-xxl);
    font-family: var(--font-secondary);
    font-weight: var(--font-weight-medium);
    text-transform: capitalize;
    text-decoration: none;
}
 
.appear.breadcrumb .blog-info-container .default-content-wrapper h3 strong:has(em) em {
    font-style: normal;
}
 
.appear.breadcrumb .blog-info-container .default-content-wrapper p:has(u) u {
    text-decoration: none;
}
 
@media (width <=768px) {
    .blog-info {
        margin-bottom: 24px;
    }
 
    .blog-info .info-title > * {
        margin: 12px 0 8px;
    }
 
    .blog-info .info-metadata p {
        color: var(--color-text-secondary);
        font-size: 12px;
        line-height: 12px;
    }
 
    .blog-info .info-date-time {
        margin-top: 4px;
        flex-wrap: wrap;
    }
 
    .info-date-time p:not(:first-child) {
        border-left: 1px solid var(--text-light);
    }
 
    .blog-info .info-tag {
        display: none;
    }  
 
    .blog-info-container .default-content-wrapper p + h3,
    .blog-info-container .default-content-wrapper p + h2,
    .blog-info-container .default-content-wrapper ol + h2,
    .blog-info-container .default-content-wrapper ul + h2,
    .blog-info-container .default-content-wrapper ol + h3,
    .blog-info-container .default-content-wrapper ul + h3 {
        margin-top: 15px;
    }
 
    .blog-info-container .default-content-wrapper a {
        word-break: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }
}
 
@media (width <=420px) {
    .blog-info .info-metadata {
        gap: 4px;
    }
 
    .info-date-time p:not(:first-child) {
        padding-left: 4px;
    }
 
    .info-date-time p:last-child {
        border-left: none;
        flex-basis: 100%;
        padding-left: 0;
    }
}

.blog-page .blog-info-container .table table th, .blog-page .blog-info-container .table table td {   
    border: 2px solid #ddd;
}


.blog-page .blog-info-container .table table th p, .blog-page .blog-info-container .table table td p {
   font-size:16px;
}