/* custom page title image */

.custom-heading-container span{
	font-family: "Arapey", "Kantumruy Pro", serif !important;
}
.page-title-image-title{
	background: linear-gradient(90deg, rgba(155, 42, 42, 0) 20%, var(--rokka-primary-color), rgba(42, 123, 155, 0) 80%);
}
.page-title-image-wrapper .page-title-image-overlay{
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
}
.page-title-image-wrapper img{
	display: block;
}
.page-title-image-content{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}

/* next step list */
.rokka-next-step-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-radius: 8px;
}

.rokka-step-item {
    background: #fff;
    border: 1px solid #ccc;
    padding: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.rokka-step-item:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.rokka-step-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.rokka-step-date {
    font-size: 14px;
    color: #777;
    margin-top: 5px;
}