#newsroom {
    background-color: #e3f2fd;
    padding: 100px 0;
    position: relative;
}

#newsroom h1 {
    text-align: center;
}

#newsroom h3 {
    margin-bottom: 10px;
}

#newsroom .inner {
    position: relative;
}

#newsroom .more {
    margin-top: 50px;
    justify-content: flex-end;
}

.newslist {
    margin-top: 50px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.newsbox {
    box-sizing: border-box;
    width: 800px;
    height: 150px;
    display: flex;
    align-items: center;
    background-color: #f5f7fa;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.25);
    border-radius: 20px;
    padding: 10px 20px 10px 10px;
    transform: scale(1) translateX(0);
    transition: transform 0.3s;
}

.newsbox:hover {
    transform: scale(1.05) translateX(-20px);
}

.thumnails {
    position: relative;
}

.thumnails img {
    width: auto;
    position: absolute;
    top: 0;
    left: -7%;
}

.thumnails {
    overflow: hidden;
    border-radius: 15px;
    width: 280px;
    height: 130px;
}

.article {
    margin-left: 20px;
}

.article h3 {
    width: 606px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.article p {
    width: 606px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}

.newsdriver {
    position: absolute;
    left: 0;
    bottom: -76px;
    width: 523px;
    height: 400px;
    z-index: 998;
}

.orangeroad {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ff8a00;
    height: 50px;
}