/* Your Moon Day — same shell as Library: brand/divider full chrome, content 960. */

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body.moon-day-page {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    background-color: #fffef7;
    box-sizing: border-box;
    position: relative;
    color: #2d2d2d;
}

body.moon-day-page.md-drawer-open {
    overflow: hidden;
}

/* Hamburger — same as Library / calculators */
.moon-day-page .hamburger-menu {
    position: absolute;
    top: 5px;
    right: 60px;
    z-index: 1000;
}

.moon-day-page .hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.moon-day-page .hamburger-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #2d2d2d;
    transition: all 0.3s ease;
}

.moon-day-page .hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.moon-day-page .hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.moon-day-page .hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.moon-day-page .hamburger-dropdown {
    position: absolute;
    top: 50px;
    right: 0;
    background-color: #fffef7;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    display: none;
    overflow: hidden;
}

.moon-day-page .hamburger-dropdown.active {
    display: block;
}

.moon-day-page .hamburger-dropdown a {
    display: block;
    padding: 12px 20px;
    color: #2d2d2d;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.moon-day-page .hamburger-dropdown a:last-child {
    border-bottom: none;
}

.moon-day-page .hamburger-dropdown a:hover {
    background-color: #f5f5f5;
}

.moon-day-page .hamburger-dropdown a.current-page {
    color: #ec0059;
}

/* Brand + divider: full page chrome (like .blog-header) */
.moon-day-page .md-header {
    position: relative;
    padding: 10px 40px 0;
    width: 100%;
    box-sizing: border-box;
}

/* Same as calculator: brand sits tight above the page title */
.moon-day-page .md-header .site-brand-header {
    margin-bottom: 0;
}

/* Content column: 960 (like .blog-container / .home-main) */
.moon-day-page .md-wrap {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px 10px;
    width: 100%;
    box-sizing: border-box;
}

/* Title: Playfair 28 like /tools; spacing like calculator natal-page-h1 */
.moon-day-page h1.md-title {
    font-family: 'Playfair Display', serif;
    color: #2d2d2d;
    text-align: center;
    margin: 16px 0 25px;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.25;
}

/* Same size as homepage .home-slider */
.moon-day-page .md-hero {
    position: relative;
    width: 100%;
    height: 211px;
    margin: 0 0 20px;
    overflow: hidden;
    background: #ebe8e0;
}

.moon-day-page .md-hero-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.moon-day-page .md-profile-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 14px;
    margin: 0 0 22px;
    padding-bottom: 12px;
    border-bottom: 1px solid #ebebe3;
    text-align: center;
}

.moon-day-page .md-profile-bar[hidden] {
    display: none !important;
}

.moon-day-page .md-profile-bar-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 10px;
    min-width: 0;
}

.moon-day-page .md-profile-label {
    font-size: 13px;
    color: #555;
    flex-shrink: 0;
}

.moon-day-page .md-profile-select {
    /* Kept for sync only; visible Who control is .md-who-dd */
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.moon-day-page .md-who-dd {
    position: relative;
    width: max-content;
    max-width: 200px;
}

.moon-day-page .md-who-dd[hidden] {
    display: none !important;
}

.moon-day-page .md-who-dd-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    min-height: 0;
    padding: 8px 10px;
    border: 1px solid #d8d8d0;
    border-radius: 2px;
    background: #fff;
    color: #2d2d2d;
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    text-align: left;
    cursor: pointer;
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
}

.moon-day-page .md-who-dd-btn::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #666;
    flex-shrink: 0;
}

.moon-day-page .md-who-dd-text {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.moon-day-page .md-who-dd-menu {
    position: absolute;
    left: 0;
    right: auto;
    min-width: 100%;
    width: max-content;
    max-width: min(260px, 90vw);
    top: calc(100% + 4px);
    z-index: 40;
    margin: 0;
    padding: 4px 0;
    list-style: none;
    background: #fffef7;
    border: 1px solid #d8d8d0;
    border-radius: 2px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    max-height: none;
    overflow: visible;
}

.moon-day-page .md-who-dd-menu[hidden] {
    display: none !important;
}

.moon-day-page .md-who-dd-option {
    display: block;
    width: 100%;
    margin: 0;
    padding: 8px 12px;
    border: none;
    background: transparent;
    color: #2d2d2d;
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;
    text-align: left;
    cursor: pointer;
    box-sizing: border-box;
    white-space: nowrap;
}

.moon-day-page .md-who-dd-option[aria-selected="true"] {
    font-weight: 600;
    background: #f0ebe0;
}

.moon-day-page .md-who-dd-option:hover,
.moon-day-page .md-who-dd-option:focus {
    background: #f5f1e8;
    outline: none;
}

.moon-day-page .md-who-moon {
    font-size: 14px;
    color: #444;
    white-space: nowrap;
}

.moon-day-page .md-who-moon[hidden] {
    display: none !important;
}

.moon-day-page .md-profile-chip {
    margin: 0;
    font-size: 14px;
}

.moon-day-page .md-profile-toggle {
    font-family: inherit;
    font-size: 14px;
    padding: 8px 0;
    border: none;
    background: transparent;
    color: #2d2d2d;
    text-decoration: underline;
    cursor: pointer;
    white-space: nowrap;
}

.moon-day-page .md-profile-toggle:hover {
    color: #cc0000;
}

.moon-day-page .md-profile-toggle[hidden] {
    display: none !important;
}

.moon-day-page .md-form-fold {
    position: relative;
    margin: 0 auto 28px;
    max-width: 470px;
}

.moon-day-page .md-form-fold[hidden] {
    display: none !important;
}

.moon-day-page .md-form-close {
    position: absolute;
    top: 6px;
    right: 8px;
    z-index: 2;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    background: transparent;
    color: #666;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    font-family: inherit;
}

.moon-day-page .md-form-close:hover {
    color: #2d2d2d;
}

/* Match natal calculator birth card */
.moon-day-page .md-birth-form.natal-form-card {
    max-width: 470px;
    width: 100%;
    margin: 0 auto;
    padding: 16px 20px 20px;
    background: #ffffff;
    border: 1px solid #f0ebe0;
    border-radius: 2px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .moon-day-page .md-form-fold,
    .moon-day-page .md-birth-form.natal-form-card {
        max-width: 100%;
    }

    .moon-day-page .md-birth-form.natal-form-card {
        padding: 14px 15px 15px;
    }
}

.moon-day-page .md-note {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.moon-day-page .md-note--form {
    margin: 0 36px 16px 0;
    padding: 4px 0 14px;
    border-bottom: 1px solid #ebebe3;
}

.moon-day-page .md-cta {
    margin: 4px auto 32px;
    text-align: center;
    max-width: 28em;
}

.moon-day-page .md-cta[hidden] {
    display: none !important;
}

.moon-day-page .md-cta-lead {
    margin: 0 0 10px;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 400;
    color: #555;
}

.moon-day-page .md-cta-lead[hidden] {
    display: none !important;
}

.moon-day-page .md-cta-btn {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    padding: 12px 22px;
    background-color: #9ec3e2;
    color: #2d2d2d;
    text-decoration: none;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    box-sizing: border-box;
    transition: background-color 0.2s ease;
}

.moon-day-page .md-cta-btn:hover {
    background-color: #8db4d6;
    color: #2d2d2d;
}

.moon-day-page .md-cta-btn.md-cta-btn--hide {
    background: transparent;
    color: #555;
    text-decoration: underline;
    font-weight: 400;
    padding: 6px 8px;
    border: none;
}

.moon-day-page .md-cta-btn.md-cta-btn--hide:hover {
    background: transparent;
    color: #cc0000;
}

.moon-day-page .md-calculate-btn.natal-calculate-btn {
    display: block;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 8px;
    padding: 12px;
    background-color: #9ec3e2;
    color: #2d2d2d;
    border: none;
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.moon-day-page .md-calculate-btn.natal-calculate-btn:hover:not(:disabled) {
    background-color: #8db4d6;
}

.moon-day-page .md-calculate-btn.natal-calculate-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.moon-day-page .md-reading {
    margin: 0 0 28px;
    padding: 0;
    text-align: center;
}

.moon-day-page .md-sky-line {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.25;
    margin: 0 0 10px;
    color: #2d2d2d;
    text-align: center;
}

.moon-day-page .md-sky-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 4px 10px;
    margin: 0 0 14px;
    text-align: center;
}

.moon-day-page .md-sky-meta-sep {
    color: #999;
    font-weight: 400;
    user-select: none;
}

.moon-day-page .md-sky-meta-sep[hidden] {
    display: none !important;
}

.moon-day-page .md-phase,
.moon-day-page .md-voc {
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
    color: #444;
    text-align: center;
}

.moon-day-page .md-phase[hidden],
.moon-day-page .md-voc[hidden] {
    display: none !important;
}

.moon-day-page .md-phase-icon {
    display: inline-block;
    width: 1.05em;
    height: 1.05em;
    margin-right: 0.3em;
    vertical-align: -0.12em;
    color: #2d2d2d;
}

.moon-day-page .md-phase-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.moon-day-page .md-sky-label {
    display: inline;
    font-weight: 600;
    color: #2d2d2d;
    margin: 0 0.3em 0 0;
}

.moon-day-page .md-sky-body {
    display: inline;
    font-weight: 400;
    color: #444;
}

.moon-day-page .md-sky-body:empty {
    display: none;
}

.moon-day-page .md-voc.md-voc--next .md-sky-label {
    font-weight: 600;
    color: #444;
}

.moon-day-page .md-voc-heading {
    display: inline;
}

.moon-day-page .md-voc-tip-wrap {
    position: relative;
    display: inline;
}

.moon-day-page .md-voc-tip-wrap > #mdVocWord,
.moon-day-page .md-phase-tip-wrap > #mdPhaseLabel {
    cursor: help;
    border-bottom: 1px dotted rgba(45, 45, 45, 0.35);
}

.moon-day-page .md-voc-tip-popover {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 8px);
    transform: translateX(-50%);
    z-index: 20;
    width: min(16.5rem, 72vw);
    padding: 10px 12px;
    border: 1px solid #ddd6c8;
    border-radius: 6px;
    background: #fffdf8;
    box-shadow: 0 4px 14px rgba(40, 35, 25, 0.12);
    color: #444;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
    text-align: left;
    white-space: normal;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.12s ease, visibility 0.12s ease;
}

.moon-day-page .md-voc-tip-wrap:hover .md-voc-tip-popover,
.moon-day-page .md-voc-tip-wrap:focus-within .md-voc-tip-popover {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .moon-day-page .md-sky-meta {
        position: relative;
    }

    .moon-day-page .md-phase-tip-wrap .md-voc-tip-popover {
        left: 0;
        right: auto;
        transform: none;
        width: min(16.5rem, calc(100vw - 32px));
    }

    /* Position against the meta row, not the short VoC word, so the tip stays on screen. */
    .moon-day-page .md-voc .md-voc-tip-wrap {
        position: static;
    }

    .moon-day-page .md-voc .md-voc-tip-popover {
        left: 0;
        right: 0;
        width: auto;
        max-width: none;
        transform: none;
        box-sizing: border-box;
    }
}

.moon-day-page .md-horoscope {
    margin: 18px auto 0;
    max-width: 36em;
    padding: 18px 20px 14px;
    border: 1px solid #e4e0d4;
    background: #fff;
    box-sizing: border-box;
    text-align: center;
}

.moon-day-page .md-horoscope[hidden] {
    display: none !important;
}

.moon-day-page .md-lines {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.moon-day-page .md-lines li {
    margin: 0 0 12px;
    line-height: 1.55;
    font-size: 15px;
    color: #2d2d2d;
}

.moon-day-page .md-lines li:last-child {
    margin-bottom: 0;
}

.moon-day-page .md-house {
    margin: 0 0 14px;
    line-height: 1.55;
    font-size: 15px;
    text-align: center;
}

.moon-day-page .md-house[hidden] {
    display: none !important;
}

.moon-day-page .md-quiet {
    margin: 0;
    line-height: 1.55;
    font-size: 15px;
    color: #2d2d2d;
    text-align: center;
}

.moon-day-page .md-quiet[hidden] {
    display: none !important;
}

.moon-day-page .md-house:not([hidden]) + .md-quiet:not([hidden]) {
    margin-top: 14px;
}

.moon-day-page .md-house:not([hidden]) + .md-lines:not(:empty),
.moon-day-page .md-quiet:not([hidden]) + .md-lines:not(:empty) {
    margin-top: 14px;
}

.moon-day-page .md-status {
    font-size: 14px;
    color: #666;
    margin: 8px 0;
}

.moon-day-page .md-status[hidden],
.moon-day-page .md-readings-hint[hidden] {
    display: none !important;
}

.moon-day-page .md-cta-hint {
    font-size: 15px;
    color: #555;
    margin: 0 0 16px;
}

.moon-day-page .md-explain {
    margin: 8px auto 8px;
    max-width: 36em;
    text-align: center;
}

.moon-day-page .md-explain-link {
    display: inline;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    color: #555;
    text-decoration: underline;
    cursor: pointer;
}

.moon-day-page .md-explain-link:hover {
    color: #cc0000;
}

.moon-day-page .md-explain-panel {
    margin: 14px 0 0;
    padding: 16px 18px;
    border: 1px solid #e4e0d4;
    background: #fff;
    text-align: left;
    box-sizing: border-box;
}

.moon-day-page .md-explain-panel[hidden] {
    display: none !important;
}

.moon-day-page .md-explain-panel p {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.55;
    color: #2d2d2d;
}

.moon-day-page .md-explain-panel p:last-child {
    margin-bottom: 0;
}

.moon-day-page .md-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.25;
    margin: 36px 0 12px;
    color: #2d2d2d;
    text-align: center;
}

.moon-day-page .md-readings-hint {
    font-size: 13px;
    color: #666;
    margin: 0 0 10px;
    text-align: center;
}

/* Same natal reading pills + always visible on this page */
.moon-day-page .natal-readings-row.md-natal-readings {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
    padding: 8px 0 10px;
    border-top: none;
    box-sizing: border-box;
    width: 100%;
}

.moon-day-page .natal-readings-row .natal-reading-btn-wrap {
    flex: 1 1 calc(33.333% - 8px);
    min-width: min(100%, 188px);
    max-width: 340px;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.moon-day-page .natal-readings-row .natal-cert-entry-btn,
.moon-day-page .natal-readings-row .natal-rw-entry-btn,
.moon-day-page .natal-readings-row .natal-love-entry-btn {
    width: 100%;
    max-width: 100%;
}

.moon-day-page .natal-cert-entry-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid #b8d4ea;
    background: linear-gradient(180deg, #fbfdff 0%, #f3f9fc 100%);
    color: #2d4a5e;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    white-space: normal;
    line-height: 1.35;
    box-sizing: border-box;
    box-shadow: 0 1px 3px rgba(45, 74, 94, 0.08);
}

.moon-day-page .natal-love-entry-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid #c4a8d4;
    background: linear-gradient(180deg, #fbf8fd 0%, #f3ebf8 100%);
    color: #4a3558;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    white-space: normal;
    line-height: 1.35;
    box-sizing: border-box;
    box-shadow: 0 1px 3px rgba(74, 53, 88, 0.08);
}

.moon-day-page .natal-love-entry-btn .natal-love-heart {
    color: #8b5a9e;
    font-size: 15px;
    line-height: 1;
    flex-shrink: 0;
}

.moon-day-page .natal-rw-entry-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid #e8b4b8;
    background: linear-gradient(180deg, #fffafb 0%, #fff5f6 100%);
    color: #6b3a42;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    white-space: normal;
    line-height: 1.35;
    box-sizing: border-box;
    box-shadow: 0 1px 3px rgba(107, 58, 66, 0.08);
}

.moon-day-page .natal-rw-entry-btn .natal-rw-heart {
    color: #d63b52;
    font-size: 15px;
    line-height: 1;
    flex-shrink: 0;
}

.moon-day-page .natal-cert-entry-btn:disabled,
.moon-day-page .natal-love-entry-btn:disabled,
.moon-day-page .natal-rw-entry-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

@media (hover: hover) and (pointer: fine) {
    .moon-day-page .natal-cert-entry-btn:hover:not(:disabled) {
        background: linear-gradient(180deg, #f5faff 0%, #e8f4fa 100%);
        border-color: #9ec3e2;
    }
    .moon-day-page .natal-love-entry-btn:hover:not(:disabled) {
        background: linear-gradient(180deg, #f7f2fb 0%, #ede4f5 100%);
        border-color: #a888c0;
    }
    .moon-day-page .natal-rw-entry-btn:hover:not(:disabled) {
        background: linear-gradient(180deg, #fff5f7 0%, #ffeef1 100%);
        border-color: #d99aa3;
    }
}

/* Keep drawer shells hidden until their CSS/JS load on tap. */
.moon-day-page .natal-rw-drawer:not(.is-open),
.moon-day-page .natal-cert-drawer:not(.is-open) {
    display: none !important;
}

.moon-day-page .md-full-chart {
    margin: 20px 0 0;
    text-align: center;
}

.moon-day-page .md-full-chart a {
    color: #2d2d2d;
    font-size: 15px;
}

.moon-day-page .md-full-chart a:hover {
    color: #cc0000;
}

/* Drawers use relationship-insights.css + love-character-book.css (same as natal). */

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }

    body.moon-day-page {
        padding: 10px 5px 40px;
        max-width: 100%;
        margin: 0;
        font-size: 16px;
    }

    .moon-day-page .md-header {
        padding: 10px 15px 0;
    }

    .moon-day-page .md-wrap {
        padding: 0 15px 10px;
        max-width: 100%;
    }

    .moon-day-page .hamburger-menu {
        top: 15px;
        right: 20px;
    }

    .moon-day-page .logo-container {
        margin-top: 44px !important;
    }

    .moon-day-page .logo-separator {
        height: 1px !important;
        transform: scaleY(0.5);
        transform-origin: center;
    }

    .moon-day-page .md-hero {
        height: 140px;
        margin-bottom: 16px;
    }

    .moon-day-page .md-profile-bar {
        gap: 12px;
        align-items: stretch;
    }

    .moon-day-page .md-profile-bar-main {
        width: 100%;
        gap: 10px;
    }

    .moon-day-page .md-profile-label {
        font-size: 16px;
    }

    .moon-day-page .md-who-dd {
        flex: 0 1 auto;
        width: auto;
        min-width: 0;
        max-width: 148px;
    }

    .moon-day-page .md-who-dd-btn {
        font-size: 16px;
        padding: 8px 10px;
        min-height: 40px;
    }

    .moon-day-page .md-who-dd-menu {
        max-width: min(200px, 70vw);
        overflow: visible;
        max-height: none;
    }

    .moon-day-page .md-who-dd-option {
        font-size: 16px;
        padding: 10px 12px;
    }

    .moon-day-page .md-who-moon {
        font-size: 16px;
        white-space: normal;
    }

    .moon-day-page .md-profile-chip {
        font-size: 16px;
    }

    .moon-day-page .md-profile-toggle {
        font-size: 16px;
        padding: 8px 0;
    }

    .moon-day-page .md-note--form {
        font-size: 15px;
        margin-right: 36px;
        margin-bottom: 16px;
        padding-bottom: 14px;
    }

    .moon-day-page h1.md-title {
        font-size: 26px;
    }

    .moon-day-page .md-sky-line {
        font-size: 24px;
    }

    .moon-day-page .md-phase,
    .moon-day-page .md-voc {
        font-size: 16px;
    }

    .moon-day-page .md-voc-tip-popover {
        font-size: 14px;
    }

    .moon-day-page .md-horoscope {
        padding: 16px 14px 12px;
    }

    .moon-day-page .md-house,
    .moon-day-page .md-quiet,
    .moon-day-page .md-lines li {
        font-size: 16px;
    }

    .moon-day-page .md-status {
        font-size: 15px;
    }

    .moon-day-page .md-cta-lead,
    .moon-day-page .md-cta-hint {
        font-size: 16px;
    }

    .moon-day-page .md-cta-btn {
        font-size: 15px;
    }

    .moon-day-page .md-explain-link {
        font-size: 15px;
    }

    .moon-day-page .md-explain-panel p {
        font-size: 15px;
    }

    .moon-day-page .md-section-title {
        font-size: 24px;
    }

    .moon-day-page .md-readings-hint {
        font-size: 14px;
    }

    .moon-day-page .natal-readings-row .natal-reading-btn-wrap {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .moon-day-page .hamburger-dropdown a {
        font-size: 16px;
        padding: 14px 20px;
    }
}
