/* Hide "Private:" prefix on posts */
.post-title .private {
    display: none;
}

/* Mobile page titles - smaller on phones */
@media (max-width: 768px) {
    .entry-title,
    h1.entry-title,
    .page-title,
    h1 {
        font-size: 28px !important;
    }
}

/* Hide homepage title and remove space */
.home .entry-title,
.home h1.entry-title {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.home .entry-header {
    display: none !important;
}

/* Yellow background on mobile */
@media (max-width: 768px) {
    body,
    .site,
    .ast-container,
    #content {
        background-color: #FEFCE0 !important;
    }
}
/* Desktop text */
body,
p,
.entry-content {
    font-size: 18px !important;
}

/* Mobile text */
@media (max-width: 768px) {
    body,
    p,
    .entry-content {
        font-size: 16px !important;
    }
}
/* Add padding to media & text boxes */
.wp-block-media-text {
    padding: 20px !important;
}

/* Just left padding if you prefer */
.wp-block-media-text__content {
    padding-left: 20px !important;
}
/* Horizontal menu on mobile with smaller text */
@media (max-width: 768px) {
    /* Force horizontal layout */
    .ast-mobile-header-content .main-header-menu,
    .main-header-bar-navigation .main-header-menu {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 15px !important;
        justify-content: center !important;
    }
    
    .main-header-menu li {
        display: inline-block !important;
        white-space: nowrap !important;
    }
    
    /* Smaller menu text */
    .ast-mobile-header-content .main-header-menu a,
    .main-header-bar-navigation .main-header-menu a {
        font-size: 14px !important;
    }
}
/* Yellow background for mobile menu */
@media (max-width: 768px) {
    .main-header-bar,
    .ast-mobile-header-content,
    .site-header,
    header.site-header {
        background-color: #FEFCE0 !important;
    }
}
/* Yellow background for mobile header - more specific */
@media (max-width: 768px) {
    .ast-mobile-header-wrap,
    .ast-mobile-header,
    .ast-primary-header-bar,
    .main-header-bar-wrap,
    #masthead,
    .site-header {
        background-color: #FEFCE0 !important;
    }
}
/* Force yellow on all mobile header elements */
@media (max-width: 768px) {
    header,
    header *,
    .site-header,
    .site-header *,
    .ast-mobile-header-wrap,
    .ast-mobile-header-wrap *,
    .main-header-bar,
    .main-header-bar * {
        background-color: #FEFCE0 !important;
    }
    
    /* Keep menu text black */
    .main-header-menu a {
        color: #000000 !important;
    }
}
/* Reduce menu spacing on mobile */
@media (max-width: 768px) {
    .ast-mobile-header-content .main-header-menu,
    .main-header-bar-navigation .main-header-menu {
        gap: 5px !important;
    }
    
    .main-header-menu a {
        padding: 5px 6px !important;
        font-size: 12px !important;
    }
}
/* Larger text on anxiety relief pages - mobile */
@media (max-width: 768px) {
    body p,
    body .entry-content p {
        font-size: 20px !important;
        line-height: 1.7 !important;
    }
    
    /* Smaller buttons on mobile */
    .entry-content a[style*="padding"] {
        padding: 12px 25px !important;
        font-size: 16px !important;
    }
}
/* Hide titles on anxiety steps (not first page) */
.page-id-1088 .entry-title,
.page-id-1093 .entry-title,
.page-id-1095 .entry-title,
.page-id-1098 .entry-title,
.page-id-1102 .entry-title,
.page-id-1105 .entry-title,
.page-id-1107 .entry-title,
.page-id-1110 .entry-title,
.page-id-1114 .entry-title,
.page-id-1154 .entry-title,
.page-id-1293 .entry-title,
.page-id-1160 .entry-title,
.page-id-1206 .entry-title,
.page-id-1177 .entry-title,
.page-id-1180 .entry-title,
.page-id-1182 .entry-title,
.page-id-1156 .entry-title {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
/* Fit Mind Shape game videos on laptops and desktops */
/* Desktop and portrait phone */
.video-container {
    max-height: 92vh !important;
}
.game-video {
    max-height: 92vh !important;
    object-fit: contain !important;
}

/* Landscape phone — use full height */
@media (max-height: 500px) and (orientation: landscape) {
    .video-container {
        max-height: 100vh !important;
    }
    .game-video {
        max-height: 100vh !important;
    }
}