/*
Theme Name: Kadence Child
Theme URI: https://www.kadencewp.com/kadence-theme/
Template: kadence
Author: Kadence WP
Author URI: https://www.kadencewp.com/
Description: Kadence Theme is a lightweight yet full featured WordPress theme for creating beautiful fast loading and accessible websites, easier than ever. It features an easy to use drag and drop header and footer builder to build any type of header in minutes. It features a full library of gorgeous starter templates that are easy to modify with our intelligent global font and color controls. With extensive integration with the most popular 3rd party plugins, you can quickly build impressive ecommerce websites, course websites, business websites, and more.
Tags: translation-ready,accessibility-ready,two-columns,right-sidebar,left-sidebar,footer-widgets,blog,custom-logo,custom-background,custom-menu,rtl-language-support,editor-style,threaded-comments,custom-colors,featured-images,wide-blocks,full-width-template,theme-options,e-commerce
Version: 1.4.4.1771667514
Updated: 2026-02-21 11:51:54
*/
/* Подчеркивание заголовков — аналог оригинала */
.hero-title {
    position: relative;
    display: inline-block;
    padding-right: 1.5rem;
    padding-bottom: 0.625rem;
}

/* Тонкая линия от левого края до начала закругления */
.hero-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 50px;
    left: 0;
    height: 1px;
}

/* SVG-закругление справа */
.hero-title::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 3000px;
    height: 25px;
    background-image: url("/wp-content/uploads/2026/05/heading_line_sm.svg");
    background-repeat: no-repeat;
    background-position: 100% 100%;
}

/* Планшет */
@media (min-width: 768px) {
    .hero-title {
        padding-right: 1.875rem;
        padding-bottom: 1.25rem;
    }
    .hero-title::before {
        height: 36px; /* 2.25rem */
        background-image: url("/wp-content/uploads/2026/05/heading_line_md.svg");
    }
}

/* Десктоп */
@media (min-width: 1230px) {
    .hero-title {
        padding-right: 2.25rem;
        padding-bottom: 0.9375rem;
    }
    .hero-title::before {
        height: 40px; /* 2.5rem */
        background-image: url("/wp-content/uploads/2026/05/heading_line_xl.svg");
    }
}


.row-full-bg {
  position: relative;
  z-index: 1;
}

/* Фоновая картинка на всю ширину окна, под макетом */
.row-full-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 80%;                 /* центрируем слой относительно макета */
  transform: translateX(-50%);
  width: 150vw;              /* ширина фона = ширина окна */
  height: 100%;              /* высота фона = высоте макета строки */
  background-image: url("/wp-content/uploads/2026/05/mission_pattern.svg");
  background-repeat: no-repeat;
  background-size: 500px auto;    /* картинка заполняет весь слой */
  background-position: left -50px bottom calc(100% - 240px); 
  background-color: #EFF5FE; /* ТВОЙ цвет подложки */
  z-index: -1;               /* под содержимым макета */
	min-height: 500px;
}


/* 1. Растягиваем все карточки в ряду на одинаковую высоту */
.kb-row-layout-row > .kb-row-layout-column {
    display: flex;
}

/* 2. Контейнер карточки на 100% высоты */
.my-card-wrapper {
    height: 100% !important;
    display: flex;
    flex-direction: row;
}

/* 3. Правая колонка - флекс контейнер */
.my-card-content {
    display: flex !important;
    flex-direction: column;
    height: 100%;
}

/* 4. Заголовок - максимум 2 строки */
.my-card-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 4.8em; /* Фиксируем высоту под 2 строки */
    line-height: 1.5;
}

/* 5. Описание - максимум 3 строки */
.clamp-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 6. Кнопка прижимается к низу */
.my-card-btn {
    margin-top: auto !important;
}

/* Буллет листиком для блока Dynamic HTML */
.project-excerpt ul {
  list-style: none;
  padding-left: 0;
}

.project-excerpt ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
}

.project-excerpt ul li::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 0px;
  width: 28px;
  height: 28px;
  background: url('/wp-content/uploads/2026/06/leaf.svg') no-repeat center / contain;
}

/* Буллет листиком для блока Список */
.list-extended {
    list-style: none;
    padding-left: 0;
}

.list-extended li {
    position: relative;
    padding-left: 0px;
    margin-bottom: 8px;
}

.list-extended li::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 0px;
    width: 28px;
    height: 28px;
    background: url('/wp-content/uploads/2026/06/leaf.svg') no-repeat center / contain;
}

/* Буллет листиком для отдельного элемента блока Список */
li.custom-bullet {
    position: relative;
    padding-left: 0px;
    list-style: none;
}

li.custom-bullet::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 0px;
    width: 28px;
    height: 28px;
    background: url('/wp-content/uploads/2026/06/leaf.svg') no-repeat center / contain;
}