/*=============================
    Insights Wrapper
==============================*/

.insights-wrapper{
    width:100%;
    margin:0 auto;
}

/*=============================
    Category Filters
==============================*/

.insights-filters{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:30px;
}
.insights-filters button {
    background: #fff;
    color: #002067;
    border: 1px solid #E2E8F0;
    border-radius: 50px;
    padding: 10px 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
    line-height: 1;
}

.insights-filters button:hover{
    background:#0F41CC;
    color:#fff;
}
.insights-filters button.active {
    background: #0F41CC;
    color: #fff;
}

.date img {
    margin-right: 5px;
}
.time img {
    margin-right: 5px;
}

/*=============================
    Grid
==============================*/

.insights-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:20px;
}



/*=============================
    Card
==============================*/
.insight-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    transition: .35s ease;
    height: 100%;
    border: 2px solid #F1F5F9;
}

.insight-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.insight-card a{
    color:inherit;
    display:block;
    text-decoration:none;
    height:100%;
}

/*=============================
    Image
==============================*/

.insight-image{
    overflow:hidden;
    aspect-ratio:16/10;
    background:#eee;
}
.insight-image img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    display: block;
    transition: .45s;
}

/*.insight-card:hover img{*/
/*    transform:scale(1.08);*/
/*}*/

/*=============================
    Content
==============================*/

.insight-content {
    padding: 15px;
}
/* All Topics */
.insight-category.all-topics{
    background:#E8F0FF;
    color:#0F41CC;
    padding:5px;
    border-radius:5px;
}
.insight-category{
    display:inline-block;
    margin-bottom:18px;
    padding:4px 10px;
    border-radius:4px;
    font-size:12px;
    font-weight:600;
    text-transform:uppercase;
    line-height:1.4;
    border:1px solid transparent;
}

.insights-filters button img {
    width: 24px;
    padding-right: 10px;
}
/* Media Intelligence */
.insight-category.media-intelligence{
    background:#0F41CC1A;
    color:#0F41CC;
    
}

/* Media Monitoring */
.insight-category.media-monitoring{
    background:#E8FFF4;
    color:#16A34A;
}

/* PR Measurement */
.insight-category.pr-measurement{
    background:#D0FAE5;
    color:#007A55;
}

/* Reputation Intelligence */
.insight-category.reputation-intelligence{
    background:#FFEDD4;
    color:#CA3500;
}

/* Crisis Communications */
.insight-category.crisis-communications{
    background:#FFE8E8;
    color:#DC2626;
}

/* Corporate Communications */
.insight-category.corporate-communications{
    background:#D0FAE5;
    color:#007A55;
}

/* Government Communications */
.insight-category.government-communications{
    background:#E6F7FF;
    color:#0284C7;
}

/* Digital Media */
.insight-category.digital-media{
    background:#ECFDF5;
    color:#059669;
}

/* AI & Communications */
.insight-category.ai-communications{
    background:#F3E8FF;
    color:#8200DB;
}

/* Industry Perspectives */
.insight-category.industry-perspectives{
    background:#FFF7ED;
    color:#EA580C;
}
.insight-content h3 {
    font-size: 17px;
    line-height: 1.35;
    margin: 0px 0 10px;
    font-weight: 800;
    color: #051543;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.insight-content p {
    margin: 0px 0 10px;
    color: #002067;
    font-size: 14px;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/*=============================
    Meta
==============================*/

.insight-meta{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    padding-top:18px;
    border-top:1px solid #ECECEC;
    font-size:14px;
    color:#777;
}

.insight-meta span{
    display:flex;
    align-items:center;
}

/*=============================
    Loading
==============================*/

#insights-posts{
    transition:.25s;
}

#insights-posts.loading{
    opacity:.45;
    pointer-events:none;
}

/*=============================
    Tablet
==============================*/

@media(max-width:1024px){

.insights-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
}

}

/*=============================
    Mobile
==============================*/

@media(max-width:767px){

.insights-grid{
    grid-template-columns:1fr;
}

.insights-filters{
    gap:10px;
    margin-bottom:35px;
}

.insights-filters button{
    padding:12px 18px;
    font-size:14px;
}

.insight-content{
    padding:20px;
}

.insight-content h3{
    font-size:20px;
}

.insight-content p{
    font-size:14px;
}

.insight-meta{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
}

}