@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600&display=swap');

* {
	margin: 0;
	border: 0;
	padding: 0;
	outline: 0;
	font-family: 'Rubik', sans-serif;
}

*,*:after,*:before {
	box-sizing: border-box;
}

html {
	position: relative;
	font-size: 16px;
}

@media screen and (max-width: 768px) {
	html {
		font-size: 15px
	}
}

@media screen and (max-width: 465px) {
	html {
		font-size: 14px
	}
}

body {
	width: 100vw;
	display: flex;
	justify-content: center;
	gap: 1rem;
	background: #f1f3f6;
}

.card {
	margin: 1rem;
	width: 40rem;
	height: auto;
	background: #fff;
	border-radius: 1.5rem;
	padding: 1.5rem;
	overflow: hidden;
	position: relative;
}

.card-img-holder {
	width: 100%;
	height: auto;
	position: relative;
}

.card-img-holder img {
	width: 100%;
	height: auto;
	max-height: 24rem;
	object-fit: contain;
}

.blog-title {
	color: #22215B;
	padding: .5rem 0;
	font-size: 1.5rem;
}

.blog-subtitle {
	color: #22215B;
	padding: .5rem 0;
	font-size: 1.2rem;
}

.description {
	margin-top: .5rem;
	color: #22215B80;
	font-size: 1rem;
}

.blog-time {
	padding-bottom: 0.5rem;
	font-size: 1.2rem;
	color: #22215B;
}

.sitelinks {
	margin: 1rem 0 0 2rem;
	align-items: center;
	font-size: 1rem;
}

.sitelinks a {
	margin-bottom: .5rem;
	font-weight: 600;
	color: #22215B;
}

.options {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 1rem;
}

.btn {
	font-size: 1rem;
	padding: .5rem 1rem;
	border-radius: .5rem;
	font-weight: 400;
	background: #EEF7FE;
	color: #22215B;
	cursor: pointer;
}