/* HEADER */
.home-program-container {
	background: #FAF0EB;
    color: #222;
	margin-top: 60px;
}

.home-program-sub-container {
	background: #FAF0EB;
    color: #222;
	padding-top: 60px;
	padding-bottom: 60px;
	margin-left: 100px;
	margin-right: 100px;
}

.home-program-section-sub {
    font-size: 11px;
    letter-spacing: 2px;
    color: #b07a63;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.home-program-section-sub::before {
    content: "";
    width: 25px;
    height: 1px;
    background: #b07a63;
}

.home-program-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.home-program-section-title {
	font-family: 'Archivo Black', sans-serif;
    font-size: 26px;
    font-weight: 600;
}

.home-program-view-all {
    font-size: 13px;
    color: #b07a63;
    text-decoration: none;
}

/* GRID */
.home-program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* CARD */
.home-program-card {
    background: #f3f0ee;
    border-radius: 10px;
    padding: 20px;
    border-left: 4px solid #d9a58f;
    transition: 0.3s;
}

.home-program-card:hover {
    transform: translateY(-3px);
}

/* VARIAN BORDER */
.home-program-card.blue { border-color: #6b6bd6; }
.home-program-card.orange { border-color: #d9a58f; }
.home-program-card.gold { border-color: #d6b06b; }

/* TAG */
.home-program-tag {
    display: inline-block;
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-weight: 500;
}

.home-program-thumb {
	height: 300px;
	position: relative;
	overflow: hidden;
	margin-bottom: 20px;
}

.home-program-thumb .home-program-image {
    width: 100%;
    height: 300px; /* tentukan tinggi agar bisa efek crop */
    background: #e6d6cf;
    overflow: hidden;
}

.home-program-thumb .home-program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ini kunci crop otomatis */
    display: block;
	object-position: top; /* bisa: center, top, bottom, left, right */
}

.home-program-tag.orange { background: #f2dcd2; color: #a87660; }
.home-program-tag.blue { background: #dcdcf5; color: #6b6bd6; }
.home-program-tag.gold { background: #f5ecd9; color: #b38b3d; }

/* TITLE */
.home-program-card-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
}

/* META */
.home-program-meta {
    font-size: 12px;
    color: #777;
    margin-bottom: 12px;
}

/* LINK */
.home-program-detail {
    font-size: 12px;
    color: #b07a63;
    text-decoration: none;
}

/* RESPONSIVE */
@media(max-width: 900px) {
	.home-program-sub-container {
		margin-left: 20px;
		margin-right: 20px;
	}
	
    .home-program-grid {
        grid-template-columns: 1fr;
    }
}