	.contributor-info__thumb {
		width: 60px; 
		height: 60px; 
		overflow: hidden;
		border-radius: 50%; 
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.profile-image {
		width: 100%;
		height: 100%;
		object-fit: cover; 
		border-radius: 50%; 
	}
    .success-popup {
        position: fixed;
        left: 20px;
        bottom: 20px;
        background-color: #4CAF50;
        color: white;
        padding: 10px;
        border-radius: 5px;
        display: none; 
        z-index: 999; 
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    }

    .success-popup .close-btn {
        float: right;
        cursor: pointer;
        font-size: 20px;
        font-weight: bold;
    }
	.clamp-2 {
		display: -webkit-box;
		-webkit-line-clamp: 1;   
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis; 
	}

	.ki-section-title {
    font-weight: 800;
    font-size: 28px;
    margin-bottom: 24px;
}

/* Judul section */
.section-heading__title {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
}

/* Card kategori */
.popular-item {
    border-radius: 24px;
    border: 1px solid transparent;
    padding: 32px 24px;
    text-align: center;
    background: #ffffff;
    /* trik gradient border */
    background-image:
        linear-gradient(#ffffff, #ffffff),              /* isi putih */
        linear-gradient(135deg, #fbbf24, #60a5fa);      /* border gradient */
    background-origin: border-box;
    background-clip: padding-box, border-box;

    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.02);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

.popular-item:hover {
    border-color: #fbbf24;
}
/* Icon di tengah lingkaran */
.popular-item span > img {
	transition: transform 0.25s ease;
}

.popular-item:hover span > img {
	transform: scale(1.05);
}

/* Judul & subjudul */
.popular-item__title {
	font-size: 18px;
	font-weight: 800;
	color: #0f172a;
}

.popular-item__qty {
	font-size: 14px;
	color: #6b7280;
}
@media (max-width: 767px) {
    .banner-thumb {
        display: none !important;
    }
}
/* Mobile adjustments */
@media (max-width: 767px) {

    /* Section height */
    .padding-y-120 {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    /* Icon size */
    .popular-item span img {
        width: 70px !important;
    }

    /* Card */
    .popular-item {
        padding: 16px !important;
        border-radius: 16px !important;
    }

    .popular-item__title {
        font-size: 16px !important;
        margin-top: 10px !important;
    }

    .popular-item__qty {
        font-size: 13px !important;
        margin-top: 4px !important;
    }
}
.banner {
  position: relative;
  z-index: 1;
  padding: 45px 0 !important;
}

@media (max-width: 767px) {
    .product-card__thumb img {
        height: 120px !important;
        object-fit: cover;
        width: 100%;
    }
}
@media (max-width: 767px) {
    .product-card__title a {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 40px; /* biar tinggi konsisten */
    }
}
@media (max-width: 767px) {
    .product-card__author a {
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }
}
@media (max-width: 767px) {
    .product-card__bottom {
        min-height: 40px;
        align-items: center;
    }
}
@media (max-width: 767px) {
    .product-card {
        min-height: 350px; /* sesuaikan */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}
@media (max-width: 767px) {
    .product-card {
        padding: 10px !important;
    }
}
