/* --- BASE WRAPPER --- */
.nethub-spotlight-card {
    position: relative;
    width: 100%;
    border-radius: 32px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    text-decoration: none;
    border: 1px solid #EAECF0;
}

/* Hover Effect: Lift and Shadow */
.nethub-spotlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: #00828e;
}

/* --- 1. NO IMAGE STATE --- */
.nethub-spotlight-card.no-image {
    background-color: #F9FAFB;
    align-items: flex-start; 
    height: auto;
    min-height: 0; 
}

.nethub-spotlight-card.no-image .nethub-overline {
    margin-bottom: 15px;
    display: inline-flex;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #00828e;
    line-height: 1;
}

.nethub-spotlight-card.no-image .spotlight-title { color: #0e2b3c; }
.nethub-spotlight-card.no-image .spotlight-desc { color: #475467; }
.nethub-spotlight-card.no-image .nethub-btn-plain { color: #0e2b3c; }

/* --- 2. WITH IMAGE STATE --- */
.nethub-spotlight-card.has-image {
    align-items: flex-end; 
    min-height: 250px;
    border: none;
}

.nethub-spotlight-card.has-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.85), transparent);
    z-index: 1;
}

.nethub-spotlight-card.has-image .card-tag {
    position: relative;
    z-index: 2;
    background: #00828e;
    color: white;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.nethub-spotlight-card.has-image .spotlight-title { color: #ffffff; }
.nethub-spotlight-card.has-image .spotlight-desc { color: rgba(255, 255, 255, 0.8); }
.nethub-spotlight-card.has-image .nethub-btn-plain { color: #ffffff; }

/* --- SHARED ELEMENTS --- */
.nethub-spotlight-overlay {
    position: relative;
    z-index: 5;
    width: 100%;
}

.nethub-spotlight-card .spotlight-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.nethub-spotlight-card .spotlight-desc {
    font-size: 16px;
    line-height: 1.4;		
	font-weight: 400;
    margin-bottom: 20px;
}

/* Button & Arrow Logic */
.nethub-spotlight-card .nethub-btn-plain {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    transition: color 0.3s ease;
}

.nethub-spotlight-card .btn-arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

/* Hovers */
.nethub-spotlight-card:hover .nethub-btn-plain {
    color: #00828e;
}

.nethub-spotlight-card:hover .btn-arrow {
    transform: translateX(5px);
}