@font-face {
    font-family: 'Inka';
    src: url('../fonts/inka-regular.eot');
    src: url('../fonts/inka-regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/inka-regular.woff2') format('woff2'),
    url('../fonts/inka-regular.woff') format('woff'),
    url('../fonts/inka-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Trebuchet MS';
    src: url('../fonts/TrebuchetMS.eot');
    src: url('../fonts/TrebuchetMS.eot?#iefix') format('embedded-opentype'),
    url('../fonts/TrebuchetMS.woff2') format('woff2'),
    url('../fonts/TrebuchetMS.woff') format('woff'),
    url('../fonts/TrebuchetMS.ttf') format('truetype'),
    url('../fonts/TrebuchetMS.svg#TrebuchetMS') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: "Trebuchet MS", verdana, arial, sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75em;
}

.header .caption h1,
.header .caption h2,
h1, h2, h3,
.section-title {
    font-family: 'Inka' !important;
}

.html-block h2 {
    font-size: 45px;
    font-weight: 400;
    color: #1b1b1b;
    position: relative;
    margin-bottom: 15px;
    line-height: 1.2em;
}

.html-block img {
    max-width: 100vw !important;
}

.html-block ul {
    padding-left: 20px;
}

.html-block ul li {
    list-style: disc !important;
}

.html-block strong,
.html-block b {
    font-weight: bold;
}

a, a:hover {
    color: #019DE1;
}

a:hover {
    text-decoration: underline;
}

.navbar a:hover,
.page-lang a:hover,
.social:has(a) a:hover {
    text-decoration: none;
}

.nav-scroll.navbar {
    height: 70px;
}

.page-lang {
    margin-left: 20px;
}

.navbar .page-lang .dropdown-toggle {
    color: #1b1b1b !important;
    background-color: #efefef !important;
    border: none !important;
    margin: 0;
    padding: 5px;
    border-radius: 5px;
    width: 75px;
}

.navbar .page-lang .dropdown-toggle img {
    width: 20px;
    height: 16px;
    object-fit: cover;
    margin-top: -4px;
}

.navbar .page-lang .dropdown-menu {
    background-color: #efefef;
    border: none;
    padding: 5px;
    border-radius: 0 0 5px 5px;
    overflow: hidden;
    min-width: 0 !important;
    width: 75px !important;
    margin-top: -5px;
    transform-origin: top center; /* Začiatok animácie odhora */
    opacity: 0;
    transform: translateY(-10px); /* Začína mierne vyššie */
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: block !important; /* Zabezpečí správne vykreslenie */
    visibility: hidden;
}

.navbar .page-lang .dropdown-item {
    color: #1b1b1b !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    min-width: 0 !important;
    width: 100%;
!important;
    font-size: 16px !important;
    text-align: center;
}

.navbar .page-lang .dropdown-item:focus,
.navbar .page-lang .dropdown-item:hover {
    background-color: #d5d5d5 !important;
    color: #1b1b1b !important;
    width: 100%;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Štýl ikoniek vlajok */
.navbar .page-lang .flag-icon {
    width: 20px;
    height: 16px;
    margin-right: 7px;
    object-fit: cover;
}

.contact .contact-info p {
    margin: 5px 0;
}

.blog .item .post-cont h3 {
    min-height: 60px;
    font-size: 25px;
}

.blog .item .post-img img {
    height: 200px;
    object-fit: cover;
    object-position: center center;
}



.news-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: box-shadow .3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Obrázok */
.news-image {
    overflow: hidden;
    position: relative;
}

.news-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform .6s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.08);
}

/* Obsah */
.news-content {
    padding: 20px 22px 25px 22px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-date {
    font-size: 0.9rem;
    color: #7c7c7c;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.news-content h3 {
    min-height: 90px;
    font-size: 25px;
}

.article .article-image img {
    object-fit: cover;
    object-position: center center;
    height: 400px;
    width: 100%;
    margin-bottom: 25px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 20px 0;
    gap: 10px;
}

.pagination li {
    display: inline-block;
    margin: 0 5px;
}

.pagination a {
    background: #f2f2f2;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #1b1b1b;
    font-weight: 300;
    border: 1px solid #f2f2f2;
    border-radius: 4px;
    transition: border-color 300ms ease, transform 300ms ease, background-color 300ms ease, color 300ms ease;
    transform-style: preserve-3d;
    cursor: pointer;
    font-size: 15px;
}

.pagination li:not(.disabled) a:hover {
    opacity: 1;
    text-decoration: none;
    background: #aa8453;
    border: 1px solid #aa8453;
    color: #fff;
    transform: translate3d(0px, -6px, 0.01px);
}

.pagination .active a {
    background-color: #aa8453;
    border: 1px solid #aa8453;
    color: #fff;
}

.pagination .disabled a {
    color: #afafaf;
    cursor: not-allowed;
}

.pagination .disabled a:hover {
    color: #afafaf;
}

table.dataTable thead > tr > th.dt-orderable-asc:hover,
table.dataTable thead > tr > th.dt-orderable-desc:hover,
table.dataTable thead > tr > td.dt-orderable-asc:hover,
table.dataTable thead > tr > td.dt-orderable-desc:hover {
    outline: none;
}

input, select {
    box-shadow: none !important;
    outline: none !important;
}

div.dt-container div.dt-search input {
    height: 40px;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 25px;
}

div.dt-container div.dt-length select {
    height: 40px;
    margin-bottom: 25px;
}

td.tags .tag {
    border-radius: 7px;
    color: #fff;
    background-color: #aa8453;
    padding: 0 15px;
    margin: 0 5px 5px 0;
    font-size: 12px;
    line-height: 22px;
}

td.tags .tag:hover {
    opacity: .9;
}

table.datailTable {
    /*width: 100%;*/
    /*min-width: 500px;*/
}

table.datailTable tr td:first-child {
    white-space: nowrap;
    font-weight: 600;
}


.table-container {
    width: 100%;
    /*overflow-x: auto;*/
}

table.tableData {
    min-width: 700px;
}

table.tableData .thumb-image {
    border: 1px solid #ECECEC;
    height: 100px;
    width: 100px;
    object-fit: cover;
    object-position: center center;
}

table th {
    white-space: nowrap;
}

div.dt-container div.dt-layout-table > div {
    display: flex !important;
}

table th,
table td {
    font-size: 14px;
    vertical-align: middle;
}

.table-scroll-container {
    width: 100%;
    overflow-x: auto;
}

.table-container input::placeholder {
    color: #ccc;
    font-size: 14px;
}

.table-container ul.pagination .page-link {
    color: #1b1b1b;
    background-color: #fff;
    border: 1px solid #aa8453;
    box-shadow: none;
    min-width: 40px;
}

.table-container ul.pagination .page-link:hover {
    color: #fff;
    background-color: #aa8453 !important;
    border: 1px solid #aa8453;
    box-shadow: none;
    min-width: 40px;
}

.detail .thumb-image {
    height: auto !important;
    width: 300px;
}

.table-container ul.pagination {
    margin-top: 25px !important;
}

.table-container ul.pagination li {
    margin: 0;
}

.table-container ul.pagination .active > .page-link, .page-link.active {
    color: #fff;
    background-color: #aa8453;
    border-color: #aa8453;
    box-shadow: none;
}

.table-container ul.pagination li i {
    font-size: 12px;
}

.detailGallery.owl-theme .owl-nav [class*="owl-"] {
    width: 50px;
    height: 50px;
    line-height: 43px;
    background: #aa8453;
    border-radius: 100%;
    color: #fff;
    font-size: 12px;
    margin-right: 10px;
    margin-left: 10px;
    cursor: pointer;
    border: 1px solid #aa8453;
    transition: all 0.2s ease-in-out;
    transform: scale(1.0);
}

.detailGallery.owl-theme .owl-nav [class*="owl-"]:hover {
    opacity: .8;
}

.detailGallery.owl-carousel .owl-item {
    text-align:center;
}

.detailGallery.owl-carousel .owl-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center center;
}

.contact-info .social {
    margin-bottom: 15px;
}
.contact-info .social a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 12px;
    border: 1px solid #aa8453;
    color: #aa8453;
    border-radius: 100%;
    margin-right: 3px;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    display: inline-block;
}
.contact-info .social a:hover {
    border: 1px solid #aa8453;
    background: #aa8453;
    color: #fff;
}

.break-word {
    overflow-wrap: break-word; /* moderné prehliadače */
    word-wrap: break-word;     /* staršie prehliadače */
    word-break: break-word;    /* agresívne zalamovanie, ak je treba */
}

.navbar-toggler {
    cursor: pointer;
}

/*Person hero card*/
a.person-card-hero {
    border-radius: 4px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 18px rgba(0,0,0,.10);
    display: block; /* dôležité pre klikateľný celok */
    text-decoration: none; /* žiadne podčiarknutie */
    color: inherit; /* text ponechaj rovnaký */
}

.person-card-hero .img-wrap {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.person-card-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform .35s ease;
    display: block;
}

/* Zoom LEN na obrázok */
.person-card-hero:hover img {
    transform: scale(1.08);
}

.person-card-hero .content {
    padding: 1.25rem 1.4rem 1.5rem;
    text-align: center;
}

.person-card-hero .name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: .35rem;
}

.person-card-hero .dates {
    color: #6c6c6c;
    font-size: .96rem;
    line-height: 1.35;
}

.person-section-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

.person-section-nav a {
    flex: 1 0 0;
    width: 200px;
    min-width: 200px;
    max-width: 200px;
    position: relative;
    overflow: hidden;
    background: #F6F1F0;
    border: 1px solid #f1f1f1;
    border-radius: 4px;
    padding: 10px 14px;
    text-decoration: none;
    color: #3d3d3d;
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    transition: color 0.20s ease, border-color 0.20s ease, box-shadow 0.20s ease;
}

.person-section-nav a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #aa8453;
    transform: translateX(-100%);
    transition: transform 0.30s ease;
    z-index: 0;
}

.person-section-nav a span {
    position: relative;
    z-index: 1;
}

.person-section-nav a:hover::before {
    transform: translateX(0);
}

.person-section-nav a:hover {
    color: #fff;
    border-color: #f1f1f1;
}

.person-section-nav a.active::before {
    transform: translateX(0);
}

.person-section-nav a.active {
    color: #fff;
}

.person-detail-text {
    overflow: hidden;
}

.person-detail-wrapper {
    display: block;
    margin-bottom: 40px;
}

.person-detail-photo {
    width: 260px;
    margin: 0 30px 20px 0;
    float: left;
    text-align: center;
}

.person-detail-photo img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: top;
    border-radius: 4px;
    display: block;
}

.person-detail-caption {
    margin-top: 8px;
    font-size: 14px;
    color: #8a8a8a;
    font-style: italic;
    line-height: 1.45;
}


/*Breadcrumbs*/
.breadcrumbs-wrapper {
    background: #ffffff;
    padding: 14px 0 10px;
}

.breadcrumbs {
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #6f6f6f;
    flex-wrap: wrap;
}

.breadcrumbs a {
    text-decoration: none;
    color: #6f6f6f;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color .25s ease;
}

.breadcrumbs a:hover {
    color: #aa8453;
}

.breadcrumbs .current {
    color: #1e1e1e;
    font-weight: 500;
}

.breadcrumbs > * + *::before {
    content: "\e649"; /* ti-angle-right */
    font-family: "themify";
    font-size: 11px;
    opacity: .45;
    margin-right: 6px;
    display: inline-block;
    transform: translateY(0.5px);
}

.breadcrumbs i.ti-home {
    font-size: 15px;
}


/*  search input */
.search-input {
    max-width: 100%;
    width: 180px;
    padding: 10px 32px 10px 0;
    border: none;
    border-bottom: 1px solid #8a6b3f;
    background-color: transparent;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #3b3b3b;
    line-height: 1.5em;
    transition: border-color .3s ease, width .3s ease;
    box-shadow: none;
    outline: none;
}

/* Tlačidlo s ikonou lupy */
.search-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #1b1b1b;
}

.search-btn i {
    font-size: 1.1rem;
    transition: color .3s ease;
}

.search-btn:hover i {
    color: #8a6b3f;
}

.news-search-input {
    width: 100%;
    padding: 10px 36px 10px 0;
    border: none;
    border-bottom: 1px solid #e5dddc;
    background-color: transparent;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #3b3b3b;
    line-height: 1.5em;
    transition: border-color .3s ease, width .3s ease;
    box-shadow: none;
    outline: none;
}

.news-search-input:focus {
    border-bottom-color: #8a6b3f;
}

/* tlačidlo s ikonou lupy */
.news-search-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #1b1b1b;
    transition: color .3s ease;
}

.news-search-btn i {
    font-size: 1.1rem;
}

.news-search-btn:hover i {
    color: #8a6b3f;
}

.documents-list {
    list-style: none;
    margin: 0;
    padding: 0 !important;
}

.documents-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #aa8453;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
    transition: all 0.2s ease;
    margin-bottom: 10px;
    overflow: hidden;
}

.documents-list li span {
    margin-right: 5px;
    font-size: 18px;
}

.documents-list li:hover {
    background: #F6F1F0;
}

.documents-list li:hover a {
    color:#aa8453;
}

.documents-list a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s ease;
    padding: 14px 18px;
    width: 100%;
}

/* PEVNÁ VEĽKOSŤ KARTIČKY – OPTIMALIZOVANÁ PRE MOBILY */
.obec-box {
    background: #fff;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    transition: 0.2s ease;
    border: 1px solid #eee;

    width: 145px;       /* užšia, zmestí sa 2x aj na 350px */
    height: 190px;      /* znížená výška */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Erb */
.obec-erb img {
    width: 100%;
    max-width: 95px;
    object-fit: contain;
    margin: 0 auto;
    height: 120px;
}

/* Názov obce */
.obec-nazov {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-top: auto;
    padding-bottom: 4px;
    line-height: 20px;
}

/* Hover efekt */
.obec-link:hover .obec-box {
    transform: translateY(-4px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* Link */
.obec-link {
    text-decoration: none !important;
    display: block !important;
}

/* Odsadenie */
.obec-card {
    margin-bottom: 20px;
}

.obec-hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;

    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;

    transition:
        opacity 0.25s ease,
        width 0.25s ease,
        height 0.25s ease,
        margin 0.25s ease,
        padding 0.25s ease;
}

.history-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.history-table thead th {
    background: #f5f5f5;
    text-align: left;
    padding: 10px 12px;
    font-weight: 600;
    border-bottom: 1px solid #ccc;
}

.history-table tbody tr:nth-child(even) {
    background: #fafafa;
}

.history-table tbody tr:nth-child(odd) {
    background: #ffffff;
}

.history-table td {
    padding: 8px 12px;
    vertical-align: top;
    border-bottom: 1px solid #eee;
}

.history-table td:first-child {
    width: 120px;
    font-weight: 600;
    white-space: nowrap;
}

.obec-info-wrapper {
    display:flex;
    justify-content: flex-start;
}

.obec-info-wrapper .obec-crest-search {
    width: 40px;
    margin-right: 10px;
    height: auto;
}

.obec-info-wrapper .obec-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #3d2b1f;
    display: flex;
    align-items: center;
}


.obec-info-wrapper .obec-info-card {
    border-radius: 6px;
    margin-right: 20px;
    text-align: center;
}

.obec-info-wrapper .obec-crest {
    width: 120px;
    height: auto;
    margin-bottom: 25px;
}

.obec-info-wrapper .obec-detail {
    margin: 12px 0;
    font-size: 15px;
}

.obec-info-wrapper .obec-weblink {
    font-weight: 600;
    text-decoration: none;
}

.obec-info-wrapper .obec-weblink:hover {
    text-decoration: underline;
}

.obec-info-wrapper .obec-description {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.6;
    color: #4a3a2c;
}

/*MODALS*/
/* OVERLAY */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* BOX */
.modal-box {
    background: #ffffff;
    padding: 28px;
    border-radius: 8px;
    width: 380px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    position: relative;
    border: 1px solid #e8e2da;
}

.modal-box h3 {
    margin: 0 0 20px;
    font-size: 22px;
    color: #3d2b1f;
}

/* FORM */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    font-size: 14px;
    display: block;
    margin-bottom: 6px;
    color: #3d2b1f;
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #dcd4ca;
    border-radius: 5px;
    background: #fafafa;
}

/* CHECKBOX */
.form-group.checkbox label {
    display: flex;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    background: #8a633b;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    border: none;
    font-size: 15px;
    cursor: pointer;
}

.btn-submit:hover {
    background: #7d5834;
}

/* SWITCH LINKS */
.modal-switch {
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
}

.modal-switch a {
    color: #8a633b;
    font-weight: 600;
    text-decoration: none;
}

.modal-switch a:hover {
    text-decoration: underline;
}

/* CLOSE BUTTON */
.modal-close {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
    color: #8a633b;
}

/* Wrapper pre taby */
#searchTabs .nav-link {
    background-color: #f6f1ed;
    color: #6b4c36;
    font-weight: 600;
    padding: 10px 24px;
    margin-right: 8px;
    border-radius: 4px 4px 0 0;
    border: 1px solid #e2d8cf;
    transition: all 0.25s ease;
}

/* Hover efekt */
#searchTabs .nav-link:hover {
    background-color: #e8dfd8;
    color: #4d3625;
    border-color: #d2c7bb;
}

/* Aktívna tabu */
#searchTabs .nav-link.active {
    background-color: #a57a52;
    color: #fff !important;
    border: 1px solid #8b6642;
    box-shadow: 0 0 6px rgba(0,0,0,0.1) inset;
}

.hl {
    background: yellow;
    padding: 0;
}

img.alignleft {
    float: left;
    margin: 0 15px 15px 0;
}

@media (min-width: 992px) {
    .mobile-only {
        display: none !important;
    }

    .desktop-only {
        display: flex !important;
    }
}

@media (max-width: 1200px) {

}


@media (max-width: 991px) {
    .mobile-only {
        display: flex !important;
    }

    .desktop-only {
        display: none !important;
    }

    .html-block h2 {
        font-size: 37px;
        line-height: 1.1em;
    }

    .person-detail-text {
        overflow: visible;
    }

    .person-section-nav a {
        width: 160px;
        min-width: 160px;
        max-width: 160px;
        padding: 7px 8px;
        font-size: 15px;
    }

    .person-section-nav {
        gap: 6px;
    }
}

@media (max-width: 768px) {
    div.dt-container div.dt-length, div.dt-container div.dt-search, div.dt-container div.dt-info, div.dt-container div.dt-paging {
        text-align: left;
    }

    .datailTable {
        display: flex;
        width: 100%;
        border: none;
    }

    .datailTable tr {
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    .datailTable tr td {
        border: none;
    }

    .table-scroll-container {
        /*overflow-x: unset;*/
    }

    .plomby-images {
        text-align: center;
    }

    .plomby-images img {
        margin-bottom: 25px;
        height: 150px !important;
    }

    .obec-info-wrapper {
        flex-direction: column;
    }

    .reservations .text a {
        font-size: 15px;
    }

    #searchTabs .nav-link {
        font-weight: 400;
        padding: 7px 15px;
        margin-right: 5px;
        font-size: 14px;
    }
}

/*tinymce*/

.tiny-img-left {
    float: left;
    margin: 0 20px 20px 0;
}

.tiny-img-right {
    float: right;
    margin: 0 0 20px 20px;
}

figure.tiny-img-left {
    float: left;
    margin: 0 20px 20px 0;
}

figure.tiny-img-right {
    float: right;
    margin: 0 0 20px 20px;
}

.cms-image {
    display: inline-block;
    max-width: 100%;
}

.cms-image--float-left {
    float: left;
    margin: 0 20px 20px 0;
}

.cms-image--float-right {
    float: right;
    margin: 0 0 20px 20px;
}

.cms-image__img {
    display: block;
    max-width: 100%;
    height: auto;
}

.cms-image__caption {
    margin-top: 6px;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
}
