.job-card { 
	box-shadow: 0 2px 10px #eee; border-radius:1rem; 
	margin-bottom:1rem; 
	cursor:pointer; 
	display:flex; 
	flex-direction:column; 
	height:100%; 
	transition: box-shadow 0.2s; 
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    padding: 24px;
    border-radius: 20px;
    background: #f8fafc;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
	margin-top: 5%;
}

.image-grid__item {
    /* Квадратная плитка */
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.image-grid__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.16);
}

/* Image wraps */
.img-wrap {
    border-radius: 16px;          /* совпадает с плиткой */
    overflow: hidden;
    background: rgba(2, 6, 23, .5);
}

.img-wrap img {
    display: block;
    width: 100%;
    height: 100%;                 /* заполняем всю высоту плитки */
    object-fit: cover;            /* обрезаем лишнее без искажений */
    transition: transform .5s ease;
}

.img-wrap:hover img {
    transform: scale(1.05);
}

#floatingBtn {
  position: fixed;
  bottom: 30px;
  right: 10px;
  width: 60px;
  height: 60px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 0;
  border-radius: 50%;
}
.job-card:hover { box-shadow: 0 6px 22px #ddd; }
.job-title { font-weight:bold; font-size:1.2rem; }
.job-desc { color: #555; margin-bottom:.65rem; }
.job-status { border-radius:50%; width:18px; height:18px; display:inline-block; margin-right:8px;}
.status-open { background:var(--accent);}
.status-in_progress { background:#ffd33d;}
.status-closed { background:#ea4a5a;}
@media (max-width:576px){
	.job-title{font-size:1rem;}
	.image-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 16px;
		margin-top: 5%;
    }
}
