/* ═══════════════════════════════════════════════════════════════════
   OwnerRez Cabin Description — or-cabin-desc.css  v1.3
   ═══════════════════════════════════════════════════════════════════ */

/* ── Wrapper ──────────────────────────────────────────────────────── */
.or-cabin-desc {
    font-family: inherit;
    color: inherit;
    max-width: 100%;
    margin: 0 auto;
}

/* ── Stats bar ────────────────────────────────────────────────────── */
.or-cabin-desc__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 40px;
    margin-bottom: 28px;
    padding: 18px 24px;
    background: #f8f6f3;
    border-radius: 10px;
}

.or-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    min-width: 64px;
}

.or-stat__icon  { font-size: 1.4rem; line-height: 1; }
.or-stat__value { font-size: 1.3rem; font-weight: 700; color: #1a1a1a; line-height: 1.2; }
.or-stat__label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: #888; }

/* ── Body wrapper ─────────────────────────────────────────────────── */
.or-cabin-desc__body {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* ── Section label ────────────────────────────────────────────────── */
.or-cabin-desc__label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
    margin: 0 0 8px;
    padding: 0;
    border: none;
}

/* ── Headline ─────────────────────────────────────────────────────── */
.or-cabin-desc__headline {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 8px;
    padding: 0;
    color: #1a1a1a;
    border: none;
}

/* ── Content area ─────────────────────────────────────────────────── */
.or-cabin-desc__content {
    font-family: "Open Sans", sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.58em;
    letter-spacing: -0.01em;
    color: rgb(71, 71, 71);
    margin: 0;
    padding: 0;

    /* Read More: collapsed state */
    overflow: hidden;
    position: relative;
    transition: max-height 0.4s ease;
}

/* Fade-out gradient at bottom when collapsed */
.or-cabin-desc__content:not(.is-expanded)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 90px;

    pointer-events: none;
}

/* Expanded state — remove height cap and fade */
.or-cabin-desc__content.is-expanded {
    max-height: none !important;
}

.or-cabin-desc__content.is-expanded::after {
    display: none;
}

/* Paragraphs inside content */
.or-cabin-desc__content p {
    margin: 0 0 1.1em;
    line-height: 1.58em;
    color: rgb(71, 71, 71);
}

.or-cabin-desc__content p:last-child { margin-bottom: 0; }

.or-cabin-desc__content br {
    display: block;
    margin-bottom: 0.2em;
}

.or-cabin-desc__content ul,
.or-cabin-desc__content ol {
    padding-left: 1.4em;
    margin: 0 0 1.1em;
}

.or-cabin-desc__content li {
    margin-bottom: 0.4em;
    line-height: 1.65;
    color: rgb(71, 71, 71);
}

.or-cabin-desc__content strong,
.or-cabin-desc__content b { font-weight: 700; color: #1a1a1a; }

.or-cabin-desc__content a { color: inherit; text-decoration: underline; }

.or-cabin-desc__content h1,
.or-cabin-desc__content h2,
.or-cabin-desc__content h3,
.or-cabin-desc__content h4 {
    margin: 0.8em 0 0.4em;
    line-height: 1.3;
    color: #1a1a1a;
}

/* ── Read More button ─────────────────────────────────────────────── */
.or-cabin-desc__readmore-btn {
	    width: fit-content;
    display: inline-block;
    margin-top: 1rem;
background-color: #FFFFFF00 !important;
    font-family: "Open Sans", Sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    fill: #18221A !important;
    color: #18221A !important;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #18221A;
    border-radius: 100px 100px 100px 100px;
    padding: 01.05em 02.8em 01.05em 02.6em;
    transition: background 0.2s ease, color 0.2s ease;
}

.or-cabin-desc__readmore-btn:hover {
	   fill:white !important;
    color: white !important;
	background-color: #18221A !important;
}
.or-cabin-desc__readmore-btn:hover {
    background: #333;
    color: #fff;
}

/* ── Error / info messages ────────────────────────────────────────── */
.or-message {
    padding: 12px 16px;
    border-left: 4px solid #e0a800;
    background: #fffbea;
    font-size: 0.9rem;
    color: #555;
    border-radius: 4px;
    margin: 0;
}

.or-message--error {
    border-left-color: #d63638;
    background: #fef7f7;
    color: #d63638;
}

/* ── Responsive ───────────────────────────────────────────────────── */
@media ( max-width: 767px ) {
    .or-cabin-desc__content {
        font-size: 1.55rem;
    }
    .or-cabin-desc__stats {
        gap: 10px 20px;
        padding: 14px 16px;
    }
    .or-cabin-desc__headline {
        font-size: 1.35rem;
    }
    .or-stat__value { font-size: 1.1rem; }
	
	.or-cabin-desc__readmore-btn {
		 width: 100%;
        font-size: 1.35rem;
}

}