/* =========================================================
   TENTANG
========================================================= */

.tentang {
    padding: 110px 0;

    background: var(--kertas);
}


/* =========================================================
   HEADER
========================================================= */

.tentang .section-head {
    margin-bottom: 35px;
}


/* =========================================================
   MAIN
========================================================= */

.about-main {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(350px, .85fr);

    gap: 35px;

    align-items: stretch;
}


/* =========================================================
   STORY
========================================================= */

.about-story {
    display: flex;

    flex-direction: column;
}


.about-story p {
    margin: 0;

    font-size: 13px;

    line-height: 1.85;

    color:
        rgba(35, 41, 31, 0.64);
}


.about-story p + p {
    margin-top: 17px;
}


.about-lead {
    font-family:
        "Fraunces",
        serif;

    font-size: 20px !important;

    line-height: 1.45 !important;

    color: var(--hijau-tua) !important;
}


/* =========================================================
   PHOTO
========================================================= */

.about-photo {
    position: relative;

    height: 250px;

    margin-top: 25px;

    overflow: hidden;

    background: #deddd2;
}


.about-photo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .4s ease;
}


.about-photo:hover img {
    transform: scale(1.02);
}


.about-photo-caption {
    position: absolute;

    right: 0;
    bottom: 0;
    left: 0;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 20px;

    padding: 45px 18px 16px;

    background:
        linear-gradient(
            transparent,
            rgba(18, 38, 29, .88)
        );

    color: var(--krem);
}


.about-photo-caption span {
    font-family:
        "IBM Plex Mono",
        monospace;

    font-size: 8px;

    text-transform: uppercase;

    letter-spacing: .08em;

    color: var(--emas);
}


.about-photo-caption strong {
    font-family:
        "Fraunces",
        serif;

    font-size: 17px;

    font-weight: 600;
}


/* =========================================================
   VISI MISI
========================================================= */

.visimisi {
    height: 100%;

    padding: 28px;

    border:
        1px solid var(--garis);

    background: var(--putih);
}


.about-label {
    margin-bottom: 23px;

    font-family:
        "IBM Plex Mono",
        monospace;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: .09em;

    color: var(--emas);
}


.visimisi-section {
    position: relative;

    padding-top: 20px;

    border-top:
        1px solid var(--garis);
}


.visimisi-section + .visimisi-section {
    margin-top: 25px;
}


.visimisi-number {
    display: block;

    margin-bottom: 8px;

    font-family:
        "IBM Plex Mono",
        monospace;

    font-size: 8px;

    color:
        rgba(35, 41, 31, .38);
}


.visimisi h3 {
    margin: 0 0 10px;

    font-family:
        "Fraunces",
        serif;

    font-size: 23px;

    font-weight: 600;

    color: var(--hijau-tua);
}


.visimisi .visi {
    margin: 0;

    padding-left: 15px;

    border-left:
        2px solid var(--emas);

    font-family:
        "Fraunces",
        serif;

    font-size: 15px;

    font-style: italic;

    line-height: 1.7;

    color:
        rgba(35, 41, 31, .67);
}


.visimisi ol {
    margin: 0;

    padding-left: 19px;
}


.visimisi li {
    margin-bottom: 11px;

    padding-left: 4px;

    font-size: 11px;

    line-height: 1.65;

    color:
        rgba(35, 41, 31, .6);
}


.visimisi li:last-child {
    margin-bottom: 0;
}


/* =========================================================
   FACTS
========================================================= */

.about-facts {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    margin-top: 25px;

    border-top:
        1px solid var(--garis);

    border-bottom:
        1px solid var(--garis);

    background: var(--putih);
}


.about-fact {
    display: flex;

    flex-direction: column;

    justify-content: center;

    min-height: 115px;

    padding: 18px 22px;
}


.about-fact + .about-fact {
    border-left:
        1px solid var(--garis);
}


.about-fact-number {
    margin-bottom: 6px;

    font-family:
        "IBM Plex Mono",
        monospace;

    font-size: 8px;

    color: var(--emas);
}


.about-fact strong {
    margin-bottom: 5px;

    font-family:
        "Fraunces",
        serif;

    font-size: 26px;

    font-weight: 600;

    line-height: 1;

    color: var(--hijau-tua);
}


.about-fact > span:last-child {
    font-size: 9px;

    color:
        rgba(35, 41, 31, .46);
}


/* =========================================================
   TIMELINE HEADER
========================================================= */

.about-timeline-head {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 50px;

    margin-bottom: 15px;
}


.about-timeline-head span {
    flex: 0 0 auto;

    font-family:
        "IBM Plex Mono",
        monospace;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: .09em;

    color:
        rgba(35, 41, 31, .47);
}


.about-timeline-head span::before {
    content: "";

    display: inline-block;

    width: 35px;
    height: 2px;

    margin-right: 14px;

    vertical-align: middle;

    background: var(--emas);
}


.about-timeline-head div {
    flex: 1;

    height: 1px;

    background: var(--garis);
}


/* =========================================================
   TIMELINE
========================================================= */

.timeline {
    display: flex;

    flex-direction: column;
}


.timeline-item {
    display: grid;

    grid-template-columns:
        70px
        1px
        minmax(0, 1fr);

    gap: 18px;

    padding: 18px 0;

    border-bottom:
        1px solid var(--garis);
}


.timeline-year {
    font-family:
        "Fraunces",
        serif;

    font-size: 20px;

    font-weight: 600;

    color: var(--hijau-tua);
}


.timeline-line {
    width: 1px;

    min-height: 60px;

    background: var(--emas);
}


.timeline-content span {
    display: block;

    margin-bottom: 4px;

    font-family:
        "IBM Plex Mono",
        monospace;

    font-size: 8px;

    text-transform: uppercase;

    letter-spacing: .08em;

    color: var(--emas);
}


.timeline-content h3 {
    margin: 0 0 5px;

    font-family:
        "Fraunces",
        serif;

    font-size: 17px;

    font-weight: 600;

    color: var(--tinta);
}


.timeline-content p {
    margin: 0;

    font-size: 10px;

    line-height: 1.65;

    color:
        rgba(35, 41, 31, .52);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .about-main {
        grid-template-columns: 1fr;
    }


    .about-photo {
        height: 300px;
    }


    .about-facts {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .about-fact:nth-child(3) {
        border-left: 0;

        border-top:
            1px solid var(--garis);
    }


    .about-fact:nth-child(4) {
        border-top:
            1px solid var(--garis);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .tentang {
        padding: 75px 0;
    }


    .about-lead {
        font-size: 18px !important;
    }


    .visimisi {
        padding: 22px 18px;
    }


    .about-photo {
        height: 230px;
    }


    .about-photo-caption {
        align-items: flex-start;

        flex-direction: column;

        gap: 4px;
    }


    .about-facts {
        grid-template-columns: 1fr;
    }


    .about-fact + .about-fact {
        border-left: 0;

        border-top:
            1px solid var(--garis);
    }


    .timeline-item {
        grid-template-columns:
            55px
            1px
            minmax(0, 1fr);

        gap: 13px;
    }

}