```css
@import url(global.css);


/* =========================================================
   BASE
========================================================= */

body {
    background: var(--white2);
}

h1 {
    font-size: clamp(1.6rem, 1.3rem + 1vw, 2rem);
    font-weight: 500;
    line-height: 1.2;
}

section {
    padding:
        clamp(2.5rem, 5vw, 5rem)
        clamp(1rem, 5vw, 5rem);
}


/* =========================================================
   SEJARAH
========================================================= */

main .sejarah .teks-sejarah {
    margin-top: clamp(1rem, 2vw, 1.5rem);

    padding:
        clamp(1.5rem, 3vw, 2rem)
        clamp(1.25rem, 3vw, 2.5rem);

    background: var(--white1);
    border-radius: clamp(14px, 2vw, 20px);

    box-shadow:
        0 32px 13px rgba(79, 79, 79, 0.01),
        0 18px 11px rgba(79, 79, 79, 0.05),
        0 8px 8px rgba(79, 79, 79, 0.09),
        0 2px 4px rgba(79, 79, 79, 0.1);
}

main .sejarah .teks-sejarah h1 {
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

main .sejarah .teks-sejarah p {
    color: var(--black2);
    line-height: 1.6;
    margin-bottom: 1rem;
}


/* =========================================================
   STRUKTUR ORGANISASI / SOTK
========================================================= */

main .sotk {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3rem);

    background: var(--white1);
}


/* -------------------------
   PHOTO CARD
------------------------- */

main .sotk .photocard {
    display: flex;
    flex-direction: column;
    align-items: center;

    flex: 0 1 auto;
    min-width: 0;
}

main .sotk img {
    width: clamp(110px, 15vw, 220px);
    height: auto;
    aspect-ratio: 1 / 1.13;

    object-fit: cover;

    border-radius: clamp(8px, 1vw, 12.5px);
    margin-bottom: .5rem;

    box-shadow:
        0 32px 13px rgba(79, 79, 79, 0.01),
        0 18px 11px rgba(79, 79, 79, 0.05),
        0 8px 8px rgba(79, 79, 79, 0.09),
        0 2px 4px rgba(79, 79, 79, 0.1);
}

main .sotk .photocard h2,
main .sotk .photocard p {
    width: min(100%, clamp(110px, 15vw, 220px));
    text-align: center;
}

main .sotk .photocard h2 {
    color: var(--black1);
    font-size: clamp(.9rem, .75rem + .3vw, 1.15rem);
    line-height: 1.25;
}

main .sotk .photocard p {
    margin-top: .2rem;

    font-size: clamp(.65rem, .55rem + .2vw, .8rem);
    line-height: 1.4;

    color: var(--black2);
}


/* -------------------------
   ROW
------------------------- */

main .sotk .row {
    display: flex;
    align-items: flex-start;
    gap: clamp(.75rem, 1.5vw, 1rem);

    padding:
        clamp(1rem, 3vw, 2rem);

    flex-wrap: wrap;
}

main .sotk .row-1,
main .sotk .row-2 {
    justify-content: flex-end;
}


/* -------------------------
   SOTK TITLE
------------------------- */

main .sotk .row-1 .sotk-title {
    margin:
        auto
        auto
        auto
        0;

    flex: 1 1 220px;
    min-width: 180px;
}

main .sotk .row-1 .sotk-title p {
    width: fit-content;
    max-width: 100%;

    padding:
        .3rem
        clamp(1rem, 3vw, 2rem);

    margin-top: .5rem;

    border-radius: 20px;

    background: var(--accent1);
    color: var(--white1);

    box-shadow:
        0 32px 13px rgba(79, 79, 79, 0.02),
        0 18px 11px rgba(79, 79, 79, 0.1),
        0 8px 8px rgba(79, 79, 79, 0.18),
        0 2px 4px rgba(79, 79, 79, 0.2);
}


/* =========================================================
   VISI MISI
========================================================= */

main .visi-misi {
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* -------------------------
   HEADER
------------------------- */

main .visi-misi .header {
    width: min(100%, 800px);

    padding:
        clamp(1.5rem, 4vw, 3rem);

    text-align: center;
}

main .visi-misi .header p {
    margin-top: .5rem;
    color: var(--black2);
    line-height: 1.5;
}


/* -------------------------
   MISI LIST
------------------------- */

main .misi-list {
    width: min(100%, 1100px);

    display: flex;
    flex-direction: column;

    gap: clamp(1rem, 2.5vw, 2rem);
}

main .misi-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;

    gap: clamp(1rem, 3vw, 2rem);

    padding:
        clamp(1.25rem, 3vw, 2rem);

    background: var(--white1);

    border-radius: clamp(14px, 2vw, 20px);

    box-shadow:
        0 32px 13px rgba(79, 79, 79, 0.01),
        0 18px 11px rgba(79, 79, 79, 0.05),
        0 8px 8px rgba(79, 79, 79, 0.09),
        0 2px 4px rgba(79, 79, 79, 0.1);
}


/* -------------------------
   MISI LABEL
------------------------- */

main .misi-item__label {
    display: flex;
    flex-direction: column;

    flex: 0 1 clamp(180px, 25vw, 250px);
    min-width: 0;

    font-size:
        clamp(1.1rem, .9rem + .6vw, 1.5rem);

    font-weight: 500;
}


/* -------------------------
   MISI CONTENT
------------------------- */

main .misi-item__isi {
    flex: 1;
    min-width: 0;
}

main .misi-item__isi p {
    color: var(--black2);
    line-height: 1.6;
}


/* =========================================================
   GEOGRAFI
========================================================= */

main .geografi-wrapper {
    display: grid;

    grid-template-columns:
        minmax(220px, .7fr)
        minmax(0, 1.3fr);

    gap:
        clamp(1rem, 3vw, 2rem);

    margin-top:
        clamp(1.25rem, 3vw, 2rem);

    align-items: stretch;
}


/* -------------------------
   DATA
------------------------- */

.geografi__data {
    display: flex;
    flex-direction: column;

    gap:
        clamp(.75rem, 1.5vw, 1rem);
}

.geografi__data .data {
    background: var(--white1);

    border-radius: 10px;

    padding:
        clamp(.8rem, 1.5vw, 1rem);

    display: flex;
    flex-direction: column;

    gap: .75rem;

    box-shadow:
        0 32px 13px rgba(79, 79, 79, 0.01),
        0 18px 11px rgba(79, 79, 79, 0.05),
        0 8px 8px rgba(79, 79, 79, 0.09),
        0 2px 4px rgba(79, 79, 79, 0.1);
}

.geografi__data .data:nth-child(even) {
    background: var(--accent1);
    color: var(--white1);
}


/* -------------------------
   DATA VALUE
------------------------- */

.data .data-value {
    display: flex;
    align-items: center;

    gap: .5rem;
}

.data-value h2 {
    font-size:
        clamp(1.4rem, 1.1rem + .8vw, 2rem);

    font-weight: 500;
    line-height: 1.1;
}

.data-list .data-value h2 {
  color: #fff;
}


/* =========================================================
   MAP
========================================================= */

.map-wrapper {
    min-height: 350px;
}

.map-wrapper iframe {
    display: block;

    width: 100%;
    height: 100%;

    min-height: 350px;

    border:
        clamp(2px, .3vw, 3px)
        solid
        var(--white1);

    border-radius:
        clamp(14px, 2vw, 20px);

    box-shadow:
        0 32px 13px rgba(79, 79, 79, 0.01),
        0 18px 11px rgba(79, 79, 79, 0.05),
        0 8px 8px rgba(79, 79, 79, 0.09),
        0 2px 4px rgba(79, 79, 79, 0.1);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    main .geografi-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    main .sotk .row-1 .sotk-title {
        flex-basis: 100%;
        margin: 0 0 1rem;
    }

}


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

@media (max-width: 800px) {

    section {
        padding:
            2.5rem
            1rem;
    }


    /* -------------------------
       SEJARAH
    ------------------------- */

    .sejarah h1 {
        text-align: center;
    }


    /* -------------------------
       SOTK
    ------------------------- */

    main .sotk {
        gap: 0;
    }

    main .sotk .row,
    main .sotk .row-1,
    main .sotk .row-2 {
        justify-content: center;
        align-items: flex-start;

        padding:
            1.5rem
            .75rem;
    }

    main .sotk .photocard {
        flex:
            0 1
            clamp(120px, 30vw, 170px);
    }

    main .sotk img {
        width: 100%;
    }

    main .sotk .photocard h2,
    main .sotk .photocard p {
        width: 100%;
    }


    /* -------------------------
       VISI MISI
    ------------------------- */

    main .misi-item {
        flex-direction: column;

        align-items: flex-start;

        text-align: left;
    }

    main .misi-item__label {
        flex-basis: auto;
        width: 100%;
    }

    main .misi-item__isi {
        width: 100%;
    }


    /* -------------------------
       GEOGRAFI
    ------------------------- */

    main .geografi-wrapper {
        grid-template-columns: 1fr;
    }

    .map-wrapper {
        min-height: 0;
        aspect-ratio: 1 / 1;
    }

    .map-wrapper iframe {
        min-height: 0;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    section {
        padding:
            2rem
            .75rem;
    }


    main .sejarah .teks-sejarah {
        padding:
            1.25rem
            1rem;

        border-radius: 14px;
    }


    main .sotk .row {
        gap: .75rem;
    }


    main .sotk .photocard {
        flex-basis: 125px;
    }


    main .misi-item {
        padding: 1.25rem;
        border-radius: 14px;
    }


    main .misi-item__label {
        font-size: 1.05rem;
    }


    .geografi__data .data {
        padding: .85rem;
    }


    .map-wrapper {
        aspect-ratio: 4 / 3;
    }
}
```
