/* ===== Belek Apartments landing (moved from inline, Phase 1B C22) ===== */
/* Text sections run full container width; the FAQ and the editorial
   image are kept at the previous centered reading width. */
.belek-apts-faq-wrap {
    max-width: 878px;
    margin: 0 auto;
}


.belek-crumbs {
    font-size: 13px;
    color: #6b7a89;
    margin: 14px 0 6px 0;
}

#content .belek-crumbs a {
    color: #1a3a52;
    text-decoration: none !important;
}

#content .belek-crumbs a:hover {
    text-decoration: underline !important;
}


.belek-apts-alllist {
    margin: 0 0 24px 0;
    padding-left: 20px;
}

.belek-apts-alllist li {
    margin: 7px 0;
    font-size: 15.5px;
    line-height: 1.6;
}


.belek-apts-updated {
    font-size: 13px;
    color: #8a93a0;
    margin: 12px 0 0 0;
}
.belek-apts-aio {
    font-size: 17px;
    line-height: 1.75;
    color: #333;
    margin: 18px 0 28px 0;
}

/* Landing-page card module — homepage "Monthly Special Offers" card style */
.belek-apts-listings > h2 {
    font-family: "Inter", "SF Pro Display", Arial, sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #2C3E50;
    margin: 0 0 24px 0;
    text-align: left;
}

.belek-apts-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 576px) {
    .belek-apts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .belek-apts-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.belek-apt-card {
    margin: 0;
    padding: 0;
}

/* akkus.css forces underline via `#content a` (id specificity, !important);
   these id-scoped rules win it back for the card/CTA modules. */
#content .belek-apt-card-link,
#content .belek-apt-card-link:hover,
#content .belek-apts-cta,
#content .belek-apts-cta:hover {
    text-decoration: none !important;
}

.belek-apt-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.belek-apt-card-link:hover,
.belek-apt-card-link:focus {
    box-shadow: 0 16px 35px rgba(0,0,0,0.12);
    transform: translateY(-4px);
    text-decoration: none;
    color: inherit;
}

.belek-apt-card-img {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #eef1f4;
}

/* Fill the 4:3 frame. akkus.css sets `img { height: auto !important }` which
   otherwise leaves landscape thumbs short inside the box. */
#content .belek-apt-card-img img,
.belek-apt-card-img img {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    transition: transform 0.45s ease;
}

.belek-apt-card-link:hover .belek-apt-card-img img {
    transform: scale(1.04);
}

.belek-apt-card-code {
    position: absolute;
    left: 10px;
    bottom: 10px;
    background: rgba(26,58,82,0.85);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 5px;
    letter-spacing: 0.3px;
}

.belek-apt-card-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px 18px 18px;
    text-align: left;
}

#content .belek-apt-card-title {
    font-family: "Inter", "SF Pro Display", Arial, sans-serif;
    font-size: 17px !important;
    font-weight: 700 !important;
    line-height: 23px !important;
    color: #2C3E50 !important;
    margin: 0 0 10px 0 !important;
    padding: 0 !important;
    text-align: left !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden !important;
    height: 46px !important;
}

.belek-apt-card-loc {
    display: block;
    text-align: center;
    font-size: 13px;
    font-style: italic;
    color: #6b7a89;
    padding-bottom: 12px;
    margin-bottom: 4px;
    border-bottom: 1px dotted #d4dae0;
}

.belek-apt-card-loc .fa {
    color: #b08d3e;
    margin-right: 4px;
    font-style: normal;
}

.belek-apt-card-meta {
    display: block;
    margin-bottom: 14px;
}

.belek-apt-card-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: #333;
    text-align: left;
    padding: 8px 0;
    border-bottom: 1px dotted #d4dae0;
}

.belek-apt-card-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    opacity: 0.75;
    flex: 0 0 auto;
}

.belek-apt-card-price {
    display: block;
    margin-top: auto;
    background: #157a3d;
    color: #ffffff;
    border-radius: 12px;
    padding: 8px 16px;
    font-family: "Inter", "SF Pro Display", Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
}

.belek-apt-card-price-prefix {
    font-weight: 500;
}

.belek-apts-cta-wrap {
    text-align: center;
    margin: 26px 0 12px 0;
}

.belek-apts-cta {
    display: inline-block;
    background: #1a3a52;
    color: #fff !important;
    font-family: "Inter", "SF Pro Display", Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 34px;
    border-radius: 8px;
    text-decoration: none;
    min-height: 44px;
    transition: background 0.2s ease;
}

.belek-apts-cta:hover,
.belek-apts-cta:focus {
    background: #163b60;
    color: #fff;
}

.belek-apts-snapshot {
    background: #f5f8fa;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 10px;
    padding: 20px 24px;
    margin: 28px 0 8px 0;
}

.belek-apts-snapshot-title {
    font-family: "Inter", "SF Pro Display", Arial, sans-serif;
    font-size: 19px;
    font-weight: 600;
    color: #2C3E50;
    margin: 0 0 12px 0;
}

.belek-apts-snapshot ul {
    margin: 0;
    padding-left: 20px;
}

.belek-apts-snapshot li {
    margin: 6px 0;
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

/* Belek Apartments editorial figure only: generous breathing room above and
   below; the following H2's own 40px top margin is zeroed so margins don't
   stack/collapse. Rounded corners + soft shadow frame. */
.apartments-content .editorial-image {
    max-width: 878px;
    margin: 40px auto 48px;
}

.apartments-content .editorial-image + h2 {
    margin-top: 0;
}

.apartments-content .editorial-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18), 0 3px 10px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767px) {
    .apartments-content .editorial-image {
        margin: 30px auto 36px;
    }
}

.apartments-content {
    margin-top: 10px;
}

.apartments-content h2 {
    font-family: "Inter", "SF Pro Display", Arial, sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #2C3E50;
    margin: 40px 0 20px 0;
    line-height: 1.3;
}

.apartments-content h3 {
    font-family: "Inter", "SF Pro Display", Arial, sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #34495E;
    margin: 30px 0 15px 0;
    line-height: 1.4;
}

.apartments-content p {
    margin: 0 0 18px 0;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.apartments-content a {
    color: #0066cc;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.apartments-content a:hover {
    border-bottom-color: #0066cc;
}

@media (max-width: 767px) {
    .belek-apts-snapshot {
        padding: 16px 18px;
    }
    .belek-apts-cta {
        display: block;
        text-align: center;
    }
}

/* ===== Belek Villas landing (moved from inline, Phase 1B C22) ===== */
/* Text sections run full container width; the FAQ and the editorial
   image are kept at a centered reading width. */
.belek-vls-faq-wrap {
    max-width: 878px;
    margin: 0 auto;
}


.belek-crumbs {
    font-size: 13px;
    color: #6b7a89;
    margin: 14px 0 6px 0;
}

#content .belek-crumbs a {
    color: #1a3a52;
    text-decoration: none !important;
}

#content .belek-crumbs a:hover {
    text-decoration: underline !important;
}


.belek-vls-updated {
    font-size: 13px;
    color: #8a93a0;
    margin: 12px 0 0 0;
}
.belek-vls-aio {
    font-size: 17px;
    line-height: 1.75;
    color: #333;
    margin: 18px 0 28px 0;
}

/* Landing-page card module — homepage "Monthly Special Offers" card style */
.belek-vls-listings > h2 {
    font-family: "Inter", "SF Pro Display", Arial, sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #2C3E50;
    margin: 0 0 24px 0;
    text-align: left;
}

.belek-vls-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 576px) {
    .belek-vls-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .belek-vls-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.belek-vls-card {
    margin: 0;
    padding: 0;
}

/* akkus.css forces underline via `#content a` (id specificity, !important);
   these id-scoped rules win it back for the card/CTA modules. */
#content .belek-vls-card-link,
#content .belek-vls-card-link:hover,
#content .belek-vls-cta,
#content .belek-vls-cta:hover {
    text-decoration: none !important;
}

.belek-vls-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.belek-vls-card-link:hover,
.belek-vls-card-link:focus {
    box-shadow: 0 16px 35px rgba(0,0,0,0.12);
    transform: translateY(-4px);
    text-decoration: none;
    color: inherit;
}

.belek-vls-card-img {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    background: #eef1f4;
}

.belek-vls-card-img::before {
    content: "";
    display: block;
    width: 100%;
    padding-top: 75%;
}

#content .belek-vls-card-img img,
.belek-vls-card-img img {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    transition: transform 0.45s ease;
}

.belek-vls-card-link:hover .belek-vls-card-img img {
    transform: scale(1.04);
}

.belek-vls-card-code {
    position: absolute;
    left: 10px;
    bottom: 10px;
    background: rgba(26,58,82,0.85);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 5px;
    letter-spacing: 0.3px;
}

.belek-vls-card-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px 18px 18px;
    text-align: left;
}

#content .belek-vls-card-title {
    font-family: "Inter", "SF Pro Display", Arial, sans-serif;
    font-size: 17px !important;
    font-weight: 700 !important;
    line-height: 23px !important;
    color: #2C3E50 !important;
    margin: 0 0 10px 0 !important;
    padding: 0 !important;
    text-align: left !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden !important;
    height: 46px !important;
}

.belek-vls-card-loc {
    display: block;
    text-align: center;
    font-size: 13px;
    font-style: italic;
    color: #6b7a89;
    padding-bottom: 12px;
    margin-bottom: 4px;
    border-bottom: 1px dotted #d4dae0;
}

.belek-vls-card-loc .fa {
    color: #b08d3e;
    margin-right: 4px;
    font-style: normal;
}

.belek-vls-card-meta {
    display: block;
    margin-bottom: 14px;
}

.belek-vls-card-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: #333;
    text-align: left;
    padding: 8px 0;
    border-bottom: 1px dotted #d4dae0;
}

.belek-vls-card-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    opacity: 0.75;
    flex: 0 0 auto;
}

.belek-vls-card-price {
    display: block;
    margin-top: auto;
    background: #157a3d;
    color: #ffffff;
    border-radius: 12px;
    padding: 8px 16px;
    font-family: "Inter", "SF Pro Display", Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
}

.belek-vls-card-price-prefix {
    font-weight: 500;
}

.belek-vls-cta-wrap {
    text-align: center;
    margin: 26px 0 12px 0;
}

.belek-vls-cta {
    display: inline-block;
    background: #1a3a52;
    color: #fff !important;
    font-family: "Inter", "SF Pro Display", Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 34px;
    border-radius: 8px;
    text-decoration: none;
    min-height: 44px;
    transition: background 0.2s ease;
}

.belek-vls-cta:hover,
.belek-vls-cta:focus {
    background: #163b60;
    color: #fff;
}

.belek-vls-snapshot {
    background: #f5f8fa;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 10px;
    padding: 20px 24px;
    margin: 28px 0 8px 0;
}

.belek-vls-snapshot-title {
    font-family: "Inter", "SF Pro Display", Arial, sans-serif;
    font-size: 19px;
    font-weight: 600;
    color: #2C3E50;
    margin: 0 0 12px 0;
}

.belek-vls-snapshot ul {
    margin: 0;
    padding-left: 20px;
}

.belek-vls-snapshot li {
    margin: 6px 0;
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

/* Belek Villas editorial figure only: generous breathing room above and
   below; the following H2's own 40px top margin is zeroed so margins don't
   stack/collapse. Rounded corners + soft shadow frame. */
.villas-content .editorial-image {
    max-width: 878px;
    margin: 40px auto 48px;
}

.villas-content .editorial-image + h2 {
    margin-top: 0;
}

.villas-content .editorial-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18), 0 3px 10px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767px) {
    .villas-content .editorial-image {
        margin: 30px auto 36px;
    }
}

.villas-content {
    margin-top: 10px;
}

.villas-content h2 {
    font-family: "Inter", "SF Pro Display", Arial, sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #2C3E50;
    margin: 40px 0 20px 0;
    line-height: 1.3;
}

.villas-content h3 {
    font-family: "Inter", "SF Pro Display", Arial, sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #34495E;
    margin: 30px 0 15px 0;
    line-height: 1.4;
}

.villas-content p {
    margin: 0 0 18px 0;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.villas-content a {
    color: #0066cc;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.villas-content a:hover {
    border-bottom-color: #0066cc;
}

@media (max-width: 767px) {
    .belek-vls-snapshot {
        padding: 16px 18px;
    }
    .belek-vls-cta {
        display: block;
        text-align: center;
    }
}

/* ===== Shared Phase 1B additions (both Belek landing pages) ===== */
.belek-compare-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 28px 0;
    font-size: 15px;
    line-height: 1.55;
}

.belek-compare-table th,
.belek-compare-table td {
    border: 1px solid #e3e8ee;
    padding: 10px 14px;
    text-align: left;
    vertical-align: top;
}

.belek-compare-table thead th {
    background: #2C3E50;
    color: #fff;
    font-weight: 600;
}

.belek-compare-table tbody th {
    background: #f5f7fa;
    font-weight: 600;
    color: #2C3E50;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .belek-apts-snapshot ul,
    .belek-vls-snapshot ul {
        column-count: 2;
        column-gap: 36px;
    }

    .belek-apts-snapshot li,
    .belek-vls-snapshot li {
        break-inside: avoid;
    }
}

.belek-inv-row {
    margin-top: 12px;
    margin-bottom: 36px;
}

@media (min-width: 992px) {
    /* Match city-hub 73/27: location-page-fixes only sizes article.col-md-9,
       and .container .row { flex-wrap:wrap } otherwise drops the sidebar. */
    html.location-apartments-page.location-page .container .row.belek-inv-row {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: flex-start !important;
    }

    html.location-apartments-page.location-page .container .row.belek-inv-row > article.col-md-9 {
        flex: 0 0 73% !important;
        max-width: 73% !important;
        width: 73% !important;
        float: none !important;
    }

    html.location-apartments-page.location-page .container .row.belek-inv-row > aside.sidebar.right-sidebar.col-md-3 {
        flex: 0 0 27% !important;
        max-width: 27% !important;
        width: 27% !important;
        float: none !important;
    }
}

.belek-inv-grid .listing-section-title {
    margin-top: 12px;
}

.belek-inv-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 24px;
    margin-bottom: 20px;
    padding: 12px 0 16px;
    border-bottom: 1px solid #e0e0e0;
}

.belek-inv-header .results-count {
    font-size: 16px;
    color: #333;
}

.belek-inv-header .results-count strong {
    font-size: 20px;
    color: #08255d;
    font-weight: 700;
}

.belek-inv-header .showing-range {
    color: #666;
    font-size: 14px;
    margin-left: 8px;
}

.belek-inv-sidebar-note {
    font-size: 13px;
    color: #6b7a89;
    margin: 0 0 16px;
    line-height: 1.45;
}

/* City×Type sidebar — Belek Apartments reference */
.belek-ctx-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.belek-ctx-fixed {
    border: 1px solid rgba(184, 149, 108, 0.42);
    border-radius: var(--hub-widget-radius, 4px);
    background: #fff;
    box-shadow: var(--hub-shadow-card, none);
    padding: 12px 14px 13px;
    margin: 0 0 16px;
}

.belek-ctx-fixed .belek-ctx-title {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: #08255d;
}

.belek-ctx-fixed .belek-ctx-count {
    margin: 0;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    color: #6b7a89;
}

.belek-ctx-facet,
.belek-ctx-explore,
.belek-ctx-id {
    border: 1px solid rgba(184, 149, 108, 0.42);
    border-radius: var(--hub-widget-radius, 4px);
    background: #fff;
    box-shadow: var(--hub-shadow-card, none);
    margin: 0 0 16px;
    overflow: hidden;
}

.belek-ctx-facet strong,
.belek-ctx-explore strong,
.belek-ctx-id strong {
    display: block;
    margin: 0;
    padding: 8px 12px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--hub-gold, #b8956c);
    background: linear-gradient(180deg, #fffdf9 0%, var(--hub-cream, #f7f1e8) 100%);
    border-bottom: 1px solid rgba(184, 149, 108, 0.16);
}

.belek-ctx-facet a,
.belek-ctx-explore a {
    display: block;
    margin: 0;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--hub-navy-mid, #2c3a4d);
    text-decoration: none;
    border-bottom: 1px solid rgba(184, 149, 108, 0.1);
    overflow: hidden;
}

.belek-ctx-facet a:last-child,
.belek-ctx-explore a:last-child {
    border-bottom: 0;
}

.belek-ctx-facet a em {
    float: right;
    font-style: normal;
    font-size: 13px;
    font-weight: 500;
    color: #8a94a6;
}

.belek-ctx-facet a:hover,
.belek-ctx-facet a:focus,
.belek-ctx-explore a:hover,
.belek-ctx-explore a:focus {
    background: var(--hub-ivory, #faf6f0);
    color: var(--hub-navy, #0a1a32);
}

.belek-ctx-facet a:focus,
.belek-ctx-explore a:focus,
.belek-inv-mobile-filters summary:focus {
    outline: 2px solid #08255d;
    outline-offset: 2px;
}

.belek-ctx-facet a i.fa {
    margin-right: 6px;
    opacity: 0.85;
}

html.location-apartments-page .belek-ctx-facet a,
html.location-apartments-page .belek-ctx-explore a {
    text-decoration: none !important;
    color: var(--hub-navy-mid, #2c3a4d) !important;
}

html.location-apartments-page .belek-ctx-explore a {
    font-weight: 600;
}

.belek-inv-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 24px;
}

.belek-inv-header .results-count {
    order: 1;
}

.belek-inv-header .sorting-wrapper {
    order: 3;
}

.belek-inv-mobile-filters {
    display: none;
    order: 2;
    flex: 1 0 100%;
    margin: 0;
}

.belek-inv-mobile-filters summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border: 1px solid rgba(184, 149, 108, 0.42);
    border-radius: var(--hub-widget-radius, 4px);
    background: #fff;
    color: #08255d;
    font-size: 14px;
    font-weight: 700;
}

.belek-inv-mobile-filters summary::-webkit-details-marker {
    display: none;
}

.belek-inv-mobile-filters summary::after {
    content: "";
    width: 0;
    height: 0;
    margin-left: 10px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #08255d;
}

.belek-inv-mobile-filters[open] summary::after {
    transform: rotate(180deg);
}

.belek-inv-filter-meta {
    margin-left: auto;
    margin-right: 10px;
    font-size: 13px;
    font-weight: 500;
    color: #6b7a89;
}

.belek-inv-mobile-filters-body {
    margin-top: 10px;
}

@media (max-width: 991px) {
    .belek-inv-mobile-filters {
        display: block;
    }

    html.location-apartments-page .belek-inv-row > aside.sidebar.right-sidebar {
        display: none;
    }

    .belek-inv-header .sorting-wrapper {
        flex: 1 0 100%;
    }
}

html.location-apartments-page .belek-inv-grid .listing-card .listing-title {
    font-size: 20px;
    line-height: 1.35;
}

@media (max-width: 991px) {
    .belek-inv-row .sidebar.right-sidebar {
        margin-top: 28px;
    }
}

@media (max-width: 600px) {
    .belek-compare-table {
        font-size: 13.5px;
    }

    .belek-compare-table th,
    .belek-compare-table td {
        padding: 8px 8px;
    }

    .belek-compare-table tbody th {
        white-space: normal;
    }
}
