/*
Theme Name: dds_nilesstriping.com
Author: Алексей Смирнов
Description: Информационный блог-журнал о ремонте и строительстве с каталогом проверенных мастеров. Практические руководства, сравнения материалов, сметы и советы по выбору подрядчиков.
Version: 1.1
Text Domain: nst
*/

/* ==== Шрифт ==== */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

/* ==== Переменные ==== */
:root {
    --bg: #F8F6F3;
    --ink: #1E2A32;
    --terra: #C25A3C;
    --terra-dark: #A84328;
    --terra-soft: #D97A5C;
    --olive: #6F8F5C;
    --olive-dark: #5a774a;
    --row-alt: #F2EFEA;
    --white: #FFFFFF;
    --muted: #5d6b73;
    --line: #e3ded6;
    --shadow: 0 6px 22px rgba(30, 42, 50, 0.08);
    --radius: 12px;
}

/* ==== Сброс ==== */
* { box-sizing: border-box; }

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; }

a { color: var(--terra); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
    color: var(--ink);
    line-height: 1.25;
    margin: 0 0 0.6em;
    font-weight: 800;
}

h1 { font-size: 2.1rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1.1em; }

/* Заголовки рубрик — капитель с разреженным интервалом */
.rubric-title {
    font-variant: small-caps;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: var(--terra);
    font-size: 0.95rem;
    margin-bottom: 0.4em;
}

/* ==== Контейнер ширины — единый источник ==== */
.shell {
    width: min(92%, 1180px);
    margin-inline: auto;
}

/* ==== Кнопки ==== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.98rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background 0.18s ease, transform 0.18s ease, color 0.18s ease;
    text-align: center;
}
.btn:hover { text-decoration: none; }

.btn-primary {
    background: var(--terra);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--terra-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border-color: var(--terra);
    color: var(--ink);
}
.btn-secondary:hover {
    background: var(--terra);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-olive {
    background: var(--olive);
    color: var(--white);
}
.btn-olive:hover {
    background: var(--olive-dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* ==== Шапка ==== */
.site-header {
    background: rgba(248, 246, 243, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.2s ease, background 0.2s ease;
}
.site-header.scrolled {
    box-shadow: var(--shadow);
    background: rgba(248, 246, 243, 0.95);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px 0;
    flex-wrap: wrap;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    flex: 1;
}
.brand-logo,
.brand-svg {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    display: block;
}
.brand-text { min-width: 0; }
.brand-name {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--ink);
    line-height: 1.3;
    display: block;
}
.brand-name:hover { text-decoration: none; color: var(--terra); }
.brand-desc {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.45;
    display: block;
    margin-top: 2px;
}

/* ==== Навигация ==== */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 6px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}
.main-nav a {
    display: block;
    padding: 8px 14px;
    border-radius: 8px;
    color: var(--ink);
    font-weight: 600;
    font-size: 0.95rem;
}
.main-nav a:hover {
    background: var(--white);
    color: var(--terra);
    text-decoration: none;
}
.main-nav .current-menu-item > a {
    color: var(--terra);
}

.nav-toggle {
    display: none;
    background: var(--terra);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 9px 14px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 700;
}

/* Поиск в шапке */
.header-search { flex: 0 0 auto; }
.header-search .search-form {
    display: flex;
    gap: 6px;
}
.header-search input[type="search"] {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px 12px;
    font: inherit;
    font-size: 0.9rem;
    background: var(--white);
    color: var(--ink);
    width: 170px;
}

/* ==== Макет ==== */
.site-main { padding: 34px 0 50px; }

.layout-with-sidebar {
    display: grid;
    grid-template-columns: minmax(0, 67fr) minmax(0, 27fr);
    gap: 36px;
    align-items: start;
}
.layout-single {
    display: block;
}
.layout-single .content-area {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}
.content-area { min-width: 0; }

/* ==== Хлебные крошки ==== */
.breadcrumbs {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--line);
}
.breadcrumbs a { color: var(--terra); }
.breadcrumbs .sep { margin: 0 7px; color: var(--terra-soft); }
.breadcrumbs span { color: var(--ink); }

/* ==== Карточки записей ==== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 26px;
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    min-width: 0;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(30, 42, 50, 0.13);
}

.card-thumb {
    display: block;
    overflow: hidden;
}
.card-thumb img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}
.card-thumb-empty {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, var(--row-alt), #e7e1d8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 8px;
    align-items: center;
}
.badge-noads {
    background: var(--terra);
    color: var(--white);
    border-radius: 50%;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.62rem;
    font-weight: 800;
    line-height: 1.15;
    box-shadow: var(--shadow);
}

.card-body {
    flex: 1;
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow-wrap: break-word;
}
.card-meta {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 8px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.card-meta .useful {
    color: var(--olive);
    font-weight: 700;
}
.card-title {
    font-size: 1.18rem;
    margin: 0 0 10px;
}
.card-title a { color: var(--ink); }
.card-title a:hover { color: var(--terra); text-decoration: none; }

.card-excerpt {
    color: #41505a;
    font-size: 0.96rem;
    margin-bottom: 16px;
}
.card-excerpt p {
    margin: 0 0 0.5em;
    background: none;
}

.card-footer {
    margin-top: auto;
}
.card-more {
    display: inline-block;
    font-weight: 700;
    color: var(--terra);
    font-size: 0.95rem;
}
.card-more:hover { color: var(--terra-dark); }

/* Кнопка "Разобрать кейс" на ховере карточки */
.card-hover-btn {
    margin-top: 12px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.card:hover .card-hover-btn {
    opacity: 1;
    transform: translateY(0);
}

/* ==== Запись / страница ==== */
.entry {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 32px 36px 38px;
}
.entry-header { margin-bottom: 22px; }
.entry-title { margin-bottom: 10px; }
.entry-meta {
    font-size: 0.86rem;
    color: var(--muted);
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.entry-thumb {
    margin: 0 0 24px;
    border-radius: var(--radius);
    overflow: hidden;
}
.entry-thumb img { display: block; width: 100%; }

.entry-content { text-indent: 1.5em; }
.entry-content h2,
.entry-content h3,
.entry-content ul,
.entry-content ol,
.entry-content figure,
.entry-content blockquote,
.entry-content table { text-indent: 0; }

.entry-content img { border-radius: 8px; }

/* Врезка "Опыт автора" */
.entry-content blockquote {
    border-left: 4px solid var(--terra);
    padding: 4px 0 4px 20px;
    margin: 22px 0;
    font-style: italic;
    color: #3a4750;
    text-indent: 0;
}

/* Предупреждения / сметы */
.notice-box {
    border: 2px solid var(--terra-soft);
    border-radius: 10px;
    padding: 16px 20px;
    margin: 22px 0;
    background: #fdf3ef;
    text-indent: 0;
}

.entry-tags {
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    font-size: 0.88rem;
}
.entry-tags a {
    display: inline-block;
    background: var(--row-alt);
    padding: 4px 11px;
    border-radius: 6px;
    margin: 0 6px 6px 0;
    color: var(--ink);
}
.entry-tags a:hover { background: var(--terra); color: var(--white); text-decoration: none; }

/* ==== Таблицы ==== */
table {
    border-collapse: collapse;
    width: 100%;
    margin: 20px 0;
    font-size: 0.95rem;
}
table th,
table td {
    border: 1px solid var(--line);
    padding: 10px 13px;
    text-align: left;
}
table th {
    background: var(--row-alt);
    font-weight: 700;
}
.entry-content table tbody tr:nth-child(even) { background: var(--row-alt); }
.entry-content table tbody tr:nth-child(odd) { background: var(--white); }

/* ==== Сайдбар ==== */
.sidebar { min-width: 0; }
.widget {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 22px 24px;
    margin-bottom: 24px;
    color: var(--ink);
}
.widget-title {
    font-size: 1.05rem;
    margin-bottom: 14px;
    color: var(--ink);
    font-variant: small-caps;
    letter-spacing: 0.06em;
    border-bottom: 2px solid var(--terra);
    padding-bottom: 8px;
}
.widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.widget ul li {
    padding: 7px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
}
.widget ul li:last-child { border-bottom: none; }
.widget a { color: var(--terra); }
.widget a:hover { color: var(--terra-dark); }
.widget .post-date,
.widget .rss-date {
    display: block;
    font-size: 0.78rem;
    color: var(--muted);
}

/* ==== Пагинация ==== */
.pagination,
.comment-navigation,
.pagination.navigation {
    margin: 36px 0 10px;
    display: flex;
    justify-content: center;
}
.pagination .page-numbers,
.comment-navigation .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    margin: 0 4px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--line);
    color: var(--ink);
    font-weight: 700;
    text-decoration: none;
}
.pagination .page-numbers:hover,
.comment-navigation .page-numbers:hover {
    background: var(--terra);
    color: var(--white);
    border-color: var(--terra);
}
.pagination .page-numbers.current,
.comment-navigation .page-numbers.current {
    background: var(--terra);
    color: var(--white);
    border-color: var(--terra);
}
.pagination .page-numbers.dots {
    background: transparent;
    border-color: transparent;
}

/* ==== Главная ==== */
.home-section { margin-bottom: 56px; }

.hero-quote {
    background: var(--ink);
    color: var(--bg);
    border-radius: var(--radius);
    padding: 48px 44px;
    position: relative;
    overflow: hidden;
}
.hero-quote .rubric-title { color: var(--terra-soft); }
.hero-quote blockquote {
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1.35;
    margin: 0 0 16px;
    color: var(--white);
}
.hero-quote .quote-author {
    color: var(--terra-soft);
    font-weight: 700;
    font-size: 0.95rem;
}
.hero-quote .quote-mark {
    position: absolute;
    right: 28px;
    top: 4px;
    font-size: 9rem;
    color: rgba(194, 90, 60, 0.22);
    font-family: Georgia, serif;
    line-height: 1;
}

.mega-cats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 28px;
}
.mega-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    transition: transform 0.18s ease;
}
.mega-card:hover { transform: translateY(-3px); }
.mega-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
    color: var(--terra);
}
.mega-card h3 { margin-bottom: 8px; }
.mega-card p {
    color: var(--muted);
    font-size: 0.95rem;
    flex: 1;
}

.section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

/* Калькулятор "Смета за 5 минут" */
.estimate-pad {
    background:
        repeating-linear-gradient(var(--white), var(--white) 33px, #e8e4dc 34px),
        var(--white);
    border: 1px solid var(--line);
    border-left: 4px solid var(--terra);
    border-radius: 6px;
    padding: 30px 32px;
    box-shadow: var(--shadow);
}
.estimate-pad .pad-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 6px 0;
    flex-wrap: wrap;
}
.estimate-pad label { font-weight: 600; }
.estimate-pad input[type="range"] { flex: 1; min-width: 140px; accent-color: var(--terra); }
.estimate-pad .pad-value {
    min-width: 90px;
    text-align: right;
    font-weight: 700;
    color: var(--terra);
}
.estimate-pad .pad-total {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 2px dashed var(--terra-soft);
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: 800;
}
.estimate-pad .pad-total .sum { color: var(--terra); }
.estimate-note {
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 10px;
}

/* Каталог мастеров (статическая витрина) */
.masters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
}
.master-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.master-top {
    display: flex;
    align-items: center;
    gap: 12px;
}
.master-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--row-alt);
    color: var(--terra);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}
.master-name { font-weight: 800; }
.master-verified {
    color: var(--olive);
    font-weight: 700;
    font-size: 0.82rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.master-stars { color: var(--terra); letter-spacing: 2px; }
.master-quote {
    border-left: 3px solid var(--terra);
    padding-left: 12px;
    font-style: italic;
    color: #3a4750;
    font-size: 0.92rem;
}

/* Фильтр-плитки каталога мастеров */
.masters-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.filter-tile {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ink);
}
.filter-tile:first-child {
    background: var(--terra);
    color: var(--white);
    border-color: var(--terra);
}

/* Таблица сравнения материалов */
.compare-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.compare-table {
    margin: 0;
    background: var(--white);
}
.compare-table thead th {
    position: sticky;
    top: 0;
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
    z-index: 2;
}
.compare-table th:first-child,
.compare-table td:first-child {
    position: sticky;
    left: 0;
    background: var(--row-alt);
    font-weight: 700;
    z-index: 1;
}
.compare-table thead th:first-child {
    background: var(--ink);
    z-index: 3;
}
.compare-table tbody tr:nth-child(even) td { background: var(--row-alt); }
.compare-table tbody tr:nth-child(odd) td { background: var(--white); }
.compare-table .pro { color: var(--olive-dark); font-weight: 700; }
.compare-table .con { color: var(--terra); font-weight: 700; }

/* ==== Подвал ==== */
.site-footer {
    background: var(--ink);
    color: #c7d0d5;
    padding: 46px 0 24px;
    margin-top: 40px;
}
.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
}
.site-footer .widget {
    background: transparent;
    box-shadow: none;
    padding: 0;
    margin: 0;
    color: #c7d0d5;
}
.site-footer .widget-title {
    color: var(--white);
    border-bottom-color: var(--terra);
}
.site-footer .widget a { color: var(--terra-soft); }
.site-footer .widget a:hover { color: var(--white); }
.site-footer .widget ul li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
    color: #c7d0d5;
}
.site-footer .widget .post-date,
.site-footer .widget .rss-date { color: #8a969d; }

/* Блок "Что мы тестируем сейчас" */
.testing-block {
    margin-bottom: 14px;
}
.testing-block .test-item { margin-bottom: 14px; }
.testing-block .test-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    margin-bottom: 5px;
}
.progress {
    height: 8px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 5px;
    overflow: hidden;
}
.progress > span {
    display: block;
    height: 100%;
    background: var(--olive);
    border-radius: 5px;
}

.footer-bottom {
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.84rem;
    color: #8a969d;
    text-align: center;
}

/* ==== Cookie-баннер ==== */
.cookie-banner[hidden] { display: none !important; }

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    background: var(--ink);
    color: var(--bg);
    padding: 16px 0;
    box-shadow: 0 -6px 22px rgba(0, 0, 0, 0.2);
}
.cookie-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
    flex: 1;
    min-width: 240px;
}
.cookie-banner a { color: var(--terra-soft); }

/* ==== Комментарии ==== */
.comments-area {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px 32px;
    margin-top: 30px;
}
.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}
.comment-list li { margin-bottom: 18px; }
.comment-body {
    background: var(--bg);
    border-radius: 10px;
    padding: 14px 18px;
}
.comment-list .children {
    list-style: none;
    margin: 16px 0 0 26px;
    padding: 0;
}
.comment-meta {
    font-size: 0.84rem;
    color: var(--muted);
    margin-bottom: 6px;
}
.comment-author { font-weight: 700; color: var(--ink); }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px 12px;
    font: inherit;
    background: var(--bg);
    color: var(--ink);
}
.comment-form p { margin-bottom: 14px; }
.comment-form label { font-weight: 600; font-size: 0.9rem; }

/* ==== Форма поиска ==== */
.search-form {
    display: flex;
    gap: 8px;
}
.search-form input[type="search"] {
    flex: 1;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px 13px;
    font: inherit;
    background: var(--white);
    color: var(--ink);
    min-width: 0;
}

/* ==== 404 ==== */
.error-404 {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 44px 40px;
    text-align: center;
}
.error-404 .code-big {
    font-size: 5rem;
    font-weight: 800;
    color: var(--terra);
    line-height: 1;
    margin-bottom: 8px;
}
.error-404 .search-form { max-width: 420px; margin: 22px auto; }

/* ==== Прочее ==== */
.page-title {
    margin-bottom: 24px;
}
.no-posts {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 30px;
}

/* ==== Адаптив ==== */
@media (max-width: 960px) {
    .layout-with-sidebar {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .layout-single .content-area { width: 100%; }
    .footer-cols { grid-template-columns: 1fr 1fr; }
    .hero-quote blockquote { font-size: 1.4rem; }
}

@media (max-width: 600px) {
    body { font-size: 16px; }
    h1 { font-size: 1.7rem; }
    h2 { font-size: 1.35rem; }

    .nav-toggle { display: block; }
    .main-nav {
        flex-basis: 100%;
        width: 100%;
    }
    .main-nav ul {
        display: none;
        flex-direction: column;
        gap: 2px;
        padding-top: 10px;
    }
    .main-nav ul.open { display: flex; }
    .main-nav a { padding: 10px 12px; }

    .header-inner { gap: 12px; }
    .header-search { width: 100%; }
    .header-search .search-form { width: 100%; }
    .header-search input[type="search"] { width: 100%; flex: 1; }

    .footer-cols { grid-template-columns: 1fr; gap: 28px; }

    .entry { padding: 24px 20px 28px; }
    .hero-quote { padding: 34px 24px; }
    .hero-quote blockquote { font-size: 1.25rem; }
    .hero-quote .quote-mark { font-size: 6rem; }

    .btn { display: block; width: 100%; }
    .card-hover-btn .btn { width: 100%; }

    .breadcrumbs { border-bottom-style: dotted; }
}
