
.company-logo img {
    height: 200px !important;
    border-radius: 8px;
}


.job-card .company-logo {
    border-radius: var(--radius);
    overflow: hidden;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    background-color: var(--light-color);
    flex-shrink: 0;
    width: 100%;
    height:  40% !important;
    display: inline-block;
}


.company-logo img {
    height: 200px !important;
    width: 100%;
    object-fit: cover !important;
}


/* ===============================
   Single Post Thumbnail Enhancement
   =============================== */

.single-post .post-thumbnail {
    margin: 1.5rem 0 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}

/* Make image perfect fit */
.single-post .post-thumbnail img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Subtle zoom effect */
.single-post .post-thumbnail:hover img {
    transform: scale(1.05);
}

/* Optional overlay gradient (premium look) */
.single-post .post-thumbnail::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.25), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.single-post .post-thumbnail:hover::after {
    opacity: 1;
}


.single-post .post-thumbnail img {
    width: 100%;
    height: 100% !important;   /* full height */
    object-fit: cover; /* keeps image nicely cropped */
}


.post-thumbnail img {
    height: 100% !important;
    object-fit: cover;
}


/*  Post dateail  width */
.entry-content  {
    flex: 2.5 !important;
}


/* Home page CATEGORY */
/* Wrapper with 25% left & right space */
.category-cloud-wrapper {
    padding-left: 25%;
    padding-right: 25%;
    margin-bottom: 30px;
    text-align: center;
}

/* Title */
.category-title {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: bold;
}

/* Cloud container */
.category-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

/* Cloud items */
.cloud-item {
    text-decoration: none;
    background: #f1f5f9;
    color: #333;
    padding: 8px 14px;
    border-radius: 20px;
    transition: 0.3s;
    display: inline-block;
}

/* Hover */
.cloud-item:hover {
    background: #2563eb;
    color: #fff;
}

/* Size variations */
.cloud-item.small {
    font-size: 12px;
}

.cloud-item.medium {
    font-size: 14px;
}

.cloud-item.large {
    font-size: 18px;
    font-weight: bold;
}

/* Count style */
.cloud-item span {
    font-size: 11px;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .category-cloud-wrapper {
        padding-left: 10%;
        padding-right: 10%;
    }
}
