
@import url('https://fonts.googleapis.com/css2?family=Baloo+Da+2:wght@400..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&display=swap');

.bn-bd {
    font-family: 'Baloo Da 2', sans-serif;
}

.bn-hs {
    font-family: "Hind Siliguri", sans-serif;
}

header {
    background: var(--background);
}


/* hero --->  */
.hero-title-content {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 14px 0 8px;
}

.hero-icon-box {
	width: 84px;
	height: 84px;
	display: grid;
	place-items: center;
	border-radius: 16px;
	border: 1px solid var(--primary-surface-border);
	background: linear-gradient(135deg, color-mix(in srgb, var(--primary-color) 48%, transparent) 0%, var(--background) 100%);
	flex: 0 0 84px;
}

.hero-icon {
	font-size: 2.9rem !important;
	line-height: 1;
	color: color-mix(in srgb, var(--color) 92%, white);
	font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

@media (max-width: 700px) {
	.hero-title-content {
		gap: 14px;
		align-items: flex-start;
	}

	.hero-icon-box {
		width: 64px;
		height: 64px;
		border-radius: 13px;
		flex-basis: 64px;
	}

	.hero-icon {
		font-size: 2.05rem;
	}
}

.h1 {
	font-size: clamp(1.25rem, 2vw, 2rem);
	line-height: 1.08;
	font-weight: 800;
	letter-spacing: -.02em;
	margin: 0;
	color: color-mix(in srgb, var(--color) 96%, white);
}

.h2 {
	font-size: clamp(0.9rem, 0.6vw, 1.3rem);
	margin-top: 8px;
	margin-bottom: 0;
	line-height: 1.22;
	font-weight: 400;
	color: color-mix(in srgb, var(--color) 62%, transparent);
}

/* Show Publish & Update date ---> */
.dates {
    margin-top: 1rem;
}

.dates .date-container {
    display: flex;
    flex-direction: row;
}

@media (max-width: 991px) {
    .dates .date-container {
        flex-direction: column;
    }
}

.dates .published {
    margin-right: 2.5rem;
}

@media (max-width: 991px) {
    .dates .published {
        margin-right: 0;
    }
}

.dates .status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
}

.dates .status-dot.green {
    background-color: var(--green);
}

.dates .status-dot.blue {
    background-color: var(--royal-blue);
}

/* <---- Show Publish & Update date */

/* <---- hero  */




aside {
    width: 300px;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .col-mobile {
        flex-direction: column;
    }

    aside {
        width: 100%;
    }
}

