
.mr-host-single :is(h1, h2, h3, h4, h5, h6){
    /* font-family: 'Cantata One', serif; */
    font-family: 'Montserrat', sans-serif;
}

.mr-breadcrumb {
    width: 100%;
}
.mr-breadcrumb a {
    color: var(--mr-mid-gray);
}

.mr-host-container{
    display: flex;
    flex-direction: row;
    gap: 40px;
    padding: 20px 0;
}
.mr-host-content, .mr-host-sidebar{
    width: 100%;
}
.mr-host-content {
    flex: 2;
}
.mr-host-sidebar{
    flex: 1;
}
.mr-host-about{
    background-color: var(--mr-bg-light);
    padding: 45px 30px 30px 24px;
    min-height: 200px;
    border-radius: var(--mr-border-radius);
}
.mr-host-about h2 {
    font-size: 20px;
    color: var(--mr-title-dark);
    font-weight: 700;
    margin-bottom: 22px;

}
.mr-host-about-content {
    color: red;
}

/* Header section  */
.mr-host-head{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.mr-profile-img img{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-right: 20px;
}
.mr-host-name {
    font-size: 48px;
    color: var(--mr-title-dark);
    font-weight: 600;
    line-height: 58px;
    margin: 0 0 8px 0;
}
.mr-host-location {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: var(--mr-mid-gray);
    text-transform: uppercase;
}

/* Contet Body Section  */
.mr-host-content-body{
    margin-top: 50px;
}

.mr-retreats-list{}

.mr-host-retreats-title{
    font-size: 20px;
    color: var(--mr-title-dark);
    font-weight: 700;
    margin: 0 0 8px 0;
}

.mr-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* Read More secion for About section  */
.mr-about-toggle {
    display: none;
}

.mr-about-content {
    overflow: hidden;
    max-height: 7.5em; /* show ~5 lines */
    transition: max-height 0.5s ease-in-out;
    position: relative;
    font-size: 16px;
    line-height: 24px;
    color: var(--mr-title-dark);
    font-weight: 400;
}

.mr-about-extra {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* When checkbox is checked */
.mr-about-toggle:checked + .mr-about-content {
    max-height: 1000px; /* large enough to show full paragraph */
}

.mr-about-toggle:checked + .mr-about-content .mr-about-extra {
    opacity: 1;
}

.mr-about-label {
    display: inline-block;
    margin-top: 5px;
    color: #0073aa;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
}

.mr-about-label::after {
    content: ' Read more';
}

.mr-about-toggle:checked + .mr-about-content + .mr-about-label::after {
    content: ' Show less';
}





