/* HERO 1 ------------------ */

.z-gpt-hero1 {
    width: 55%;
    margin: auto;
}

.z-gpt-hero1-c {
    width: 100%;
    height: calc(100vh - 160px);
    padding: 0 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 1128px) {
    .z-gpt-hero1 {
        width: 90%;
    }

    .z-gpt-hero1-c {
        height: fit-content;
        padding: 80px 0;
    }
}

.z-gpt-hero1-c img {
    width: 220px;
}

.z-gpt-topic-c {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.z-gpt-topic-c div {
    width: auto;
    height: fit-content;
    padding: 20px 35.5px;
    background: white;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .08), 0 5px 26px 0 rgba(67, 94, 131, .15);
}

.z-gpt-topic-c img {
    width: 20px;
    height: 20px;
    margin-bottom: 8px;
}

@media screen and (max-width: 1128px) {
    .z-gpt-topic-c div {
        padding: 20px 15.5px;
    }
}

@media screen and (max-width: 560px) {
    .z-gpt-topic-c div {
        width: 100%;
        height: fit-content;
        padding: 15px 22px;
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    .z-gpt-topic-c img {
        margin-bottom: 0;
    }

    .z-gpt-topic-c div br {
        display: block;
    }
}

.z-gpt-topic-c div p {
    font-size: 0.99rem;
    line-height: 1.05rem;
    font-weight: 500;
    margin: 0;
}

.z-gpt-topic-c span {
    color: #888;
    font-size: 0.9rem;
}




/* HERO 2 - SAMPLES ------------------ */

.z-gpt-hero2 {
    width: 55%;
    height: fit-content;
    margin: auto;
    padding: 80px 0;
}

@media screen and (max-width: 1128px) {
    .z-gpt-hero2 {
        width: 90%;
    }
}

.z-gpt-sample-c {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}

.z-gpt-sample-c p {
    width: 100%;
    font-size: 0.95rem;
    line-height: 1.25rem;
    margin: 0;
    padding: 20px 25px;
    background: #eaeaea;
    border-radius: 2px;
    box-sizing: border-box;
}

@media screen and (max-width: 560px) {
    .z-gpt-sample-c p {
        padding: 15px 22px;
    }
}

.z-gpt-reference {
    width: 100%;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.z-gpt-reference a {
    margin: 2px 0 0 20px;
}




/* HERO 3 - IMPORTANT NOTE ------------------ */

.z-gpt-hero3-bg {
    background-color: #222A35;
}

.z-gpt-hero3 {
    width: 55%;
    height: fit-content;
    margin: auto;
    padding: 75px 0;
}

@media screen and (max-width: 1128px) {
    .z-gpt-hero3 {
        width: 90%;
    }
}

.z-gpt-hero3 h5 {
    color: #00D1D2;
    margin: 0 0 45px;
}

.z-gpt-hero3-p1 {
    color: #c0c0c0;
    font-weight: 400;
    margin-top: 18px;
}

.z-gpt-hero3-eg1 {
    font-family: Cambria, Georgia, 'Times New Roman', serif;
    font-size: 1.05rem;
    color: #8b8b8b;
    font-weight: 500;
    font-style: italic;
    margin-top: 18px;
}

.z-gpt-hero3-eg2 {
    font-family: Cambria, Georgia, 'Times New Roman', serif;
    font-size: 1.05rem;
    color: #999;
    font-weight: 500;
    font-style: italic;
}

.z-gpt-hero3 p:last-of-type {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.25rem;
    margin: 45px 0 0;
    padding: 23px;
    background: #d8d8d8;
    border-radius: 2px;
}



/* HERO 4 - CHAT BOX ------------------ */

.z-gpt-hero4 {
    width: 55%;
    height: fit-content;
    margin: auto;
    padding: 70px 0 200px;
}

@media screen and (max-width: 1128px) {
    .z-gpt-hero4 {
        width: 90%;
    }
}

.z-gpt-hero4 h3 {
    font-size: 1.4rem;
    padding: 0 0 30px;
}

@media screen and (max-width: 560px) {
    .z-gpt-hero4 h3 {
        text-align: center;
    }
}

#assistantBoxID {
    height: fit-content;
    background: #FBFCFF;
    margin-bottom: 20px;
}

#assistantInputID {
    font-size: 1.05rem;
    width: 100%;
    height: 50px;
    padding: 0 50px 3px 30px;
    background: #f3f4f6;
    border-radius: 25px;
    border: 0;
    box-sizing: border-box;
}

#assistantLoadingID {
    display: none;
    color: #999;
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 30px;
}

.z-assistantInputID-c {
    position: relative;
    width: 100%;
    min-height: 50px;
    background: #f3f4f6;
    border-radius: 25px;
    border: 1px solid #aaa;
    box-sizing: border-box;
}

.z-assistantInputID-c button {
    position: absolute;
    right: 10px;
    bottom: 7px;
}

.z-assistantInputID-c button img {
    width: 30px;
}

.z-gpt-hero4 br {
    display: none;
}

@media screen and (max-width: 560px) {
    .z-gpt-hero4 br {
        display: block;
    }
}

.z-gpt-login {
    display: flex;
    justify-content: center;
    margin: 0 0 70px 0;
}

.z-gpt-disclaimer {
    font-size: 0.8rem;
    line-height: 1rem;
    margin: 23px 0 20px;
    text-align: center;
}

.z-gpt-copyright {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.z-gpt-copyright a,
.z-gpt-copyright p {
    color: #1c459a;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1rem;
    margin: 0;
}



/* CHAT BOX & MESSAGES ------------------ */

.z-gpt-message {
    width: fit-content;
    max-width: 70%;
    margin-bottom: 30px;
    border-radius: 25px;
    word-wrap: break-word;
}

@media screen and (max-width: 560px) {
    .z-gpt-message {
        max-width: 100%;
    }
}

.z-gpt-user {
    color: #333;
    font-size: 1.05rem;
    line-height: 1.5rem;
    letter-spacing: -0.15px;
    background-color: #dce1e7;
    margin-left: auto;  /* Align to right */
    padding: 10px 40px 12px;
}

.z-gpt-assistant {
    color: #333;
    font-size: 1.05rem;
    line-height: 1.5rem;
    letter-spacing: -0.15px;
    margin-right: auto;  /* Align to left */
    /*padding: 0 40px 2px;*/
}

@media screen and (max-width: 560px) {
    .z-gpt-user {
        padding: 10px 23px 12px;
    }

    /*.z-gpt-assistant {
        padding: 0 22px 2px;
    }*/
}

.assistant-numbered-list {
    text-align: left;
    font-size: 1.05rem;
    line-height: 1.5rem;
    color: #333;
    margin-bottom: 0.5em;
    font-weight: 600;
}

.assistant-bullet-list {
    margin: 0;
    padding-left: 20px;
    list-style-type: disc;
}

.assistant-bullet-list li {
    margin: 0;
    padding: 0 0 0 10px;
    line-height: 1.5;
}

.assistant-paragraph {
    text-align: left;
    font-size: 1.05rem;
    line-height: 1.5rem;
    color: #333;
    margin: 13px 0;
}

.assistant-bold {
    color: #333;
    font-weight: 600;
}