.main-content {
    display: flex;
}

.main-content-right {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-content-page-title {
    background-color: white; 
    padding: 20px;
    padding-right: 50px;
    border-radius: 5px;
    margin-bottom: 20px;
    border-right: 5px solid #1c1c84;
    width: 90%;
    position: relative;
}

.main-content-page-title h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.main-content-page-title p {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 0;
}


.main-content-page-title-line {
    display: block;
    width: 90%; 
    height: 1px;
    margin-top: 25px;
    margin-bottom: 50px;
    background-color: #ccc;
}


.main-content-news {
    padding: 15px;
}

.news-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.news-item img {
    width: 70px;
    height: 70px;
    object-fit: fill;
    padding: 2px;   
    border: 1px gray solid;
    margin-left: 10px;
}

.news-item a {
    color: black;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    text-align: right;
    flex: 1; 
    display: block;
    transition: all 0.2s ease-in;
}

.news-item a:hover {
    color: rgb(92, 219, 141);
}


.titled-text {
    margin-bottom: 10px;
}

.titled-divdir {
    width: 100px;
    height: 4px;
    background-color: #1c1c84;
}