/**
 * Elegant Horoscope Content Element Styles
 * Version: 1.0.0
 */

/* =============================================================================
   iOS SAFARI OPTIMIZATIONS
   ============================================================================= */

/* Font smoothing for better text rendering on iOS Safari */
.ehs-horoscope-content-element {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* =============================================================================
   MAIN ELEMENT WRAPPER
   ============================================================================= */

.ehs-horoscope-content-element {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
}

/* =============================================================================
   MAIN TITLE (Desktop)
   ============================================================================= */

.ehs-horoscope-main-title {
    color: #000 !important;
    font-family: "IBM Plex Serif", Georgia, serif !important;
    font-size: 60px !important;
    font-style: italic !important;
    font-weight: 600 !important;
    line-height: 60px !important;
    margin: 0 0 60px 0 !important;
    padding: 0 !important;
    text-transform: none !important;
}

/* =============================================================================
   SIGNS WRAPPER
   ============================================================================= */

.ehs-horoscope-signs-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* =============================================================================
   SINGLE SIGN ITEM
   ============================================================================= */

.ehs-horoscope-sign-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Sign Title (Desktop) */
.ehs-horoscope-sign-title {
    color: #000 !important;
    font-family: "Reddit Sans", sans-serif !important;
    font-size: 35px !important;
    font-style: normal !important;
    font-weight: 700 !important;
    line-height: 45px !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Sign Content Text (Desktop) */
.ehs-horoscope-sign-content {
    color: #000 !important;
    font-family: "IBM Plex Serif", Georgia, serif !important;
    font-size: 24px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 40px !important;
}

.ehs-horoscope-sign-content p {
    color: #000 !important;
    font-family: "IBM Plex Serif", Georgia, serif !important;
    font-size: 24px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 40px !important;
    margin: 0 0 20px 0 !important;
}

.ehs-horoscope-sign-content p:last-child {
    margin-bottom: 0 !important;
}

/* =============================================================================
   MOBILE STYLES
   ============================================================================= */

@media (max-width: 999px) {

    /* Main Title (Mobile) */
    .ehs-horoscope-main-title {
        font-family: "DM Serif Text", Georgia, serif !important;
        font-size: 30px !important;
        font-style: italic !important;
        font-weight: 600 !important;
        line-height: 34px !important;
        margin: 0 0 40px 0 !important;
    }

    /* Signs Wrapper (Mobile) */
    .ehs-horoscope-signs-wrapper {
        gap: 12px;
    }

    /* Sign Item (Mobile) */
    .ehs-horoscope-sign-item {
        gap: 6px;
    }

    /* Sign Title (Mobile) */
    .ehs-horoscope-sign-title {
        font-size: 24px !important;
        line-height: 24px !important;
        margin-bottom: 6px !important;
    }

    /* Sign Content (Mobile) */
    .ehs-horoscope-sign-content {
        font-size: 18px !important;
        line-height: 23px !important;
    }

    .ehs-horoscope-sign-content p {
        font-size: 18px !important;
        line-height: 23px !important;
        margin: 0 0 15px 0 !important;
    }

}
