
.material-symbols-outlined {
    font-family: "Material Symbols Outlined" !important;
    font-weight: normal !important;
    font-style: normal !important;
    font-size: 24px;
    line-height: 1 !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    font-feature-settings: "liga";
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
}

.rn-portfolio-page,
.rn-single-page {
    --rn-primary: #002975;
    --rn-primary-2: #003da5;
    --rn-secondary: #bb001f;
    --rn-text: #181c20;
    --rn-muted: #5f6570;
    --rn-border: #dfe3e8;
    --rn-surface: #f7f9ff;
    --rn-white: #ffffff;
    color: var(--rn-text);
    font-family: "Inter", sans-serif;
}

.rn-portfolio-page *,
.rn-single-page * {
    box-sizing: border-box;
}

.rn-portfolio-page a,
.rn-single-page a {
    text-decoration: none;
}

.rn-container {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
}

.rn-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--rn-secondary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.rn-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: currentColor;
}

.rn-archive-hero,
.rn-single-top {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background:
        linear-gradient(90deg, rgba(247,249,255,.97), rgba(247,249,255,.82)),
        url("https://remaxnata.com/wp-content/uploads/2025/11/IMG_2799-scaled.webp") center/cover no-repeat;
}

.rn-archive-hero h1,
.rn-single-head h1 {
    margin: 14px 0 16px;
    color: var(--rn-primary);
    font-family: "Hanken Grotesk", sans-serif;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.08;
}

.rn-archive-hero p {
    max-width: 760px;
    margin: 0;
    color: var(--rn-muted);
    font-size: 18px;
    line-height: 1.7;
}

.rn-archive-main,
.rn-single-main {
    padding: 72px 0 110px;
    background: #fff;
}

.rn-filter-panel {
    margin-bottom: 54px;
    padding: 28px;
    border: 1px solid var(--rn-border);
    border-radius: 16px;
    background: var(--rn-white);
    box-shadow: 0 18px 50px rgba(0,41,117,.07);
}

.rn-filter-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 18px;
}

.rn-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rn-field > span {
    color: var(--rn-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.rn-field select,
.rn-field input {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid var(--rn-border);
    border-radius: 9px;
    background: var(--rn-surface);
    color: var(--rn-text);
    font: inherit;
}

.rn-field select:focus,
.rn-field input:focus {
    border-color: var(--rn-primary-2);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,61,165,.12);
}

.rn-filter-actions,
.rn-media-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.rn-button {
    min-height: 46px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    transition: .25s ease;
}

.rn-button:hover {
    transform: translateY(-2px);
}

.rn-button-primary {
    background: var(--rn-primary);
    color: #fff;
}

.rn-button-primary:hover {
    background: var(--rn-primary-2);
    color: #fff;
}

.rn-button-light {
    border-color: var(--rn-border);
    background: var(--rn-surface);
    color: var(--rn-primary);
}

.rn-button-whatsapp {
    background: #1f9d55;
    color: #fff;
}

.rn-result-head {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.rn-result-head h2 {
    margin: 10px 0 0;
    color: var(--rn-primary);
    font: 700 34px/1.2 "Hanken Grotesk", sans-serif;
}

.rn-quick-tabs {
    display: flex;
    gap: 8px;
    padding: 5px;
    border-radius: 10px;
    background: var(--rn-surface);
}

.rn-quick-tabs a {
    padding: 10px 16px;
    border-radius: 7px;
    color: var(--rn-primary);
    font-weight: 700;
}

.rn-quick-tabs a.is-active {
    background: var(--rn-primary);
    color: #fff;
}

.rn-property-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 26px;
}

.rn-property-card {
    overflow: hidden;
    border: 1px solid var(--rn-border);
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 12px 40px rgba(0,0,0,.045);
    transition: .3s ease;
}

.rn-property-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(0,41,117,.11);
}

.rn-property-image {
    position: relative;
    display: block;
    aspect-ratio: 4 / 2.8;
    overflow: hidden;
    background: var(--rn-surface);
}

.rn-property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.rn-property-card:hover .rn-property-image img {
    transform: scale(1.04);
}

.rn-operation-badge,
.rn-category-badge {
    position: absolute;
    z-index: 2;
    padding: 8px 12px;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.rn-operation-badge {
    top: 14px;
    left: 14px;
    background: var(--rn-secondary);
    color: #fff;
}

.rn-category-badge {
    right: 14px;
    bottom: 14px;
    background: rgba(0,41,117,.88);
    color: #fff;
    backdrop-filter: blur(8px);
}

.rn-property-content {
    padding: 23px;
}

.rn-location,
.rn-single-location {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--rn-muted);
    font-size: 13px;
}

.rn-location .material-symbols-outlined,
.rn-single-location .material-symbols-outlined {
    color: var(--rn-secondary);
    font-size: 19px;
}

.rn-property-content h3 {
    margin: 13px 0 17px;
    font: 700 22px/1.28 "Hanken Grotesk", sans-serif;
}

.rn-property-content h3 a {
    color: var(--rn-primary);
}

.rn-property-features {
    min-height: 42px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    color: var(--rn-muted);
    font-size: 13px;
}

.rn-property-features span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.rn-property-features .material-symbols-outlined {
    color: var(--rn-primary);
    font-size: 18px;
}

.rn-property-footer {
    margin-top: 20px;
    padding-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-top: 1px solid var(--rn-border);
}

.rn-property-footer strong {
    color: var(--rn-secondary);
    font: 800 22px/1 "Hanken Grotesk", sans-serif;
}

.rn-property-footer a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--rn-primary);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.rn-property-footer .material-symbols-outlined {
    font-size: 17px;
}

.rn-pagination {
    margin-top: 46px;
}

.rn-pagination ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 7px;
    list-style: none;
}

.rn-pagination a,
.rn-pagination span {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--rn-border);
    border-radius: 8px;
    color: var(--rn-primary);
    font-weight: 700;
}

.rn-pagination .current {
    border-color: var(--rn-primary);
    background: var(--rn-primary);
    color: #fff;
}

.rn-empty-state {
    padding: 70px 20px;
    text-align: center;
    border: 1px dashed var(--rn-border);
    border-radius: 14px;
    background: var(--rn-surface);
}

.rn-empty-state .material-symbols-outlined {
    color: var(--rn-primary);
    font-size: 56px;
}

.rn-breadcrumb {
    margin-bottom: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--rn-muted);
    font-size: 13px;
}

.rn-breadcrumb a {
    color: var(--rn-primary);
}

.rn-single-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.rn-single-head h1 {
    max-width: 900px;
    font-size: clamp(34px, 4.3vw, 56px);
}

.rn-single-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.rn-static-badge {
    position: static;
    display: inline-flex;
}

.rn-single-price {
    min-width: 270px;
    padding: 24px;
    border-radius: 14px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 16px 45px rgba(0,41,117,.1);
}

.rn-single-price span,
.rn-single-price small {
    display: block;
    color: var(--rn-muted);
}

.rn-single-price strong {
    display: block;
    margin: 8px 0;
    color: var(--rn-secondary);
    font: 800 32px/1.1 "Hanken Grotesk", sans-serif;
}

.rn-gallery {
    margin-bottom: 42px;
}

.rn-gallery-main {
    overflow: hidden;
    aspect-ratio: 16 / 8.2;
    border-radius: 16px;
    background: var(--rn-surface);
}

.rn-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rn-gallery-thumbs {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(8, minmax(0,1fr));
    gap: 10px;
}

.rn-thumb {
    padding: 0;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 2px solid transparent;
    border-radius: 8px;
    background: none;
    cursor: pointer;
}

.rn-thumb.is-active {
    border-color: var(--rn-secondary);
}

.rn-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rn-single-layout {
    display: grid;
    grid-template-columns: minmax(0,1fr) 360px;
    gap: 34px;
    align-items: start;
}

.rn-single-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.rn-detail-card {
    padding: 30px;
    border: 1px solid var(--rn-border);
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 12px 40px rgba(0,0,0,.035);
}

.rn-detail-card h2 {
    margin: 10px 0 22px;
    color: var(--rn-primary);
    font: 700 30px/1.2 "Hanken Grotesk", sans-serif;
}

.rn-description {
    color: var(--rn-muted);
    font-size: 16px;
    line-height: 1.85;
}

.rn-description p:last-child {
    margin-bottom: 0;
}

.rn-attribute-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 12px;
}

.rn-attribute-item {
    padding: 14px;
    border: 1px solid var(--rn-border);
    border-radius: 9px;
    background: var(--rn-surface);
}

.rn-attribute-item span {
    display: block;
    margin-bottom: 5px;
    color: var(--rn-muted);
    font-size: 12px;
}

.rn-attribute-item strong {
    color: var(--rn-primary);
    font-size: 15px;
}

.rn-map-frame {
    overflow: hidden;
    height: 420px;
    border-radius: 12px;
}

.rn-map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.rn-single-sidebar {
    position: sticky;
    top: 120px;
}

.rn-contact-card {
    padding: 28px;
    border-radius: 16px;
    background: var(--rn-primary);
    color: #fff;
    box-shadow: 0 20px 55px rgba(0,41,117,.18);
}

.rn-contact-card > img {
    width: 210px;
    max-height: 85px;
    margin: 0 auto 24px;
    display: block;
    object-fit: contain;
    padding: 10px;
    border-radius: 8px;
    background: #fff;
}

.rn-contact-card .rn-eyebrow {
    color: rgba(255,255,255,.72);
}

.rn-contact-card h2 {
    margin: 10px 0 4px;
    color: #fff;
    font: 700 30px/1.2 "Hanken Grotesk", sans-serif;
}

.rn-office-name {
    margin: 0 0 22px;
    color: rgba(255,255,255,.7);
}

.rn-contact-list {
    margin-bottom: 22px;
    border-top: 1px solid rgba(255,255,255,.14);
}

.rn-contact-list > div {
    padding: 14px 0;
    display: flex;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,.14);
}

.rn-contact-list .material-symbols-outlined {
    margin-top: 2px;
    color: #fff;
}

.rn-contact-list p {
    margin: 0;
}

.rn-contact-list small {
    display: block;
    margin-bottom: 3px;
    color: rgba(255,255,255,.6);
}

.rn-contact-list strong {
    color: #fff;
}

.rn-full-button {
    width: 100%;
    margin-top: 10px;
}

.rn-contact-card .rn-button-primary {
    background: var(--rn-secondary);
}

.rn-side-note {
    margin-top: 16px;
    padding: 18px;
    display: flex;
    gap: 12px;
    border: 1px solid var(--rn-border);
    border-radius: 12px;
    background: var(--rn-surface);
}

.rn-side-note .material-symbols-outlined {
    color: var(--rn-primary);
}

.rn-side-note p {
    margin: 5px 0 0;
    color: var(--rn-muted);
    font-size: 13px;
    line-height: 1.55;
}

.rn-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0,41,117,.3);
}

.rn-image-placeholder .material-symbols-outlined {
    font-size: 64px;
}

@media (max-width: 1100px) {
    .rn-filter-grid {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }

    .rn-property-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .rn-single-layout {
        grid-template-columns: minmax(0,1fr) 320px;
    }

    .rn-attribute-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .rn-gallery-thumbs {
        grid-template-columns: repeat(5, minmax(0,1fr));
    }
}

@media (max-width: 768px) {
    .rn-container {
        width: min(100% - 30px, 1280px);
    }

    .rn-archive-hero,
    .rn-single-top {
        padding: 58px 0;
    }

    .rn-archive-main,
    .rn-single-main {
        padding: 52px 0 75px;
    }

    .rn-filter-grid,
    .rn-property-grid,
    .rn-single-layout {
        grid-template-columns: 1fr;
    }

    .rn-result-head,
    .rn-single-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .rn-quick-tabs {
        width: 100%;
        overflow-x: auto;
    }

    .rn-quick-tabs a {
        flex: 1;
        text-align: center;
        white-space: nowrap;
    }

    .rn-single-price {
        width: 100%;
        min-width: 0;
    }

    .rn-gallery-main {
        aspect-ratio: 4 / 3;
    }

    .rn-gallery-thumbs {
        grid-template-columns: repeat(4, minmax(0,1fr));
    }

    .rn-single-sidebar {
        position: static;
    }

    .rn-attribute-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .rn-filter-panel,
    .rn-detail-card,
    .rn-contact-card {
        padding: 21px;
    }

    .rn-filter-actions,
    .rn-media-links {
        flex-direction: column;
    }

    .rn-button {
        width: 100%;
    }

    .rn-property-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .rn-gallery-thumbs {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }
}


/* v1.5.0 — tema header/footer ile içerik modu */
.rn-content-mode,
.rn-shortcode-mode {
    width: 100%;
    max-width: none;
    margin: 0;
}

.rn-inline-top,
.rn-inline-archive-hero {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
}

.rn-inline-main,
.rn-inline-archive-main {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
}

.rn-detail-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

.rn-tab-button {
    min-height: 66px;
    padding: 12px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid var(--rn-border);
    border-radius: 999px;
    background: #fff;
    color: var(--rn-text);
    font: 600 17px/1.2 "Inter", sans-serif;
    cursor: pointer;
    transition: .25s ease;
}

.rn-tab-button:hover,
.rn-tab-button.is-active {
    border-color: transparent;
    background: #e9edf2;
    color: var(--rn-primary);
}

.rn-tab-button .material-symbols-outlined {
    font-size: 23px;
}

.rn-tab-panel {
    display: none;
}

.rn-tab-panel.is-active {
    display: block;
}

.rn-tab-panel > .rn-detail-card + .rn-detail-card {
    margin-top: 24px;
}

.rn-tab-map {
    margin-top: 24px;
}

.rn-index-note {
    margin: -8px 0 22px;
    padding: 13px 15px;
    border-left: 3px solid var(--rn-secondary);
    background: var(--rn-surface);
    color: var(--rn-muted);
    font-size: 13px;
    line-height: 1.65;
}

.rn-index-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 13px;
}

.rn-index-card {
    padding: 20px;
    border: 1px solid var(--rn-border);
    border-radius: 12px;
    background: var(--rn-surface);
}

.rn-index-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--rn-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.rn-index-card strong {
    color: var(--rn-primary);
    font: 700 19px/1.3 "Hanken Grotesk", sans-serif;
}

.rn-advisor-photo {
    width: 100%;
    aspect-ratio: 4 / 3.1;
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
}

.rn-advisor-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}

.rn-advisor-title {
    margin: 3px 0 6px;
    color: rgba(255,255,255,.78);
    font-size: 14px;
}

@media (max-width: 768px) {
    .rn-detail-tabs {
        grid-template-columns: 1fr;
    }

    .rn-index-grid {
        grid-template-columns: 1fr;
    }
}


/* v1.5.1 — Temanın tekil yazı başlığı ve tarih alanını kaldırır */
.single-remax_property .entry-header,
.single-remax_property .post-header,
.single-remax_property .post-title,
.single-remax_property .entry-title,
.single-remax_property .entry-meta,
.single-remax_property .post-meta,
.single-remax_property .single-post-header {
    display: none !important;
}

/* Bazı temalarda içerikten önce eklenen boşluğu azaltır */
.single-remax_property .site-main > article,
.single-remax_property .content-area > article,
.single-remax_property article.remax_property {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Logo yedek görsel olduğunda kırpılmasını engeller */
.rn-advisor-photo img[src*="remax-nata-logo"] {
    object-fit: contain;
    object-position: center;
    padding: 28px;
    background: #ffffff;
}


/* v1.5.2 — tema başlığı, danışman görseli ve galeri okları */

/* Temanın içerik üstünde oluşturduğu başlık/tarih alanlarını daha geniş kapsamda gizler */
.single-remax_property .page-header,
.single-remax_property .page-title,
.single-remax_property .single-title,
.single-remax_property .blog-title,
.single-remax_property .post-heading,
.single-remax_property .entry-date,
.single-remax_property .posted-on,
.single-remax_property .post-date,
.single-remax_property article > header,
.single-remax_property article > .entry-header,
.single-remax_property article > .post-header {
    display: none !important;
}

/* Eklenti içindeki ana başlık her zaman görünür */
.single-remax_property .rn-content-mode .rn-single-head h1 {
    display: block !important;
}

/* Danışman fotoğrafı daha kompakt ve profesyonel görünür */
.rn-advisor-photo {
    width: 180px;
    height: 180px;
    aspect-ratio: 1 / 1;
    margin: 0 auto 24px;
    border: 4px solid rgba(255,255,255,.18);
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(0,0,0,.18);
}

.rn-advisor-photo img {
    width: 100%;
    height: 100%;
    padding: 0;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
}

/* Logo yedek görsel olarak kullanıldığında dairesel alanda düzgün görünür */
.rn-advisor-photo img[src*="remax-nata-logo"] {
    padding: 24px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
}

/* Galeri geçiş okları */
.rn-gallery-main {
    position: relative;
}

.rn-gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 50px;
    height: 50px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 50%;
    background: rgba(0,41,117,.78);
    color: #fff;
    cursor: pointer;
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: .25s ease;
}

.rn-gallery-arrow:hover {
    background: #bb001f;
    transform: translateY(-50%) scale(1.06);
}

.rn-gallery-arrow .material-symbols-outlined {
    color: #fff !important;
    font-size: 30px !important;
}

.rn-gallery-prev {
    left: 18px;
}

.rn-gallery-next {
    right: 18px;
}

@media (max-width: 768px) {
    .rn-advisor-photo {
        width: 150px;
        height: 150px;
    }

    .rn-gallery-arrow {
        width: 42px;
        height: 42px;
    }

    .rn-gallery-prev {
        left: 10px;
    }

    .rn-gallery-next {
        right: 10px;
    }
}


/* v1.5.3 — tekil ilan tarih alanını tamamen kaldırır */
.single-remax_property time,
.single-remax_property .date,
.single-remax_property .entry-date,
.single-remax_property .posted-on,
.single-remax_property .post-date,
.single-remax_property .published,
.single-remax_property .updated,
.single-remax_property .meta-date,
.single-remax_property .ct-post-meta,
.single-remax_property .ct-entry-meta,
.single-remax_property .wp-block-post-date {
    display: none !important;
}

/* Tarih tek başına bir üst kapsayıcıda kalıyorsa boş alanı da kapatır */
.single-remax_property .entry-meta:empty,
.single-remax_property .post-meta:empty,
.single-remax_property .ct-post-meta:empty,
.single-remax_property .ct-entry-meta:empty {
    display: none !important;
}
