@import url(global.css);

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

.kontak-posyandu {
    padding: 2rem 5rem 5rem;
    background: var(--white1);
}

.kontak-posyandu h1 {
    margin-bottom: 2rem;
}

.kontak-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.posyandu-item {
    display: flex;
    align-items: center;
    border-radius: 20px;
    padding: 1rem 2rem;
    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);
}

.posyandu-item__label {
    margin-right: auto;
}

.posyandu-item__label h2 {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 120%;
}

.posyandu-item__label p {
    font-size: .8rem;
    color: var(--black2)
}

.posyandu-item__kontak {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.posyandu-item__kontak span, .posyandu-item__kontak a {
    text-decoration: none;
    background: var(--accent1);
    color: var(--white1);
    padding: .5rem 1rem;
    border-radius: 20px;
}

.panggilan-darurat {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
    padding: 2rem 5rem 5rem;
}

.section-title {
    background: var(--white1);
    text-align: right;
    padding: 1rem;
    border-radius: 20px 20px 0 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);
}

.section-title p {
    font-size: .8rem;
    color: var(--black2);
}

.kontak-darurat-list {
    background: var(--white1);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .5rem;
    padding: 2rem;
    border-radius: 20px 0 20px 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);
}

.kontak-item {
    display: flex;
    gap: .5rem;
    background: var(--accent1);
    color: var(--white1);
    padding: 1rem;
    width: fit-content;
    border-radius: 15px 5px 5px 15px;
}

.kontak-item:first-child {
    position: relative;
}

.kontak-item:first-child::after {
    content: '';
	position: absolute;
	right: 0;
	top: 10%;
	width: 0;
	height: 0;
	border: 1rem solid transparent;
	border-left-color: var(--accent1);
	border-right: 0;
	border-top: 0;
	margin-top: -0.3em;
	margin-right: -0.469em;
}

.kontak-item:last-child {
    border-radius: 15px 5px 15px 15px;
}

.kontak-item p {
    font-weight: 600;
}

.kontak-item a {
    color: var(--white1);
}

@media (max-width: 800px) {
    .posyandu-item {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .posyandu-item__label {
        margin: auto;
    }

    .posyandu-item__kontak {
        flex-direction: column;
    }
}