@charset "UTF-8";

:root {
	--pkrl-green: #00b14f;
	--pkrl-light-green: #d9fcde;
	--pkrl-dark-green: #005339;
	--pkrl-off-green: #347243;
	--pkrl-yellow: #d3f035;
	--white: #ffffff;
	--pkrl-off-white: #f3fff1;
	--container-width: 1200px;
	--extended-container-width: 1300px;
	--content-width: 1100px;
	--py-large: 80px;
	--py-medium: 70px;
	--py-small: 60px;
	--title-base: 60px;
	--subtitle-base: 32px;
	--text-base: 21px;
	--text-l: 26px;
	--text-button: 21px;
	--text-sm: 16px;
	--text-cta-l: 42px;
	--title-mobile-base: 36px;
	--subtitle-mobile-base: 28px;
	--text-mobile-base: 16px;
	--text-mobile-l: 19px;
	--text-mobile-button: 16px;
	--text-mobile-sm: 12px;
	--text-cta-l-mobile: 30px;
	--radius-base: 16px;
	--radius-l: 24px;
	--radius-xl: 50px;
	--grab-extra-bold: "Grab-Community-Solid-EN-ExtraBold", sans-serif;
	--grab-bold: "Grab-Community-Solid-EN-Bold", sans-serif;
	--grab-regular: "Grab-Community-Solid-EN-Regular", sans-serif;
	--grab-medium: "Grab-Community-Solid-EN-Medium", sans-serif;
	--grab-light: "Grab-Community-Solid-EN-Light", sans-serif;
}

/* ==========================================================================
   Global Styles 
   ========================================================================== */
.pkrl {
	font-size: var(--text-base);
	line-height: 1.5;
}
.pkrl-bg-off-white {
	background-color: var(--pkrl-off-white);
}
.pkrl-bg-green {
	background: var(--pkrl-green);
}
.pkrl-bg-light-green {
	background-color: var(--pkrl-light-green);
}
.pkrl-bg-dark-green {
	background-color: var(--pkrl-dark-green);
}
.pkrl-bg-off-green {
	background-color: var(--pkrl-off-green);
}
.pkrl-bg-yellow {
	background-color: var(--pkrl-yellow);
}
.pkrl-text-white {
	color: var(--white) !important;
}
.pkrl-text-light-green {
	color: var(--pkrl-light-green) !important;
}
.pkrl-text-dark-green {
	color: var(--pkrl-dark-green) !important;
}
.pkrl-text-yellow {
	color: var(--pkrl-yellow) !important;
}
.py-small {
	padding-top: var(--py-small) !important;
	padding-bottom: var(--py-small) !important;
}
.py-medium {
	padding-top: var(--py-medium) !important;
	padding-bottom: var(--py-medium) !important;
}
.py-large {
	padding-top: var(--py-large) !important;
	padding-bottom: var(--py-large) !important;
}
.pkrl-section {
	position: relative;
	width: 100%;
}
.pkrl-section .container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 80px 80px;
	/* overflow: hidden; */
}
@media (max-width: 768px) {
	.pkrl-section .container {
		padding: 24px;
	}
}
.pkrl-section__title {
	margin-bottom: 20px;
	font-family: "Grab-Community-Solid-EN-Regular";
	color: var(--pkrl-dark-green);
	text-align: left;
	font-size: var(--title-mobile-base);
	font-weight: 600;
	line-height: calc(2.5 / 2.25);
}
@media (min-width: 768px) {
	.pkrl-section__title {
		margin-bottom: 20px;
		font-size: var(--title-base);
		line-height: calc(2.5 / 2.25);
	}
}

/* ==========================================================================
   Footer
   ========================================================================== */
.pkrl-footer {
	display: flex;
	flex-direction: column;
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 24px;
	overflow: hidden;
}
@media (min-width: 768px) {
	.pkrl-footer {
		padding: 50px;
		flex-direction: row;
	}
}
.pkrl-footer__media-icon:hover {
	opacity: 0.8;
}
.pkrl-footer__text-description {
	font-family: "Grab-Community-Solid-EN-Regular";
	font-style: normal;
	font-weight: normal;
	font-size: 12px;
	line-height: 16px;
	color: #fff;
	white-space: pre-line;
	padding-right: 16px;
	margin-top: 16px;
}
@media (min-width: 981px) {
	.pkrl-footer__text-description {
		line-height: 18px;
		max-width: 300px;
	}
}
.pkrl-footer-mobile {
	display: block;
}
.pkrl-footer-desktop {
	display: none;
}
@media (min-width: 981px) {
	.pkrl-footer-mobile {
		display: none;
	}
	.pkrl-footer-desktop {
		display: block;
	}
}
.pkrl-footer__logo-media {
	display: flex;
	flex-direction: column;
	width: auto;
}
@media (min-width: 768px) {
	.pkrl-footer__logo-media {
		width: 35%;
	}
}
.pkrl-footer__logo img {
	/* width: 50%; */
	/* padding-right: 8px; */
	width: 112px;
}
.pkrl-footer__media li {
	display: inline-block;
	margin-right: 4px;
}
.pkrl-footer__media li:last-child {
	margin-right: 0;
}
.pkrl-footer__media li a {
	width: 22px;
	height: 22px;
}
@media (min-width: 321px) {
	.pkrl-footer__media li a {
		width: 25px;
		height: 25px;
	}
}
.pkrl-footer__media li img {
	-o-object-fit: contain;
	object-fit: contain;
	height: 100%;
	width: 100%;
}
.pkrl-footer__menu {
	padding-top: 32px;
	display: flex;
	flex: 1;
	flex-direction: row;
	gap: 16px;

	font-family: "Grab-Community-Solid-EN-Regular";
	font-style: normal;
	font-weight: normal;
	font-size: 12px;
	line-height: 16px;
	color: #fff;
}
@media (min-width: 768px) {
	.pkrl-footer__menu {
		padding-top: 62px; /*logo + padding */
		margin-bottom: 0;
	}
}
.pkrl-footer__menu ul {
	vertical-align: top;
	/* flex: 1; */
	flex-basis: 50%;
	margin-bottom: 48px;
	/* display: inline-block; */
}
@media (min-width: 981px) {
	.pkrl-footer__menu ul {
		flex-basis: 33.3333%;
		width: 20%;
		margin-bottom: 0;
	}
}
/* .pkrl-footer__menu ul:first-child {
	padding-right: 8px;
} */
.pkrl-footer__menu a {
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.pkrl-footer__menu a:hover {
	color: #00b14f;
}
.pkrl-footer__text li {
	margin-bottom: 12px;
}
@media (min-width: 321px) {
	.pkrl-footer__text li {
		margin-bottom: 0;
	}
}
.pkrl-footer__text li,
.pkrl-footer__text a {
	font-family: "Grab-Community-Solid-EN-Regular";
	font-style: normal;
	font-weight: 500;
	font-size: 12px;
	line-height: 16px;
	letter-spacing: -0.02em;
	color: #fff;
}
@media (min-width: 321px) {
	.pkrl-footer__text li,
	.pkrl-footer__text a {
		line-height: 24px;
	}
}
.pkrl-footer__text li strong,
.pkrl-footer__text a strong {
	font-size: 14px;
	font-family: "Grab-Community-Solid-EN-Bold";
}

/* ==========================================================================
   Hero Banner (Background Image)
   ========================================================================== */
.pkrl-hero-banner {
	background-image: url("../images/program-kemasan-ramah-lingkungan/hero-mobile.jpg");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
	min-height: 1100px;
	display: flex;
	flex-direction: column;
	padding: 120px 24px 40px;
}
@media (min-width: 768px) {
	.pkrl-hero-banner {
		min-height: 1000px;
		padding: 120px 60px 80px;
	}
}

@media (min-width: 981px) {
	.pkrl-hero-banner {
		background-image: url("../images/program-kemasan-ramah-lingkungan/hero-full.jpg");
		min-height: 1000px;
		padding: 140px 80px 100px;
	}
}

.pkrl-hero-banner .pkrl-section__title {
	font-family: "Grab-Community-Solid-EN-Bold";
	font-size: var(--title-mobile-base);
	line-height: 1.2;
	margin-bottom: 16px;
}
@media (min-width: 768px) {
	.pkrl-hero-banner .pkrl-section__title {
		font-size: 48px;
		margin-bottom: 24px;
	}
}
@media (min-width: 981px) {
	.pkrl-hero-banner .pkrl-section__title {
		font-size: var(--title-base);
		margin-bottom: 32px;
	}
}
.pkrl-hero-banner__description {
	font-family: "Grab-Community-Solid-EN-Regular";
	color: var(--white);
	font-size: var(--text-mobile-base);
	line-height: 1.5;
	margin-bottom: 24px;
}
@media (min-width: 768px) {
	.pkrl-hero-banner__description {
		font-size: 18px;
		margin-bottom: 32px;
	}
}
@media (min-width: 981px) {
	.pkrl-hero-banner__description {
		font-size: var(--text-base);
		margin-bottom: 40px;
	}
}

.pkrl-hero-banner__cta {
	margin-top: auto;
}

/* ==========================================================================
   CTA Button System (Reusable)
   ========================================================================== */
.pkrl-cta-button {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 8px 24px 8px 8px;
	border-radius: var(--radius-xl);
	font-family: var(--grab-medium);
	font-size: var(--text-mobile-button);
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	line-height: 1.2;
	max-width: 100%;
}
@media (min-width: 768px) {
	.pkrl-cta-button {
		padding: 12px 32px 12px 12px;
		gap: 16px;
	}
}
@media (min-width: 981px) {
	.pkrl-cta-button {
		font-size: var(--text-button);
		padding: 16px 40px 16px 16px;
	}
}
.pkrl-cta-button__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	flex-shrink: 0;
	border-radius: 50%;
	background-color: var(--pkrl-dark-green);
	padding: 8px;
}
@media (min-width: 768px) {
	.pkrl-cta-button__icon {
		width: 40px;
		height: 40px;
		padding: 10px;
	}
}
.pkrl-cta-button__icon img,
.pkrl-cta-button__icon svg {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
}
.pkrl-cta-button__text {
	flex: 1;
	white-space: normal;
	text-align: left;
}

@media (min-width: 981px) {
	.pkrl-cta-button__text {
		white-space: nowrap;
	}
}

/* Responsive visibility utilities */
.gvv-only__mobile {
	display: inline !important;
}
.gvv-only__desktop {
	display: none !important;
}

@media (min-width: 981px) {
	.gvv-only__mobile {
		display: none !important;
	}
	.gvv-only__desktop {
		display: inline !important;
	}
}

/* Arrow color for each variant */
.pkrl-cta-button--yellow .pkrl-cta-button__icon {
	color: var(--pkrl-yellow);
}
.pkrl-cta-button--dark-green .pkrl-cta-button__icon {
	color: var(--pkrl-dark-green);
}

/* CTA Button Variant: Yellow Background + Dark Green Text */
.pkrl-cta-button--yellow {
	background-color: var(--pkrl-yellow);
	color: var(--pkrl-dark-green);
}
.pkrl-cta-button--yellow:hover {
	background-color: #c4e02f;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.pkrl-cta-button--yellow:active {
	transform: translateY(0);
}

/* CTA Button Variant: Dark Green Background + Yellow/White Text */
.pkrl-cta-button--dark-green {
	background-color: var(--pkrl-dark-green);
	color: var(--pkrl-yellow);
}
.pkrl-cta-button--dark-green:hover {
	background-color: #004830;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.pkrl-cta-button--dark-green:active {
	transform: translateY(0);
}
.pkrl-cta-button--dark-green .pkrl-cta-button__icon {
	background-color: var(--pkrl-yellow);
}

/* Optional: White text variant for dark green button */
.pkrl-cta-button--dark-green.pkrl-cta-button--white-text {
	color: var(--white);
}

/* ==========================================================================
   ALTERNATIVE BUTTON STYLE: Vertical/Stacked Layout (Icon Above Text)
   ========================================================================== */
/*
   INSTRUCTIONS TO USE:
   1. In PHP, add class "pkrl-cta-button--stacked-mobile" to the <a> tag:
      <a href="#" class="pkrl-cta-button pkrl-cta-button--yellow pkrl-cta-button--stacked-mobile">

   2. Uncomment the CSS below to enable vertical button layout on mobile

   3. Compare with default horizontal layout and choose which looks better

   4. Remove unused code after deciding
*/

/*
@media (max-width: 980px) {
	.pkrl-cta-button--stacked-mobile {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 20px 16px;
		gap: 16px;
		border-radius: var(--radius-l);
	}

	.pkrl-cta-button--stacked-mobile .pkrl-cta-button__icon {
		width: 56px;
		height: 56px;
		padding: 14px;
		border-radius: 50%;
		background-color: var(--pkrl-dark-green);
	}

	.pkrl-cta-button--stacked-mobile .pkrl-cta-button__text {
		text-align: center;
		font-size: 15px;
		line-height: 1.4;
	}
}
*/

/* -------------------------------------------------------------------------- */
/* Kisah GrabMerchant                                                         */
/* -------------------------------------------------------------------------- */
.pkrl-kisah__cta {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 32px;
}

/* -------------------------------------------------------------------------- */
/* PKRL Slider Section                                                   */
/* -------------------------------------------------------------------------- */
.pkrl-section-slider {
	position: relative;
	padding: 0 60px;
}
.pkrl-section-slider.owl-carousel {
	display: flex;
	flex-direction: row;
	align-items: stretch;
}
@media (min-width: 981px) {
	.pkrl-section-slider.owl-carousel .owl-stage-outer,
	.pkrl-section-slider.owl-carousel .owl-stage,
	.pkrl-section-slider.owl-carousel .owl-item {
		min-height: 402px; /* Allow expansion while maintaining minimum height */
	}
	/* Prevent excessive height during initialization */
	.pkrl-section-slider.owl-carousel .owl-stage-outer {
		max-height: none; /* Allow natural expansion */
	}
}
.pkrl-section-slider__item {
	background: var(--pkrl-green);
	border-radius: 36px;
	display: flex;
	/* flex-direction: row; */
	/* align-items: center; */
	align-items: start;
	padding: 36px;
	gap: 40px;
	min-height: 220px;
	/* margin-bottom: 16px; */
}
@media (min-width: 981px) {
	.pkrl-section-slider__item {
		min-height: 402px; /* 330px image + 72px padding, allows expansion for long content */
	}
}
.pkrl-section-slider__item-image img {
	width: 330px;
	height: 330px;
	border-radius: 24px;
	object-fit: cover;
	object-position: center;
	background: var(--pkrl-green);
}
.pkrl-section-slider__item-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	color: var(--white);
}
.pkrl-section-slider__item-quote {
	font-size: var(--text-sm);
	font-family: "Grab-Community-Solid-EN-Regular";
	text-align: justify;
	line-height: 1.5;
	margin-bottom: 0;
}
.pkrl-section-slider__item-name {
	font-size: var(--text-l);
	font-family: "Grab-Community-Solid-EN-Medium";
	/* margin-bottom: 24px; */
}
.pkrl-section-slider__dots {
	display: flex;
	justify-content: center;
	margin-top: 24px;
	gap: 8px;
}
.pkrl-section-slider__dots .owl-dot {
	border-radius: 50%;
	background: transparent;
	transition: background 0.2s, border 0.2s;
	border: 2px solid var(--pkrl-green);
	display: inline-block;
	width: 16px;
	height: 16px;
}
.pkrl-section-slider__dots .owl-dot.active {
	background: var(--pkrl-green);
	border-color: var(--pkrl-green);
}
.owl-carousel .owl-nav {
	position: absolute;
	top: calc(50% - 32px);
	left: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	pointer-events: none;
}
.owl-carousel .owl-nav button {
	background: transparent;
	border: none;
	color: var(--pkrl-green);
	border-radius: 50%;
	width: 64px;
	height: 64px;
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: all;
	transition: opacity 0.2s;
}
.owl-carousel .owl-nav button img {
	width: 100%;
	height: 100%;
}
.owl-carousel .owl-nav button:hover {
	opacity: 0.8;
}
@media (max-width: 981px) {
	.pkrl-section-slider {
		position: relative;
		padding: 0;
	}
	.owl-carousel .owl-nav {
		display: none;
	}
	.owl-carousel .owl-nav button {
		width: 32px;
		height: 32px;
	}
	.pkrl-section-slider__item {
		flex-direction: column;
		align-items: center;
		padding: 16px;
		gap: 16px;
		text-align: center;
	}
	.pkrl-section-slider__item-image {
		width: 100%;
		flex-shrink: 0;
	}
	.pkrl-section-slider__item-image img {
		width: 100%;
		aspect-ratio: 1 / 1;
		object-fit: cover;
		object-position: center;
	}
	.pkrl-section-slider__item-name {
		margin-top: 8px;
		margin-bottom: 12px;
	}
	.pkrl-section-slider__item-quote {
		margin-top: 0;
	}
}

/* -------------------------------------------------------------------------- */
/* Platform Change Section (Memulai perubahan dari platform)                 */
/* -------------------------------------------------------------------------- */
.pkrl-platform-change__description {
	font-family: var(--grab-regular);
	color: var(--white);
	font-size: var(--text-mobile-base);
	line-height: 1.5;
	margin-bottom: 32px;
}
@media (min-width: 768px) {
	.pkrl-platform-change__description {
		font-size: var(--text-base);
		margin-bottom: 40px;
	}
}

.pkrl-platform-change__images {
	display: flex;
	flex-direction: row;
	gap: 16px;
	margin-bottom: 40px;
}
@media (min-width: 768px) {
	.pkrl-platform-change__images {
		gap: 40px;
		margin-bottom: 48px;
	}
}

.pkrl-platform-change__image {
	flex: 1;
	border-radius: var(--radius-l);
	overflow: hidden;
}
.pkrl-platform-change__image img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: var(--radius-l);
	object-fit: cover;
}

.pkrl-platform-change__subtitle {
	margin-bottom: 20px;
	font-family: "Grab-Community-Solid-EN-Regular";
	color: var(--pkrl-dark-green);
	text-align: left;
	font-size: var(--title-mobile-base);
	font-weight: 600;
	line-height: calc(2.5 / 2.25);
}
@media (min-width: 768px) {
	.pkrl-platform-change__subtitle {
		margin-bottom: 20px;
		font-size: 50px;
		line-height: calc(2.5 / 2.25);
	}
}

/* WYSIWYG Content Styling - Shared across sections */
.pkrl-panduan-content-wrapper {
	color: var(--white);
}
.pkrl-panduan-content-wrapper p {
	font-family: var(--grab-regular);
	font-size: var(--text-mobile-base);
	line-height: 1.5;
	margin-bottom: 16px;
}
@media (min-width: 768px) {
	.pkrl-panduan-content-wrapper p {
		font-size: var(--text-base);
		margin-bottom: 16px;
	}
}

.pkrl-panduan-content-wrapper ol {
	list-style: none;
	counter-reset: pkrl-counter;
	padding: 0;
	margin-bottom: 16px;
	/* display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 32px; */
}
@media (min-width: 768px) {
	.pkrl-panduan-content-wrapper ol {
		/* gap: 16px;
		margin-bottom: 48px; */
	}
}

.pkrl-panduan-content-wrapper li {
	position: relative;
	padding-left: 36px;
	margin-bottom: 4px;
}

.pkrl-panduan-content-wrapper ol li {
	counter-increment: pkrl-counter;
	/* display: flex;
	align-items: start;
	gap: 16px; */
	font-family: var(--grab-regular);
	color: var(--white);
	font-size: var(--text-mobile-base);
	line-height: 1.5;
}
@media (min-width: 768px) {
	.pkrl-panduan-content-wrapper ol li {
		/* gap: 16px; */
		font-size: var(--text-base);
	}
}

.pkrl-panduan-content-wrapper ol li::before {
	content: counter(pkrl-counter);
	position: absolute;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	min-width: 28px;
	border-radius: 50%;
	background-color: var(--pkrl-yellow);
	color: var(--pkrl-dark-green);
	font-family: var(--grab-bold);
	font-size: var(--text-mobile-base);
	font-weight: 700;
}
@media (min-width: 768px) {
	.pkrl-panduan-content-wrapper ol li::before {
		width: 28px;
		height: 28px;
		min-width: 28px;
		font-size: var(--text-base);
	}
}

.pkrl-panduan-content-wrapper a {
	color: var(--pkrl-yellow);
	text-decoration: underline;
	font-family: var(--grab-bold);
}

/* -------------------------------------------------------------------------- */
/* Peran Kamu Section                                                         */
/* -------------------------------------------------------------------------- */
.pkrl-peran-kamu__subtitle {
	font-family: var(--grab-regular);
	color: var(--white);
	font-size: var(--subtitle-mobile-base);
	line-height: 1.4;
	margin-bottom: 20px;
	/* margin-top: -10px; */
}
@media (min-width: 768px) {
	.pkrl-peran-kamu__subtitle {
		font-size: var(--subtitle-base);
		/* margin-bottom: 48px; */
	}
}

/* Video Placeholder */
.pkrl-peran-kamu__video-placeholder {
	display: flex;
	justify-content: center;
	align-items: center;
	/* margin: 32px auto; */
	/* max-width: 100%; */
}
@media (min-width: 768px) {
	.pkrl-peran-kamu__video-placeholder {
		margin-bottom: 48px;
		max-width: 500px;
	}
}

.pkrl-peran-kamu__video-wrapper {
	width: 100%;
	position: relative;
	/* border-radius: var(--radius-l); */
	overflow: hidden;
	/* Mobile: 9:16 aspect ratio (portrait) */
	padding-bottom: 177.78%;
}
@media (min-width: 768px) {
	.pkrl-peran-kamu__video-wrapper {
		/* Desktop: 1:1 aspect ratio (square) */
		padding-bottom: 100%;
	}
}

/* Overlay to hide video borders */
.pkrl-peran-kamu__video-wrapper::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	z-index: 1;
	box-shadow: inset 0 0 0 2px var(--pkrl-green);
}

.pkrl-peran-kamu__video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--radius-l);
}

/* Responsive visibility for videos */
.pkrl-peran-kamu__video-wrapper .gvv-only__mobile {
	display: block !important;
}
.pkrl-peran-kamu__video-wrapper .gvv-only__desktop {
	display: none !important;
}
@media (min-width: 981px) {
	.pkrl-peran-kamu__video-wrapper .gvv-only__mobile {
		display: none !important;
	}
	.pkrl-peran-kamu__video-wrapper .gvv-only__desktop {
		display: block !important;
	}
}

/* Tips Intro Text */
/* .pkrl-peran-kamu__tips-intro {
	font-family: var(--grab-regular);
	color: var(--white);
	font-size: var(--text-mobile-base);
	line-height: 1.5;
	margin-bottom: 20px;
}
@media (min-width: 768px) {
	.pkrl-peran-kamu__tips-intro {
		font-size: var(--text-base);
		margin-bottom: 24px;
	}
} */

/* Vendor Question */
.pkrl-peran-kamu__vendor-question {
	font-family: var(--grab-regular);
	color: var(--white);
	font-size: var(--text-cta-l-mobile) !important;
	line-height: 1.2;
	margin-top: 32px;
	margin-bottom: 32px;
	text-align: left;
	max-width: 100%;
}
@media (min-width: 768px) {
	.pkrl-peran-kamu__vendor-question {
		font-size: var(--text-cta-l) !important;
		line-height: 1.2;
		max-width: 850px;
	}
}

/* CTA Button Container */
.pkrl-peran-kamu__cta {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

/* Simple Button (Rectangular) */
.pkrl-simple-button {
	display: inline-block;
	padding: 8px 32px;
	background-color: var(--pkrl-yellow);
	color: var(--pkrl-dark-green);
	font-family: var(--grab-medium);
	font-size: var(--text-mobile-button);
	font-weight: 600;
	text-decoration: none;
	border-radius: 0;
	transition: all 0.3s ease;
	text-align: center;
	border: none;
	cursor: pointer;
}
@media (min-width: 768px) {
	.pkrl-simple-button {
		padding: 8px 32px;
		font-size: var(--text-button);
	}
}
.pkrl-simple-button:hover {
	background-color: #c4e02f;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.pkrl-simple-button:active {
	transform: translateY(0);
}
