.logo-image > img{
    max-width: 27%;
}

.eblog-footer-copyright-area {
    width: 100%;
}

.copyright-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-links {
    display: flex;
    align-items: center;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0 5px;
}

.footer-links a:hover {
    color: #00C89A; /* Matching your accent color */
}

.footer-links .divider {
    margin: 0 5px;
    color: rgba(255,255,255,0.5);
}

.title {
    margin: 0;
}

p{
    word-break: break-all;
}

.form-control {
    border: 1px solid #e1e6eb !important;
    border-color: #e1e6eb !important;
    box-shadow: none !important;
    height: 40px !important;
    font-size: 13px !important;
    line-height: 20px !important;
    padding: 9px 12px !important;
}

.trending-news-wrapper .image-area {
    height: 250px;           /* Fixed height for uniformity */
    overflow: hidden;
    position: relative;
    border-radius: 8px;       /* Optional */
}

.trending-news-wrapper .image-area img {
    height: 100%;             /* Fill height of container */
    width: auto;              /* Maintain aspect ratio */
    object-fit: cover;        /* Crop sides if needed */
    display: block;
    position: absolute;       /* Center image horizontally */
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .trending-news-wrapper .image-area {
        height: 180px;
    }
}
