/* Insights Block Styles */
.insights-section {
    padding: 60px 0;
    background: #fff;
}

.insights-title {
    text-align: center;
    font-size: 48px;
    font-weight: 600;
    color: #312F31;
    margin-bottom: 40px;
}

.insights-grid {
    margin-bottom: 40px;
}

.insights-item {
    margin-bottom: 30px;
}

.insights-card {
    background: #fff;
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    border-radius: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.insights-card:hover {
    box-shadow: 0 1px 15px 0 rgba(0, 0, 0, 0.21);
}

.insights-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    position: relative;
}

.insights-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.insights-card:hover .insights-image img {
    transform: scale(1.05);
}

.insights-image-placeholder {
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.insights-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.insights-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 12px;
    color: #8F8F8F;
    font-family: 'Ubuntu', sans-serif;
}

.insights-separator {
    color: #8F8F8F;
}

.insights-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #312F31;
    margin-bottom: 12px;
    line-height: 1.4;
    flex-grow: 1;
}

.insights-card-title a {
    color: #312F31;
    text-decoration: none;
    transition: color 0.3s ease;
}

.insights-card-title a:hover {
    color: #0077A3;
}

.insights-read-more {
    font-size: 14px;
    font-weight: 600;
    color: #0077A3;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.insights-read-more span {
    display: inline-block;
    transition: transform 0.3s ease;
}

.insights-read-more:hover {
    color: #005a7a;
}

.insights-read-more:hover span {
    transform: translateX(5px);
}

.insights-view-all {
    text-align: center;
    margin-top: 30px;
}

.insights-view-all-btn {
    background-color: #000;
    color: #FFFFFF;
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 14px 40px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.insights-view-all-btn:hover {
    background-color: #333;
    color: #FFFFFF;
    text-decoration: none;
    transform: translateY(-2px);
}

.insights-admin-message {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 5px;
    padding: 15px 20px;
    margin: 20px 0;
    text-align: center;
}

.insights-admin-message p {
    margin: 0;
    color: #856404;
    font-size: 14px;
}

/* Responsive Styles */
@media only screen and (max-width: 991px) {
    .insights-title {
        font-size: 36px;
    }
    
    .insights-image {
        height: 180px;
    }
    
    .insights-card-title {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .insights-section {
        padding: 40px 0;
    }
    
    .insights-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .insights-image {
        height: 160px;
    }
    
    .insights-content {
        padding: 15px;
    }
    
    .insights-card-title {
        font-size: 16px;
    }
    
    .insights-meta {
        font-size: 11px;
    }
    
    .insights-read-more {
        font-size: 13px;
    }
    
    .insights-view-all-btn {
        padding: 12px 30px;
        font-size: 12px;
    }
}

@media only screen and (max-width: 575px) {
    .insights-title {
        font-size: 24px;
    }
    
    .insights-image {
        height: 140px;
    }
}

