.home {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    height: 100dvh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: end;
    color: var(--text-color);
    padding: 3rem 2rem;
    font-family: var(--font-biasa);
    isolation: isolate;
}

/* overlay gradient (mengganti gradient lama) */
.home::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(249, 247, 244, 0) 30%,
        rgba(249, 247, 244, 1) 100%
    );
    pointer-events: none;
    z-index: 0;
}

/* pastikan teks/isi di atas overlay */
.home > * { position: relative; z-index: 1; }

.home h2 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.home h1 {
    font-family: var(--font-kaligrafi);
    font-size: 1.5rem;
}

.quotes {
    background-color: var(--background);
    color: var(--text-color);
    padding: 0 2rem 2rem 2rem;
    font-family: var(--font-biasa);
}

.content-quotes {
    align-items: center;
    text-align: left;
}

.content-quotes h2 {
    font-family: var(--font-tambahan);
    font-size: 3rem;
}

.content-quotes p {
    font-size: 1rem;
}