.main-content {
    padding-top: 120px;
    padding-bottom: 72px;
}

.article-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.breadcrumbs ol {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumbs a {
    color: #737373;
    font-size: 14px;
    line-height: 18px;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    color: #262626;
    font-size: 14px;
    line-height: 18px;
}

.breadcrumbs img {
    width: 14px;
    height: 14px;
}

.article-layout {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    gap: 40px;
    justify-content: space-between;
}

.main-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 793px;
}

.main-layout h1 {
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    margin: 0;
}

.image-article {
    max-width: 793px;
    max-height: 472px;
    border: 1px solid #cccccc;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-article img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.article-info-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.article-info-group h2 {
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    margin: 0;
}

.article-info-block h3 {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    margin: 0 0 8px 0;
}

.article-info-block p {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    margin: 0;
    color: #262626;
}

.publication-date {
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #737373;
    margin: 0 0 16px 0;
    width: fit-content;
    display: inline-block;
    text-align: right;
    margin-left: auto;
    align-self: flex-end;
}

.related-articles {
    max-width: 487px;
    height: 780px;
    background: linear-gradient(90deg, #FCE9C9 0%, #BBC6F7 100%);
    padding: 24px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.related-articles h2 {
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    margin: 0 0 24px 0;
    flex-shrink: 0;
}

.related-articles-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 327px;
    overflow-y: auto;
    flex: 1;
    padding-right: 8px;
    scrollbar-width: none;
}

.related-articles-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.related-articles-list::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
}

.related-articles-list::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.5);
}

.related-article-card {
    width: 100%;
    background-color: #f0f0f0;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.related-article-card p {
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #404040;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.related-article-image {
    max-width: 295px;
    max-height: 138px;
    object-fit: cover;
    background-color: #ffffff;
}

.related-article-date {
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #404040;
    margin: 0;
}

.related-article-title {
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    margin: 0;
}

.article-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #f4992c;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
}

.article-link:hover span {
    text-decoration: underline;
}

.article-link img {
    width: 20px;
    height: 20px;
}

@media (max-width: 1024px) {
    .article-layout {
        flex-direction: column;
    }
    
    .main-layout {
        max-width: 100%;
    }
    
    .related-articles {
        max-width: 100%;
    }
    
    .related-articles-list {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .main-content {
        padding-top: 120px;
    }
    
    .main-layout h1 {
        font-size: 32px;
        line-height: 40px;
    }
    
    .article-info-group h2 {
        font-size: 20px;
        line-height: 28px;
    }

    .related-articles {
        display: none;
    }
}