Загрузка данных
<style>
.nb-checks,
.nb-checks * {
box-sizing: border-box;
}
.nb-checks {
--blue: #2563eb;
--blue-light: #eaf3ff;
--dark: #111827;
--border: #bcd4fa;
width: 100%;
margin: 0;
padding: 18px 0 26px;
font-family: inherit;
}
/* Сетка из шести карточек */
.nb-checks__grid {
width: 100%;
display: grid;
grid-template-columns: repeat(6, minmax(0, 1fr));
gap: clamp(8px, 1vw, 16px);
}
/* Карточка */
.nb-checks__item {
position: relative;
min-width: 0;
min-height: 210px;
padding: 24px 12px 22px;
display: flex;
flex-direction: column;
align-items: center;
overflow: hidden;
color: var(--dark);
background: rgba(255, 255, 255, 0.96);
border: 2px solid var(--border);
box-shadow: 5px 5px 0 rgba(37, 99, 235, 0.12);
transition:
transform 0.2s ease,
border-color 0.2s ease,
box-shadow 0.2s ease;
}
/* Синий угол */
.nb-checks__item::before {
content: "";
position: absolute;
top: -2px;
left: -2px;
width: 15px;
height: 15px;
background: var(--blue);
}
/* Номер */
.nb-checks__number {
position: absolute;
top: 14px;
right: 12px;
color: var(--blue);
font-size: 10px;
font-weight: 800;
line-height: 1;
letter-spacing: 0.12em;
}
/* Контейнер для вашей иконки */
.nb-checks__icon {
width: 58px;
height: 58px;
margin: 5px 0 19px;
display: flex;
align-items: center;
justify-content: center;
flex: 0 0 auto;
overflow: hidden;
background: var(--blue-light);
border: 2px solid var(--blue);
box-shadow: 4px 4px 0 rgba(37, 99, 235, 0.18);
}
/* Ваша растровая или SVG-иконка */
.nb-checks__icon img {
display: block;
width: 34px;
height: 34px;
object-fit: contain;
}
/* Если вы вставите SVG-код вручную */
.nb-checks__icon svg {
display: block;
width: 34px;
height: 34px;
color: var(--blue);
}
/* Название */
.nb-checks__title {
width: 100%;
margin: 0;
color: var(--dark);
font-size: clamp(15px, 1.25vw, 19px);
font-weight: 800;
line-height: 1.28;
text-align: center;
overflow-wrap: break-word;
hyphens: auto;
}
/* Нижняя декоративная линия */
.nb-checks__item::after {
content: "";
width: 42px;
height: 3px;
margin-top: auto;
padding-top: 18px;
border-bottom: 3px solid var(--blue);
}
/* Наведение */
.nb-checks__item:hover {
z-index: 2;
border-color: var(--blue);
transform: translate(-3px, -3px);
box-shadow: 8px 8px 0 rgba(37, 99, 235, 0.2);
}
/* Планшеты и небольшие экраны */
@media (max-width: 1100px) {
.nb-checks__grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 16px;
}
.nb-checks__item {
min-height: 205px;
}
.nb-checks__title {
font-size: 18px;
}
}
/* Телефоны */
@media (max-width: 600px) {
.nb-checks {
padding: 12px 0 22px;
}
.nb-checks__grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 12px;
}
/* Скрываем только карточки 02, 03 и 04 */
.nb-checks__item:nth-child(2),
.nb-checks__item:nth-child(3),
.nb-checks__item:nth-child(4) {
display: none;
}
.nb-checks__item {
min-height: 185px;
padding: 21px 10px 18px;
}
.nb-checks__icon {
width: 52px;
height: 52px;
margin-bottom: 16px;
}
.nb-checks__icon img,
.nb-checks__icon svg {
width: 30px;
height: 30px;
}
.nb-checks__title {
font-size: 15px;
line-height: 1.25;
}
}
/* Очень узкие телефоны */
@media (max-width: 360px) {
.nb-checks__grid {
grid-template-columns: 1fr;
}
.nb-checks__item {
min-height: 170px;
}
}
</style>
<section class="nb-checks">
<div class="nb-checks__grid">
<!-- Карточка 01 -->
<article class="nb-checks__item">
<span class="nb-checks__number">01</span>
<span class="nb-checks__icon">
<img src="http://notebook1local.local/wp-content/uploads/2026/07/Computers-Devices-Electronicsmicrochip-Board-Streamline-Pixel-1.svg" alt="">
</span>
<h3 class="nb-checks__title">
Проверка аппаратных компонентов
</h3>
</article>
<!-- Карточка 02 -->
<article class="nb-checks__item">
<span class="nb-checks__number">02</span>
<span class="nb-checks__icon">
<img src="http://notebook1local.local/wp-content/uploads/2026/07/Interface-Essential-Flash-Streamline-Pixel-1.svg" alt="">
</span>
<h3 class="nb-checks__title">
Проверка систем охлаждения
</h3>
</article>
<!-- Карточка 03 -->
<article class="nb-checks__item">
<span class="nb-checks__number">03</span>
<span class="nb-checks__icon">
<img src="http://notebook1local.local/wp-content/uploads/2026/07/Computers-Devices-Electronics-Battery-Charge-Streamline-Pixel-1.svg" alt="">
</span>
<h3 class="nb-checks__title">
Проверка аккумулятора и питания
</h3>
</article>
<!-- Карточка 04 -->
<article class="nb-checks__item">
<span class="nb-checks__number">04</span>
<span class="nb-checks__icon">
<img src="http://notebook1local.local/wp-content/uploads/2026/07/Computers-Devices-Electronics-Harddisk-Streamline-Pixel-1.svg" alt="">
</span>
<h3 class="nb-checks__title">
Тестирование оперативной памяти и накопителей
</h3>
</article>
<!-- Карточка 05 -->
<article class="nb-checks__item">
<span class="nb-checks__number">05</span>
<span class="nb-checks__icon">
<img src="http://notebook1local.local/wp-content/uploads/2026/07/Interface-Essential-Cog-Browser-Streamline-Pixel.svg" alt="">
</span>
<h3 class="nb-checks__title">
Проверка программного обеспечения
</h3>
</article>
<!-- Карточка 06 -->
<article class="nb-checks__item">
<span class="nb-checks__number">06</span>
<span class="nb-checks__icon">
<img src="http://notebook1local.local/wp-content/uploads/2026/07/Interface-Essential-Zoom-Out-Page-Streamline-Pixel-1.svg" alt="">
</span>
<h3 class="nb-checks__title">
Выявление ошибок и неисправностей
</h3>
</article>
</div>
</section>