

/* Start:/local/components/custom/services-detail/templates/.default/style.css?178524062719957*/
/* ═══════════════════════════════════════════════════════════
   custom:services-detail — стили
   Контентная ширина: 1200px (внутри страницы шириной 1672px)
   ═══════════════════════════════════════════════════════════ */

/* ── Сброс / базовые переменные ──────────────────────────── */
.sd *,
.sd *::before,
.sd *::after { box-sizing: border-box; }

:root {
    --sd-accent:      #1A3C6E;   /* тёмно-синий */
    --sd-yellow:      #F2C31A;   /* жёлтый CTA */
    --sd-orange:      #E67725;   /* основной оранжевый цвет */
    --sd-blue-dark:   #0D2B55;   /* hero фон */
    --sd-blue-intro:  #1B4B8A;   /* intro-блок */
    --sd-text:        #1A1A1A;
    --sd-text-muted:  #555;
    --sd-radius:      50px;
    --sd-container:   1625px;    /* контентная ширина */
}

/* ── Обёртка контейнера ───────────────────────────────────── */
.sd-container {
    max-width: var(--sd-container);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */
.sd-hero {
    background: #ffffff;
    color: #000;
    padding: 20px 0 48px;
    position: relative;
    overflow: hidden;
}

.sd-hero__inner {
    display: flex;
    align-items: center;
    gap: 48px;
}

.sd-hero__content {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sd-hero__title {
    font-size: clamp(26px, 3.2vw, 44px);
    font-weight: 800;
    line-height: 1.18;
    margin: 0;
    color: #000;
}

.sd-hero__specialist {
    font-size: 15px;
    color: rgba(255,255,255,.72);
    margin: 0;
}

.sd-hero__img-wrap {
    flex: 0 0 auto;
    width: clamp(280px, 36%, 520px);
}

.sd-hero__img {
    width: 100%;
    border-radius: var(--sd-radius);
    display: block;
    object-fit: cover;
    max-height: 340px;
    box-shadow: 16px 16px 0px 0px rgb(31 111 190);
    transition: transform .2s, box-shadow .2s;
    border: 1px solid #1f6fbe47;
}

/* ── Breadcrumbs ─────────────────────────────────────────── */
.sd-breadcrumbs__list {
    list-style: none;
    margin: 0 0 8px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 13px;
    color: #E67725;
}
.sd-breadcrumbs__link {
    color: #E67725;
    text-decoration: none;
    transition: color .2s;
}
.sd-breadcrumbs__link:hover { color: #727272; }
.sd-breadcrumbs__sep { margin: 0 2px; }
.sd-breadcrumbs__item--active { color: #727272; }

/* ── Кнопка CTA ──────────────────────────────────────────── */
.sd-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: opacity .2s, transform .1s;
    border: 2px solid transparent;
    line-height: 1.2;
    white-space: nowrap;
}
.sd-btn:hover { opacity: .88; transform: translateY(-1px); }
.sd-btn--yellow {
    background: var(--sd-orange);
    color: #FFF;
    text-align: center;
    border-color: var(--sd-orange);
    width: 40%;
}
.sd-btn--outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.55);
}
.sd-btn--outline:hover { border-color: #fff; }

/* ════════════════════════════════════════
   INTRO (синий блок-определение)
   ════════════════════════════════════════ */
.sd-intro {
    background: var(--sd-blue-intro);
    color: #fff;
    padding: 28px 0;
}
.sd-intro__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
}
/* Полужирное первое слово / акцентный стиль через «strong» из редактора */
.sd-intro__text strong { font-weight: 700; }

/* ════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════ */
.sd-about {
    padding: 64px 0 10px;
    background: #fff;
}

.sd-about__title {
    font-size: clamp(22px, 2.8vw, 38px);
    font-weight: 800;
    color: var(--sd-accent);
    margin: 0 0 40px;
    line-height: 1.2;
}

.sd-about__body {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.sd-about__left { flex: 1 1 0; min-width: 0; }

.sd-about__list {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sd-about__list-item {
    position: relative;
    padding-left: 20px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--sd-text);
}
.sd-about__list-item::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--sd-yellow);
    font-size: 18px;
    line-height: 1.3;
}

.sd-about__text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--sd-text-muted);
}
.sd-about__text p { margin: 0 0 14px; }
.sd-about__text strong { font-weight: 700; color: var(--sd-orange); }

.sd-about__right { flex: 0 0 auto; width: clamp(260px, 38%, 480px); }
.sd-about__img {
    width: 100%;
    border-radius: var(--sd-radius);
    display: block;
    object-fit: cover;
    max-height: 400px;
}

/* ════════════════════════════════════════
   WHY — «Почему выбирают нас»
   ════════════════════════════════════════ */
.sd-why {
    background: #f5f7fb;
    padding: 56px 0;
}

.sd-why__title {
    font-size: clamp(20px, 2.4vw, 32px);
    font-weight: 700;
    color: var(--sd-accent);
    margin: 0 0 36px;
    text-align: right;
}

/* Иконки */
.sd-why__icons {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 32px;
    justify-content: flex-end;
    margin-bottom: 32px;
}
.sd-why__icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 80px;
    max-width: 110px;
    text-align: center;
}
.sd-why__icon-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}
.sd-why__icon-label {
    font-size: 12px;
    color: var(--sd-text-muted);
    line-height: 1.3;
}

/* Текст + читать далее */
.sd-why__body {
    background: #fff;
    border-radius: var(--sd-radius);
    padding: 28px 32px;
    margin-bottom: 28px;
}
.sd-why__text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--sd-text-muted);
    margin-bottom: 12px;
}
.sd-why__text p { margin: 0 0 12px; }
.sd-why__more {
    font-size: 14px;
    font-weight: 600;
    color: var(--sd-accent);
    text-decoration: underline;
}
.sd-why__more:hover { opacity: .75; }

/* Кнопки под why */
.sd-why__btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.sd-why__btns .sd-btn--outline {
    background: var(--sd-accent);
    color: #fff;
    border-color: var(--sd-accent);
}
.sd-why__btns .sd-btn--outline:hover { background: #153260; border-color: #153260; }

/* ════════════════════════════════════════
   PRICES — тарифы
   ════════════════════════════════════════ */
.sd-prices {
    background: #fff;
    padding: 0 0 52px;
}

.sd-prices__title {
    font-size: clamp(20px, 2.4vw, 32px);
    font-weight: 800;
    color: var(--sd-accent);
    margin: 0 0 36px;
}

.sd-prices__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.sd-prices__item {
    background: #f5f7fb;
    border-radius: var(--sd-radius);
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: box-shadow .2s;
}
.sd-prices__item:hover {
    box-shadow: 0 4px 18px rgba(26,60,110,.1);
}

.sd-prices__name {
    font-size: 14px;
    color: var(--sd-text-muted);
    line-height: 1.4;
}

.sd-prices__price {
    font-size: 22px;
    font-weight: 800;
    color: var(--sd-text);
}

/* ════════════════════════════════════════
   АДАПТИВ
   ════════════════════════════════════════ */
@media (max-width: 900px) {
    .sd-hero__inner   { flex-direction: column; gap: 32px; }
    .sd-hero__img-wrap{ width: 100%; }
    .sd-about__body   { flex-direction: column; }
    .sd-about__right  { width: 100%; }
    .sd-why__title    { text-align: left; }
    .sd-why__icons    { justify-content: flex-start; }
}

@media (max-width: 600px) {
    .sd-hero        { padding: 36px 0 32px; }
    .sd-about       { padding: 40px 0; }
    .sd-why         { padding: 40px 0; }
    .sd-prices      { padding: 40px 0 48px; }
    .sd-prices__grid{ grid-template-columns: 1fr; }
    .sd-btn         { padding: 12px 22px; font-size: 14px; }
    .sd-why__body   { padding: 20px; }
    .sd-btn--yellow { width: 60%;}
    .sd-hero__title { font-size: clamp(30px, 3.2vw, 44px); }
}
/* ═══════════════════════════════════════════════════════════════
   БЛОКИ DETAIL_TEXT (классы dt-*)
   Используются в продающих страницах услуг (DETAIL_TEXT).
   Все классы изолированы префиксом .dt- — конфликтов нет.
   ═══════════════════════════════════════════════════════════════ */

/* ── Общий заголовок секции ──────────────────────────────────── */
.dt-section-title {
    font-size: clamp(20px, 2.6vw, 32px);
    font-weight: 800;
    color: var(--sd-accent, #1A3C6E);
    margin: 0 0 32px;
    line-height: 1.2;
}

/* ════════════════════════════════════════
   INTRO — синяя вводная полоса
   ════════════════════════════════════════ */
.dt-intro {
    background: #1B4B8A;
    color: #fff;
    padding: 28px 32px;
    border-radius: 10px;
    margin: 0 0 40px;
    font-size: 15px;
    line-height: 1.7;
}
.dt-intro strong { font-weight: 700; }

/* ════════════════════════════════════════
   TOP БЛОК — сетка CTA
   ════════════════════════════════════════ */
.dt-sta__card {
    background: #ffffff;
    border-radius: 12px;
    padding: 28px 0 24px;
    margin: 30px 0 0 0;
}
.dt-sta__card:hover {}
.dt-sta__name {
    font-size: 20px;
    font-weight: 700;
    color: #1A3C6E;
    margin: 0 0 8px;
}
.dt-sta__desc {
    font-size: 14px;
    line-height: 1.55;
    color: #555;
    margin: 0;
}

/* ════════════════════════════════════════
   BENEFITS — сетка преимуществ
   ════════════════════════════════════════ */
.dt-benefits {
    margin: 0 0 56px;
}
.dt-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.dt-benefits__card {
    background: #e8efff;
    border-radius: 12px;
    padding: 28px 24px 24px;
    transition: box-shadow .25s, transform .2s;
}
.dt-benefits__card:hover {
    box-shadow: 0 6px 24px rgba(26,60,110,.1);
    transform: translateY(-3px);
}
.dt-benefits__icon {
    font-size: 32px;
    margin-bottom: 12px;
    line-height: 1;
}
.dt-benefits__name {
    font-size: 15px;
    font-weight: 700;
    color: #1A3C6E;
    margin: 0 0 8px;
}
.dt-benefits__desc {
    font-size: 14px;
    line-height: 1.55;
    color: #555;
    margin: 0;
}

/* ════════════════════════════════════════
   STEPS — пошаговый процесс
   ════════════════════════════════════════ */
.dt-steps {
    margin: 0 0 56px;
}
.dt-steps__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}
.dt-steps__list::before {
    content: "";
    position: absolute;
    left: 23px;
    top: 24px;
    bottom: 12px;
    width: 1px;
    background: #e0e7f3;
    z-index: 0;
}
.dt-steps__item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 20px 0;
    position: relative;
    z-index: 1;
}
.dt-steps__num {
    flex: 0 0 48px;
    height: 48px;
    width: 48px;
    border-radius: 50%;
    background: #1A3C6E;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.dt-steps__body {
    padding-top: 10px;
}
.dt-steps__body strong {
    font-size: 16px;
    font-weight: 700;
    color: #1A1A1A;
    display: block;
    margin-bottom: 6px;
}
.dt-steps__body p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* ════════════════════════════════════════
   PRICES — таблица цен
   ════════════════════════════════════════ */
.dt-prices {
    margin: 0 0 56px;
}
.dt-prices__table {
    width: 70%;
    border-collapse: collapse;
    font-size: 14px;
    line-height: 1.4;
}
.dt-prices__table thead th {
    background: #1A3C6E;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    text-align: left;
    padding: 12px 16px;
    min-width: 90px;
}
.dt-prices__table thead th:first-child { border-radius: 8px 0 0 0; }
.dt-prices__table thead th:last-child  { border-radius: 0 8px 0 0; }

.dt-prices__table tbody tr:nth-child(even) { background: #f5f7fb; }
.dt-prices__table tbody tr:nth-child(odd)  { background: #fff; }
.dt-prices__table tbody tr:hover { background: #edf1f9; }
.dt-prices__table tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid #e8ecf4;
    vertical-align: middle;
}
.dt-prices__table tbody td strong {
    font-weight: 700;
    color: #1A3C6E;
    font-size: 15px;
}
.dt-prices__note {
    font-size: 13px;
    color: #888;
    margin: 12px 0 0;
    line-height: 1.5;
}

/* ════════════════════════════════════════
   FAQ — аккордеон
   ════════════════════════════════════════ */
.dt-faq {
    margin: 0 0 56px;
    width: 60%;
}
.dt-faq__item {
    border-bottom: 1px solid #e0e7f3;
}
.dt-faq__item:first-of-type { border-top: 1px solid #e0e7f3; }
.dt-faq__q {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 40px 18px 0;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
    cursor: pointer;
    line-height: 1.4;
    position: relative;
    transition: color .2s;
}
.dt-faq__q:hover { color: #1A3C6E; }
.dt-faq__q::after {
    content: "+";
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    font-weight: 400;
    color: #1A3C6E;
    transition: transform .3s;
    line-height: 1;
}
.dt-faq__q[aria-expanded="true"]::after {
    transform: translateY(-50%) rotate(45deg);
}
.dt-faq__a {
    overflow: hidden;
    max-height: 0;
    transition: max-height .35s ease;
}
.dt-faq__a p {
    padding: 4px 0 20px;
    font-size: 14px;
    line-height: 1.65;
    color: #555;
    margin: 0;
}
.dt-faq__a strong { font-weight: 700; color: #e66425; }

/* ════════════════════════════════════════
   CTA — финальный призыв к действию
   ════════════════════════════════════════ */
.dt-cta-bottom {
    background: #0D2B55;
    border-radius: 16px;
    padding: 48px 40px;
    margin: 0 0 40px;
    color: #fff;
}
.dt-cta-bottom__inner { max-width: 720px; }
.dt-cta-bottom__title {
    font-size: clamp(22px, 2.8vw, 34px);
    font-weight: 800;
    margin: 0 0 8px;
    color: #fff;
    line-height: 1.2;
}
.dt-cta-bottom__sub {
    font-size: 14px;
    color: rgba(255,255,255,.7);
    margin: 0 0 28px;
}
.dt-cta-bottom__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}
.dt-cta-bottom__btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity .2s, transform .15s;
    white-space: nowrap;
}
.dt-cta-bottom__btn:hover { opacity: .88; transform: translateY(-1px); }
.dt-cta-bottom__btn--yellow {
    background: #ef801c;
    color: #FFFFFF;
}
.dt-cta-bottom__btn--phone {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.5);
}
.dt-cta-bottom__btn--phone:hover { border-color: #fff; }
.dt-cta-bottom__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.dt-cta-bottom__list li {
    font-size: 14px;
    color: rgba(255,255,255,.85);
}

/* ════════════════════════════════════════
   АДАПТИВ для .dt-* блоков
   ════════════════════════════════════════ */
@media (max-width: 1024px) {
    .dt-benefits__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .dt-intro           { padding: 20px; }
    .dt-benefits__grid  { grid-template-columns: 1fr; }
    .dt-cta-bottom      { padding: 32px 24px; }
    .dt-prices__table thead th:nth-child(3),
    .dt-prices__table tbody td:nth-child(3) { display: none; }
    .dt-faq {width: 100%;}
}

@media (max-width: 480px) {
    .dt-steps__list::before { display: none; }
    .dt-cta-bottom__actions { flex-direction: column; }
    .dt-cta-bottom__btn     { text-align: center; }
    .dt-prices__table       { font-size: 13px; }
    .dt-prices__table td,
    .dt-prices__table th    { padding: 10px 10px; }
}

/* End */


/* Start:/local/templates/vetclinic/components/bitrix/news.list/doctors_page/style.css?17820637442652*/
/* ── Секция врачей ──────────────────────────────────────── */
.dt-doctors { padding: 0 0 48px; }

.dt-doctors__title {
    font-size: 26px; font-weight: 800;
    color: #1a2a3a; line-height: 1.25; margin: 0 0 32px;
}
.dt-doctors__title-accent { color: #f07b28; }

/* Сетка 2 колонки */
.dt-doctors__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
@media (max-width: 900px) {
    .dt-doctors__grid { grid-template-columns: 1fr; }
}

/* Карточка с синей «волной» справа-снизу */
.dt-doctors__card {
    background: #fff;
    border-radius: 50px;
    border: 1.5px solid #dce8f5;
    border-bottom: 11px solid #1f6fbe;
    border-right: 11px solid #1f6fbe;
    padding: 20px 24px 20px 20px;
    position: relative; overflow: hidden;
    transition: box-shadow .22s, transform .22s;
    min-height: 240px;
}
.dt-doctors__card:hover {
    box-shadow: 0 10px 36px rgba(30,95,174,.14);
    transform: translateY(-3px);
}
/* Декоративный уголок */
.dt-doctors__card::after {
    content: ""; position: absolute;
    bottom: -1px; right: -1px;
    width: 52px; height: 52px;
    background: #1e5fae;
    border-radius: 52px 0 18px 0;
    opacity: .12; pointer-events: none;
}

/* Специализация — оранжевый */
.dt-doctors__card-spec {
    font-size: 16px; font-weight: 500;
    color: #f07b28; margin-bottom: 14px;
}

/* Ссылка-обёртка: фото + инфо в ряд */
.dt-doctors__card-inner {
    display: flex; align-items: flex-start;
    gap: 18px; text-decoration: none; color: inherit;
}
.dt-doctors__card-inner:hover .dt-doctors__card-name { color: #1e5fae; }

/* Круглое фото */
.dt-doctors__card-photo-wrap { flex-shrink: 0; width: 146px; height: 146px; }
.dt-doctors__card-photo {
    display: block; width: 146px; height: 146px;
    object-fit: cover; object-position: top center;
    border-radius: 50%; border: 2.5px solid #dce8f5; background: #f0f4f8;
}
.dt-doctors__card-photo--empty {
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; border: 2.5px solid #dce8f5; background: #f0f4f8;
    width: 96px; height: 96px;
}

/* ФИО */
.dt-doctors__card-name {
    font-size: 30px; font-weight: 700;
    color: #1a2a3a; line-height: 1.3; transition: color .18s;
}
/* Практика */
.dt-doctors__card-practice { font-size: 14px; color: #5a6a7e; line-height: 1.5; margin-top: 6px; }
/* End */


/* Start:/local/templates/vetclinic/components/bitrix/news.list/blogs_page/style.css?17820638133380*/
/* ═══════════════════════════════════════════════
   dt-blogs  — «Статьи по теме» на странице услуги
   ═══════════════════════════════════════════════ */

.dt-blogs {
    padding: 0 0 32px;
}

/* Заголовок секции */
.dt-blogs__title {
    font-size: 28px;
    font-weight: 700;
    color: #1a2a3a;          /* тёмно-синий — как на макете */
    margin-bottom: 32px;
    line-height: 1.2;
}

/* Оранжевый акцент (тематика в заголовке) */
.dt-blogs__title-accent {
    color: #f07b28;          /* фирменный оранжевый сайта */
    margin-left: 0.25em;
}

/* Сетка карточек: 2 колонки, как на макете */
.dt-blogs__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 767px) {
    .dt-blogs__grid {
        grid-template-columns: 1fr;
    }
}

/* Карточка статьи */
.dt-blogs__card {
    background: #fff;
    border-radius: 50px;
    /* характерная "волна" из правого нижнего угла — имитируем border-bottom+right */
    border: 1.5px solid #d0daea;
    border-bottom: 11px solid #1f6fbe;    /* синяя полоса снизу как на макете */
    border-right: 11px solid #1f6fbe;
    padding: 28px 28px 24px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    position: relative;
    overflow: hidden;
}

.dt-blogs__card:hover {
    box-shadow: 0 8px 32px rgba(42, 92, 168, 0.13);
    transform: translateY(-3px);
}

/* Скруглённый «хвост» (декоративный уголок) — псевдоэлемент */
.dt-blogs__card::after {
    content: "";
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 48px;
    height: 48px;
    background: #2a5ca8;
    border-radius: 40px 0 16px 0;
    opacity: 0.18;
}

/* Ссылка-обёртка */
.dt-blogs__card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Тематика */
.dt-blogs__card-theme {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #f07b28;
    margin-bottom: 10px;
    letter-spacing: 0.01em;
}

/* Название статьи */
.dt-blogs__card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a2a3a;
    line-height: 1.3;
    margin: 0 0 12px;
}

.dt-blogs__card-link:hover .dt-blogs__card-title {
    color: #2a5ca8;
}

/* Анонс */
.dt-blogs__card-preview {
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
}

.dt-blogs__card-preview p {
    margin: 0;
}

/* Ссылка «Все статьи» */
.dt-blogs__more {
    margin-top: 28px;
    text-align: center;
}

.dt-blogs__more-link {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: #2a5ca8;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
}

.dt-blogs__more-link:hover {
    border-color: #f07b28;
    color: #f07b28;
}
/* End */
/* /local/components/custom/services-detail/templates/.default/style.css?178524062719957 */
/* /local/templates/vetclinic/components/bitrix/news.list/doctors_page/style.css?17820637442652 */
/* /local/templates/vetclinic/components/bitrix/news.list/blogs_page/style.css?17820638133380 */
