.time {
    width: 100%;
    min-height: 100vh;
    text-align: center;
    padding: 10rem 8rem;
    position: relative;
}

.time h2 {
    font-family: var(--sacramento);
    font-size: var(--fontSize-heading-base);
    font-weight: 400;
}

.time div:nth-of-type(1) {
    margin-top: 2rem;
}

.time div:nth-of-type(1) div h3 {
    font-family: var(--sacramento);
    font-size: var(--fontSize-heading-lg);
    font-weight: 400;
}

.time div:nth-of-type(1) div:nth-of-type(2){
    margin-top: 2rem;
}

/* Lihat Google Maps: LIGHT = hitam, DARK = putih */
.time a {
    padding: 0.5rem 1rem;
    color: #fff;                 /* LIGHT text */
    font-size: 1rem;
    background-color: #000;      /* LIGHT background */
    margin: 2rem auto 1rem;
    border-radius: 20px;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: var(--transition-small);
}
.time a:hover { transform: translateY(-1px); }

/* ikon ikut warna teks */
.time a i {
    font-size: 1.2rem;
    color: currentColor;
}

/* DARK override */
[data-theme="dark"] .time a {
    background-color: #fff;      /* DARK background */
    color: #000;                 /* DARK text */
    border-color: #1f2937;       /* konsisten border di dark */
}

.time a + p + i {
    right: 8rem;
    top: 22rem;
}
