/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 02 2026 | 08:28:29 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 
/* =====================================
   CENTER TITLE, PRICE & ICONS (HEADER)
===================================== */

/* Make header content centered */
.epl-property-single .entry-header {
    text-align: center;
}

/* Stack title + price + icons vertically */
.epl-property-single .title-meta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Remove column behavior */
.epl-property-single .entry-col {
    width: 100%;
    text-align: center;
}

/* Title (Address) */
.epl-property-single .entry-title {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 10px;
}

/* Price */
.epl-property-single .page-price {
    font-size: 32px;
    font-weight: 700;
    color: #c1121f;
    margin: 10px 0 15px;
    display: block;
}

/* Icons row */
.epl-property-single .epl-property-featured-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 10px;
}

/* Individual icon + value */
.epl-property-single .epl-icon-svg-container {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    color: #374151;
}

/* Make icons slightly bigger */
.epl-property-single .epl-icon svg {
    width: 22px;
    height: 22px;
}
/* ===============================
   GLOBAL PROPERTY PAGE WRAPPER
================================ */
.epl-property-single {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    color: #222;
}

/* ===============================
   HEADER / TITLE SECTION
================================ */
.epl-header {
    margin-bottom: 30px;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 25px;
}

.title-meta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}
.epl-property-blog .entry-title {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 700;
    margin: 1rem 0 0.5rem;
    line-height: 1.2;
}
.epl-property-blog .entry-title a {
    color: #014B4E;
}
.entry-title-sub {
    display: block;
    font-size: 14px;
    color: #6b7280;
    margin-top: 6px;
}

/* ===============================
   PRICE + ICONS
================================ */
.property-pricing-details {
    text-align: right;
}

.epl-property-blog .price .page-price {
    font-size: clamp(18px, 2vw, 20px);
    font-weight: 700;
    color: #202020;
    display: block;
    margin-bottom: 10px;
}

.epl-property-featured-icons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.epl-icon-svg-container {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #374151;
}
.epl-property-blog .property-feature-icons {
    margin: 0 0 15px;
    display: flex;
}

/* ===============================
   HERO IMAGE
================================ */
.entry-image {
    margin: 30px 0;
}

.epl-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    object-fit: cover;
}

/* ===============================
   TAB SECTIONS (DETAILS / DESC)
================================ */
.epl-tab-wrapper {
    margin-top: 40px;
}

.epl-tab-section {
    margin-bottom: 35px;
}

.epl-tab-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e5e7eb;
}

.epl-tab-content {
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
}

/* ===============================
   DESCRIPTION HEADINGS
================================ */
.epl-section-description h2.entry-title {
    font-size: 26px;
    margin-bottom: 10px;
}

.secondary-heading {
    font-size: 16px;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 20px;
}

/* ===============================
   PROPERTY FEATURES GRID
================================ */
.epl-property-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px 20px;
    padding: 0;
    margin: 0;
}

.epl-property-features li {
    list-style: none;
    background: #f9fafb;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 14px;
    border: 1px solid #e5e7eb;
}

/* ===============================
   AUTHOR / AGENT BOX
================================ */
.epl-author-box-container {
    margin-top: 50px;
    padding: 25px;
    border-radius: 14px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}

.epl-author-image img {
    border-radius: 100%;
}

.epl-author-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

/* ===============================
   COMMENTS SECTION
================================ */
.comments-area {
    max-width: 900px;
    margin: 60px auto 0;
}

.comment-form textarea,
.comment-form input[type="text"] {
    width: 100%;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    padding: 10px;
}

.comment-form .submit {
    background: #111827;
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.comment-form .submit:hover {
    background: #000;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .title-meta-wrapper {
        flex-direction: column;
    }

    .property-pricing-details {
        text-align: left;
    }

    .epl-property-featured-icons {
        justify-content: flex-start;
    }
}

