.apn-newsroom{
    font-family:Arial,sans-serif;
    background:#fff;
    border:1px solid #d9dee8;
}
.apn-header{
    background:#243ba8;
    color:#fff;
    padding:18px 24px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:16px;
}
.apn-header__brand{
    display:flex;
    align-items:center;
    gap:14px;
    min-width:0;
}
.apn-header-logo-box{
    width:56px;
    height:56px;
    min-width:56px;
    background:#fff;
    border-radius:6px;
    padding:6px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    box-sizing:border-box;
}
.apn-header-logo{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}
.apn-site-logo--text{
    background:#fff;
    color:#243ba8;
    border-radius:4px;
    padding:8px 12px;
    font-weight:700;
}
.apn-logo-text{
    font-size:14px;
    opacity:.95;
}
.apn-title{
    font-size:18px;
    font-weight:700;
    line-height:1.2;
}
.apn-header__tools{
    margin-top:0;
    flex-shrink:0;
}
.apn-header__tools button{
    border:0;
    background:#fff;
    color:#243ba8;
    padding:10px 14px;
    border-radius:4px;
    font-weight:700;
    cursor:pointer;
    margin:0;
    line-height:1;
}
.apn-toolbar{
    display:flex;
    justify-content:space-between;
    gap:16px;
    padding:18px 20px;
    border-bottom:1px solid #e6eaf1;
    background:#f7f9fc;
}
.apn-toolbar__left,
.apn-toolbar__right{
    flex:1;
}
.apn-toolbar__right{
    display:flex;
    justify-content:flex-end;
}
.apn-toolbar input,.apn-toolbar select{
    width:100%;
    max-width:360px;
    padding:11px 12px;
    border:1px solid #cfd6e2;
    background:#fff;
    border-radius:4px;
    font-size:15px;
    box-sizing:border-box;
}
.apn-featured{
    display:grid;
    grid-template-columns:320px 1fr;
    gap:24px;
    padding:24px;
    border-bottom:1px solid #e6eaf1;
}
.apn-featured__media-box{
    width:100%;
    height:240px;
    border:1px solid #e1e5ec;
    border-radius:6px;
    background:#f8fafc;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    box-sizing:border-box;
}
.apn-featured__media-box img,
.apn-featured-logo{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}
.apn-featured__eyebrow{
    display:inline-block;
    background:#243ba8;
    color:#fff;
    padding:6px 10px;
    border-radius:999px;
    font-size:12px;
    font-weight:700;
    margin-bottom:10px;
}
.apn-featured__title{
    margin:0 0 10px;
    font-size:34px;
    line-height:1.2;
}
.apn-featured__title a{
    text-decoration:none;
    color:#1b1f24;
}
.apn-featured__meta{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    color:#5b6472;
    font-size:14px;
    margin-bottom:14px;
}
.apn-featured__category{font-weight:700}
.apn-featured__excerpt{
    font-size:17px;
    line-height:1.6;
    color:#2f3742;
    margin-bottom:16px;
}
.apn-featured__link{
    display:inline-block;
    background:#243ba8;
    color:#fff;
    text-decoration:none;
    padding:10px 14px;
    border-radius:4px;
    font-weight:700;
}
.apn-table-card{padding:20px}
.apn-news-table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
}
.apn-news-table th{
    text-align:left;
    background:#eef2f8;
    padding:12px 14px;
    border-bottom:1px solid #dbe2ed;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:.03em;
}
.apn-news-table td{
    padding:14px;
    border-bottom:1px solid #edf1f6;
    vertical-align:top;
}
.apn-news-table__time{
    width:110px;
    font-weight:700;
    color:#243ba8;
    white-space:nowrap;
}
.apn-news-table__title a{
    color:#1f2430;
    text-decoration:none;
    font-weight:700;
    line-height:1.45;
}
.apn-news-table__title a:hover,
.apn-featured__title a:hover{text-decoration:underline}
.apn-empty-box{padding:24px}

@media (max-width: 900px){
    .apn-header{
        flex-direction:column;
        align-items:flex-start;
    }
    .apn-header__tools{
        width:100%;
    }
    .apn-header__tools button{
        width:100%;
    }
    .apn-toolbar{
        flex-direction:column;
    }
    .apn-toolbar__right{
        justify-content:stretch;
    }
    .apn-toolbar input,
    .apn-toolbar select{
        max-width:none;
    }
    .apn-featured{
        grid-template-columns:1fr;
    }
    .apn-featured__media-box{
        height:220px;
    }
    .apn-featured__title{
        font-size:28px;
    }
}

@media (max-width: 640px){
    .apn-header{
        padding:16px;
    }
    .apn-title{
        font-size:16px;
    }
    .apn-logo-text{
        font-size:12px;
    }
    .apn-header-logo-box{
        width:50px;
        height:50px;
        min-width:50px;
    }
    .apn-featured,
    .apn-table-card{
        padding:16px;
    }
    .apn-featured__media-box{
        height:180px;
    }
    .apn-featured__title{
        font-size:24px;
    }
    .apn-featured__excerpt{
        font-size:15px;
    }
    .apn-news-table,
    .apn-news-table thead,
    .apn-news-table tbody,
    .apn-news-table tr,
    .apn-news-table th,
    .apn-news-table td{
        display:block;
        width:100%;
    }
    .apn-news-table thead{
        display:none;
    }
    .apn-news-table tr{
        border-bottom:1px solid #edf1f6;
        padding:10px 0;
    }
    .apn-news-table td{
        border:0;
        padding:6px 0;
    }
    .apn-news-table__time{
        width:auto;
        font-size:14px;
    }
}
