/* --- Dynamic Enhancements --- */

/* Read More Toggle */
.content-block {
    position: relative;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.content-block.collapsed-text {
    max-height: 160px;
    /* ~6 lines */
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: #053DA0;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
}

.read-more-btn:hover {
    background-color: #ffffff;
    color: #053da0a3;
    text-decoration: underline;
}

.read-more-btn svg {
    transition: transform 0.3s ease;
}

.read-more-btn.is-open svg {
    transform: rotate(180deg);
}

/* Secondary Button Style */
.btn-secondary-style {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 28px;
    background: #fff;
    color: #181244;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--trans);
    text-decoration: none;
}

.btn-secondary-style:hover {
    background: #181244;
    color: #fff;
}

/* --- Amenities Grid --- */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

/* Tablets */
@media (max-width: 992px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}