/* ===== INFO GRID — универсальная сетка карточек ===== */

.info-grid {
    display: grid;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.info-grid--2cols {
    grid-template-columns: repeat(2, 1fr);
}

.info-card {
    border: 4px solid #ffde00;
    border-radius: 16px;
    padding: 30px;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 196, 0, 0.2);
}

.info-card__title {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: 400;
    color: #222;
    line-height: 1.3;
}

.info-card__dash {
    flex-shrink: 0;
    font-size: 26px;
    font-weight: 400;
    color: black;
}

.info-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card__list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.info-card__list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffde00;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
}

.info-pair {
    margin-bottom: 14px;
}

.info-pair:last-child {
    margin-bottom: 0;
}

.info-pair__term {
    font-weight: 700;
    color: #222;
    margin-bottom: 4px;
    font-size: 14px;
}

.info-pair__desc {
    margin: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .info-grid--2cols {
        grid-template-columns: 1fr;
    }
    
    .info-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .info-card {
        padding: 20px;
        border-width: 4px;
    }
    
    .info-card__title {
        font-size: 22px;
    }
    
    .info-card__dash {
        font-size: 22px;
    }
}

/* ===== VK PROBLEMS GRID ===== */
.vk-problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
    margin: 40px 0 0 0;
}

.vk-problem-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.vk-problem-card__arrow-wrap {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vk-problem-card__arrow {
    width: 100px;
    height: 100px;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center center;
}

.vk-problem-card:hover .vk-problem-card__arrow {
    transform: rotate(-20deg);
}

.vk-problem-card__content {
    flex: 1;
    min-width: 0;
}

.vk-problem-card__title {
    margin: 0 0 12px 0;
    font-size: 26px;
    font-weight: 400;
    color: #222;
    line-height: 1.35;
	text-wrap: pretty;
}

.vk-problem-card__body {
	text-wrap: pretty;
}

@media (max-width: 992px) {
    .vk-problems-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .vk-problem-card__arrow-wrap {
        width: 70px;
        height: 70px;
    }

    .vk-problem-card__arrow {
        width: 70px;
        height: 70px;
    }

    .vk-problem-card__title {
        font-size: 20px;
    }

    .vk-problem-card__body {
        font-size: 16px;
    }
}

.template--service .custom-action {
	justify-content: center;
}

.template--service .blog__slider-navigation .swiper-pagination-bullets {
	position: static;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin: 0;
    transform: none;
}

.info-card .underline {
	box-shadow: inset 0 -.4em 0 0 #ffde00;
}

/* ===== YOUTUBE RESULT SECTION ===== */
.youtube-result-section {
    padding: 60px 0;
}

.youtube-result-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.youtube-result-card {
    display: flex;
    gap: 25px;
    padding: 35px;
    border: 4px solid #ffde00;
    border-radius: 16px;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.youtube-result-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 196, 0, 0.15);
}

.youtube-result-card__arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #ffde00;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.youtube-result-card__content {
    flex: 1;
    min-width: 0;
}

.youtube-result-card__title {
    margin: 0 0 15px 0;
    font-size: 26px;
    line-height: 1.3;
}

.youtube-result-card__subtitle {
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.youtube-result-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.youtube-result-card__list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

.youtube-result-card__list li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #ffde00;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
}

.youtube-result-card__list li:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .youtube-result-card {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
    }
    
    .youtube-result-card__arrow {
        width: 30px;
        height: 30px;
    }
    
    .youtube-result-card__title {
        font-size: 20px;
    }
    
    .youtube-result-card__subtitle {
        font-size: 15px;
    }
    
    .youtube-result-card__list li {
        font-size: 14px;
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .youtube-result-section {
        padding: 40px 0;
    }
    
    .youtube-result-card {
        padding: 20px;
    }
}