

.company-intro-container {
    display: flex;
    margin: 0 auto;
    padding: 30px 0;
    flex-direction: row;
    align-items: flex-start;
}

.company-intro-sidebar {
    width: 250px;
    flex: 1;
    background-color: white;
    margin-right: 15px;
}

.sidebar-title {
    font-size: 20px;
    color: #1577ce;
    margin: 0;
    margin-bottom: 1px;
    border-bottom: 1px solid #d4a915;
    padding: 10px;
}

.sidebar-menu {
    list-style-type: none;
    padding: 15px;
    text-align: center;
}

.sidebar-item {
    margin-bottom: 20px;
    padding: 7px;
    cursor: pointer;
    border-radius: 5px;
    background: linear-gradient(to bottom, #fefdfd, #dedfde);
}

.company-intro-main {
    flex: 3;
    padding: 20px;
    background: white;
    min-height: 440px;
}

.company-news-list {
    list-style-type: none;
    padding: 0;
}

.news-item {
    margin-bottom: 20px;
    border-bottom: 1px dotted #ddd;
}

.news-link{
    display: flex;

}

.news-image {
    width: 120px;
    height: 80px;
    object-fit: cover;
    margin-right: 20px;
    padding-bottom: 20px;
}

.news-title {
    margin: 0 0 10px 0;
    font-size: 16px;
}

.news-date {
    color: #888;
    font-size: 14px;
}





