.labaratory-section {
    padding: 261px 0 160px;
}

.lab-section__head {
    text-align: center;
    margin-bottom: 52px;
}
.lab-section__title {
    margin: 0;
    color: var(--text);
    font-weight: 700;
    font-size: 32px;
    line-height: 1.1;
}
.lab-section__title span {
    color: #4FA6F2;
    display: block;
}
.lab-section__subtitle {
    margin: 0;
    color: var(--text);
    opacity: 0.85;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 600;
}

.lab-section__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.lab-card {
    background: #ffffff;
    border-radius: 25px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 30px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 333px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    will-change: transform, box-shadow;
}
.lab-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.lab-card__title {
    margin: 0;
    color: var(--text);
    font-size: 22px;
    line-height: 1.15;
    font-weight: 600;
}
.lab-card__meta {
    display: grid;
    grid-template-columns: 1fr 5fr;
    align-items: center;
    gap: 20px;
}
.lab-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #4FA6F2;
}
.lab-card__icon img {
    width: 28px;
    height: auto;
}
.lab-card__text {
    margin: 0;
    color: var(--text);
    opacity: 0.8;
    font-size: 16px;
    line-height: 1.1;
    font-weight: 400;
}
.lab-card__image-wrap {
    width: 100%;
    height: 146px;
    border-radius: 20px;
    overflow: hidden;
}
.lab-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
    will-change: transform;
}
.lab-card:hover .lab-card__image-wrap img {
    transform: scale(1.05);
}

.lab-card__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}