.banner {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-width: 1200px;
}

.banner>img {
    width: 100%;
    height: 485px;
    display: block;
    object-fit: cover;
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 1;
    width: 90%;
}

.text-overlay h1 {
    font-size: 48px;
    font-weight: 900;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.content-container {
    display: block;
    margin-bottom: 25px;
}

.main-content-wrap {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumbs {
    margin: 17px 0;
    font-size: 14px;
    color: #3D3D3D;
    margin-left: 23px;
}

.breadcrumbs a {
    color: rgba(62, 151, 243, 0.85);
    text-decoration: none;
}

.main-content {
    flex: 1;
    background: #F2F2F2;
    padding: 25px 35px;
    box-sizing: border-box;
    margin-right: 20px;
}

.sidebar {
    width: 300px;
    height: max-content;
    background: #F2F2F2;
    padding: 20px;
    box-sizing: border-box;
}

.article-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.author-avatar {
    width: 65px;
    height: 65px;
    border-radius: 10px;
    margin-right: 20px;
    object-fit: cover;
}

.article-title {
    font-size: 24px;
    font-weight: 500;
    color: #333333;
    margin: 0 0 15px
}

.article-info {
    font-size: 16px;
    color: #808082;
    margin: 0;
}

.article-info .author {
    color: #3E97F3;
    margin-right: 5px;
}

.article-info .date {
    color: #44A533;
    margin: 0 5px;
}

.article-body {
    font-size: 16px;
    line-height: 32px;
    color: #808082;
}

.article-body img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 10px auto;
    display: block;
}

.article-body p {
    margin: 20px 0;
    line-height: 32px;
}

.sidebar-title {
    font-size: 14px;
    font-weight: 350;
    color: #3D3D3D;
    margin: 0 0 10px;
}

.related-articles {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.related-article {
    margin-bottom: 16px;
}

 .related-article:last-child {
    margin-bottom: 0;
}

.related-article > a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.article-description {
    flex: 1;
    min-width: 0;
}

.thumbnail {
    width: 93px;
    height: 93px;
    border-radius: 10px;
    object-fit: cover;
    margin-right: 10px;
}

.related-title {
    font-size: 14px;
    font-weight: bold;
    color: #3D3D3D;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 0 0 16px;
}

.related-excerpt {
    font-size: 14px;
    color: #3D3D3D;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    line-height: normal;
}