.page-news-time{
    display: flex;
    align-items: center;
    gap: 16px;
}

.img-main{
    width: 1440px;
    height: 459px;
    opacity: 1;
    top: 326px;
    left: 242px;
    border-radius: 6px;
}


.table-box {
    display: grid;
    border: 1px solid #BDCDD3;
    background: #f3f8fc;
    border-radius: 8px;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #d1d9df;
}

.table-row:last-child {
    border-bottom: none;
}

.table-cell {
    padding: 16px;
    font-size: 16px;
    color: #2d3b48;
    line-height: 150%;
}
.table-cell a {
    color: rgba(239, 151, 63, 1);
    text-decoration: none;
}
.table-row .table-cell {
    border-right: 1px solid #d1d9df;
}

 
.table-row .table-cell:last-child {
    border-right: none;
}

.table-cell a:hover {
    text-decoration: underline;
}


.header .table-cell {
    font-weight: 600;
    font-size: 17px;
    background: #e8f1f7;
}

 
.table-note {
    margin-top: 6px;
    font-size: 13px;
    color: #888;
}

 
 
 

.section-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1b2a3a;
}

.custom-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.custom-list li {
    position: relative;
    padding-left: 22px;
    font-size: 17px;
    line-height: 150%;
}

.custom-list li::before {
    content: "○";
    position: absolute;
    left: 0;
    top: 0;
    color: rgba(239, 151, 63, 1);
}

.three-dots-justify{
    justify-content: center;
}


 
@media (max-width: 768px) {
    .table-row {
        grid-template-columns: 1fr;
    }
}

