/* =====================================================
   Pegawai Plugin
   ===================================================== */

.pgw-archive,
.pgw-single{
    max-width:1200px;
    margin:40px auto;
    padding:0 20px;
}

.pgw-archive h1,
.pgw-single h1{
    margin-bottom:30px;
    text-align:center;
}

/* ===========================
   GRID
=========================== */

.pgw-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

/* ===========================
   CARD
=========================== */

.pgw-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
    transition:.25s;
}

.pgw-card:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.pgw-card a{
    color:#222;
    text-decoration:none;
}

/* ===========================
   FOTO
=========================== */

.pgw-photo{
    aspect-ratio:330 / 440;
    overflow:hidden;
    background:#f4f4f4;
}

.pgw-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* ===========================
   ISI CARD
=========================== */

.pgw-card h2{
    margin:18px 15px 8px;
    font-size:22px;
}

.pgw-card p{
    margin:0 15px 10px;
    color:#555;
}

.pgw-card p:last-child{
    margin-bottom:18px;
}

/* ===========================
   SINGLE
=========================== */

.pgw-single-box{
    display:grid;
    grid-template-columns:330px 1fr;
    gap:40px;
    align-items:start;
}

.pgw-single-photo img{
    width:100%;
    border-radius:12px;
    display:block;
}

.pgw-single-info h1{
    text-align:left;
    margin-top:0;
}

.pgw-single-info table{
    width:100%;
    border-collapse:collapse;
    margin:20px 0;
}

.pgw-single-info td{
    padding:10px 0;
    border-bottom:1px solid #eee;
}

.pgw-single-info td:first-child{
    width:180px;
    font-weight:600;
}

/* ===================================
   PROFIL MEDIA SOSIAL
=================================== */

.pgw-social{
	display:flex;
	align-items:center;
	gap:12px;
	margin-top:20px;
	flex-wrap:wrap;
}


.pgw-social a{
	display:flex;
	align-items:center;
	justify-content:center;
	width:42px;
	height:42px;
	padding:0;
	border-radius:50%;
	text-decoration:none;
	background:transparent;
}


/* ICON DASAR */

.pgw-icon{
	width:42px;
	height:42px;
	display:flex;
	align-items:center;
	justify-content:center;
	border-radius:50%;
	color:#fff;
	font-size:22px;
	font-weight:700;
	line-height:1;
	transition:0.3s ease;
}


/* FACEBOOK */

.pgw-facebook{
	background:#1877F2;
}


/* INSTAGRAM */

.pgw-instagram{
	background:linear-gradient(
		45deg,
		#feda75,
		#d62976,
		#962fbf,
		#4f5bd5
	);
}


/* YOUTUBE */

.pgw-youtube{
	background:#FF0000;
}


/* TIKTOK */

.pgw-tiktok{
	background:#000000;
}


/* X / TWITTER */

.pgw-twitter{
	background:#111111;
}


/* HOVER */

.pgw-social a:hover .pgw-icon{
	transform:translateY(-3px);
	opacity:.85;
}

/* Pegawai Carousel */

.pgw-carousel{
	display:flex;
	gap:20px;
	overflow-x:auto;
	scroll-behavior:smooth;
}

.pgw-carousel-item{
	flex:0 0 auto;
}

.pgw-carousel-item img{
	max-width:100%;
	height:auto;
	display:block;
}
