.blog-content-box{
    font-family:Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    color: white;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    line-height:1.4;
}
.blog-content-box h1
{
    font-family:Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    font-size: 56px;
}
.blog-content-box h2
{
    font-family:Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    font-size: 38px;
    font-weight: bold;
    color: rgb(206 147 42);
}
.blog-content-box h3
{
    font-family:Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    font-size: 28px;
    color: rgb(206 147 42);
    font-weight: bold;
    margin-block-start: 10px;
    margin-block-end: 10px;
}
.blog-content-box h4
{
    font-family:Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    font-size: 22px;
    font-weight: bold;
    margin-block-start: 10px;
    margin-block-end: 10px;
}
.blog-content-box txt{
    font-size: 18px;
}


.blog-header-banner {
    height: 40vh;
    min-height: 300px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0px auto;
    flex-wrap: wrap;
    gap: 10%;
}

.blog-header-wrapper
{
  background: rgba(44, 40, 44, 0);
  padding: 32px 0;
}

.blog-content-wrapper {
    background: rgba(44, 40, 44, 1);
    padding: 64px 0;
    border-top: 3px solid #fff;
    box-sizing: border-box;
}

.blog-content-box {
  color: white;
  
  box-sizing: border-box;
  width: 60%;
  max-width: 1200px;
  margin: 0 auto; /* only horizontal centering now */
  word-wrap: break-word;
  overflow-wrap: break-word;
  min-height: 90vh;
}

.blog-container{
  width: 100%;
  margin: 0px auto;
  box-sizing: border-box;
  height: auto;
}

.article-title{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}


.article-metadata{
    height: auto;
    color: white;
    width: 80%;
    max-width: 600px;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: flex-start;
    flex-wrap: wrap;
    column-gap: 2.5%;
    row-gap: 5px;
    font-weight: bold;
    font-size: 20px;
}

.article-metadata-item{
    color: white;
    text-decoration: none;
    width: auto;
}
.author-link {
  color: inherit;
  text-decoration: none;
  font-weight: inherit; /* optional */
}
.author-link:hover {
  text-decoration: underline;
}

.author-wrapper{
    width: 50%;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.author{
    background: #474646;
    display:flex;
    gap:16px;
    align-items:center;
    border-radius:12px;
    padding:20px;
    width:100%;
    box-shadow:0 6px 16px rgba(0,0,0,0.08);
}
.author-avatar{
width:64px;height:64px;border-radius:50%;overflow:hidden;
background:#ddd;flex-shrink:0;
}
.author-avatar img{
width:100%;height:100%;object-fit:cover;display:block;
}
.author-info{
display:flex;flex-direction:column;
}
.author-name{
font-weight:600;
font-size:18px;
}
.author-role{
font-size:14px;
margin-bottom:8px;
}
.author-socials{display:flex;gap:12px;}
.author-socials a{
text-decoration:none;
font-size:16px;
transition:color .2s;
}
.author-socials a:hover{color:#1da1f2}

.related-art-heading{
    margin: 40px auto;

}
.related-art-heading h2{
        text-align: center;
}
.related-art-wrapper{
    margin:0px auto;
    display: flex;
    width: 80vw;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
}

@media (orientation: portrait), (max-width: 768px) {
    .blog-container{
        width: 100%;
    }
    .blog-content-box,.blog-header-banner{
        width: 90%;
    }
    .blog-header-wrapper{
        background: rgba(44, 40, 44, 0);
        
    }
    .blog-header-banner{
        width: 70%;
        max-width: 600px;
        min-height: 60vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-content: center;
        text-align: center;
    }
    .article-metadata{
        width: 100%;
    }
}