/* =========================================================
   WRITEON - HOME
   ========================================================= */

.home-page {
    max-width: 860px;
    margin: 0 auto;
}

.home-intro {
    margin-bottom: 34px;
}

.home-intro h1 {
    margin: 0 0 10px;

    font-size: 38px;
    font-weight: 800;
    letter-spacing: -1px;
}

.home-intro p {
    margin: 0;

    color: #666;
    font-size: 18px;
    line-height: 1.5;
}


/* ---------- LATEST SPACES ---------- */

.home-latest {
    display: grid;
    gap: 16px;
}

.home-space {
    display: block;

    padding: 22px 24px;

    background: #fff;

    border: 1px solid #dedede;
    border-radius: 14px;

    transition:
        transform .15s ease,
        border-color .15s ease,
        box-shadow .15s ease;
}

.home-space:hover {
    transform: translateY(-2px);
    border-color: #9fd2ff;

    box-shadow:
        0 8px 24px rgba(22, 140, 255, .08);
}

.home-space-head {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 14px;
}

.home-space-code {
    font-size: 22px;
    font-weight: 800;
}

.home-space-owner {
    color: #168cff;
    font-weight: 700;
}

.home-space-content {
    font-size: 20px;
    line-height: 1.5;
}


/* ---------- ACTIONS ---------- */

.home-actions {
    display: flex;
    gap: 12px;

    margin-top: 30px;
}

.btn-secondary {
    background: #fff;
    color: #168cff;

    border: 1px solid #9fd2ff;
}


/* ---------- MOBILE ---------- */

@media (max-width: 700px) {

    .home-intro h1 {
        font-size: 32px;
    }

    .home-intro p {
        font-size: 16px;
    }

    .home-space-content {
        font-size: 18px;
    }

    .home-actions {
        flex-direction: column;
    }

    .home-actions .btn {
        width: 100%;
    }

}


.home-space-owner {
    display: flex;
    align-items: center;
    gap: 7px;

    color: #168cff;
    font-weight: 700;
}

.home-space-flag {
    font-size: 18px;
    line-height: 1;
}

.home-latest-title {
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 700;
}