@media only screen and (min-width: 0rem){
    #post{
        padding: 2rem;
        overflow: hidden;
        padding-right: 15%;
        padding-left: 15%;
        padding-bottom: 80px;
    }
    .post-container{
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
    }
    #post img{
        display: block;
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 2rem auto;
    }
    #post ul, ol {
        list-style-position: inside;
        font-size: 1.3rem;
        line-height: 1.6;
    }
    #post li {
        margin-bottom: 0.75rem;
    }
    #post li::before {
        content: "•";
        color: var(--primary);
        font-weight: bold;
        display: inline-block;
        width: 1rem;
    }
    .highlight-section {
        background-color: #ffc107;
        padding: 1.5rem;
        border-radius: 8px;
        font-size: 1.3rem;
    }
    
    .content p{
        line-height: 1.2;
    }

    .hiking-details p {
        line-height: 1.2;
    }
    
    .video-container {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
        overflow: hidden;
        max-width: 100%;
        margin: 2rem auto;
    }
    
    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

    .tour-callout {
        background: #f5f5f5;
        border-left: 4px solid var(--primary);
        padding: 16px 20px;
        margin: 24px 0;
        border-radius: 0 8px 8px 0;
    }

    .tour-callout-title {
        display: block;
        margin-top: 0;
        margin-bottom: 0.75rem;
        color: var(--primary);
        font-size: 1.5rem;
        font-weight: bold;
    }

    .tour-callout p {
        font-size: 1.1rem;
    }

    .tour-callout-image {
        width: 100%;
        max-height: 300px;
        object-fit: contain;
        object-position: center;
        border-radius: 4px;
        margin: 0 0 1rem 0 !important;
    }

    .fh-calendar-wrapper {
        transform: scale(0.75);
        transform-origin: top left;
        width: 133%;
        margin-top: 1rem;
        max-height: 775px;
        overflow: hidden;
    }
}

/*-- -------------------------- -->
<---     Book Tour Button       -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
    .book-tour-btn {
        display: block;
        background-color: var(--primary);
        color: #fff;
        padding: 1rem 2rem;
        border-radius: 4px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1rem;
        transition: opacity 0.2s ease;
        margin: 1rem 0 1.5rem 0;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }

    .book-tour-btn:hover {
        opacity: 0.85;
        text-decoration: none;
        color: #fff;
    }
}

/*-- -------------------------- -->
<---     Post CTA Bar           -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
    .post-cta-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--primary);
        padding: 0.8rem 2rem;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        z-index: 9998;
        box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    }

    .post-cta-btn {
        color: #fff;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1rem;
        transition: opacity 0.2s ease;
    }

    .post-cta-btn:hover {
        opacity: 0.85;
        text-decoration: none;
        color: #fff;
    }

    .post-cta-close {
        position: absolute;
        right: 1rem;
        background: none;
        border: none;
        color: #fff;
        font-size: 1.2rem;
        cursor: pointer;
        padding: 0.2rem 0.5rem;
        opacity: 0.7;
        transition: opacity 0.2s ease;
    }

    .post-cta-close:hover {
        opacity: 1;
    }
}

@media only screen and (max-width: 63.9375rem){
    #post {
        padding: 1rem;
        padding-bottom: 90px;
    }

    #post img{
        max-width: 100%;
    }

    .post-cta-bar {
        padding: 0.8rem 1rem;
    }
}