/* HEADER */
.artikel-container {
	margin-top: 60px;
	margin-left: 100px;
	margin-right: 100px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-title {
	font-family: 'Archivo Black', sans-serif;
    font-size: 24px;
    font-weight: 600;
}

.section-sub {
    font-size: 12px;
    color: #b07a63;
    letter-spacing: 2px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-sub::before {
    content: "";
    width: 30px; /* panjang garis */
    height: 2px;
    background: #b07a63;
}

.view-all {
    font-size: 13px;
    color: #b07a63;
    text-decoration: none;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: 3fr;
    gap: 20px;
}

/* LEFT BIG CARD */
.card-big {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
}

.card-big .image {
    width: 100%;
    height: 400px; /* tentukan tinggi agar bisa efek crop */
    background: #e6d6cf;
    overflow: hidden;
}

.card-big .image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ini kunci crop otomatis */
    display: block;
	object-position: center top; /* bisa: center, top, bottom, left, right */
}

.card-content {
    padding: 20px;
}

.tag {
    display: inline-block;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    background: #f1e3dd;
    color: #a87660;
    margin-bottom: 10px;
}

.card-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.meta {
    font-size: 12px;
    color: #777;
}

/* RIGHT GRID */
.right-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

.card-small {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
}

.card-small .image-right {
    width: 100%;
    height: 200px; /* tentukan tinggi agar bisa efek crop */
    background: #e6d6cf;
    overflow: hidden;
}

.card-small .image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ini kunci crop otomatis */
    display: block;
	object-position: center; /* bisa: center, top, bottom, left, right */
}

.card-small .card-content {
    padding: 12px;
}

.card-small .card-title {
    font-size: 13px;
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .right-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 768px) {
	.artikel-container {
		margin-left: 20px;
		margin-right: 20px;
	}
}

@media(max-width: 500px) {
	.artikel-container {
		margin-left: 20px;
		margin-right: 20px;
	}
	
	.section-title {
		font-size: 18px;
	}

    .right-grid {
        grid-template-columns: 1fr;
    }
}