#blog-main {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
	margin: 0;
	padding: 15px;
	overflow-x: hidden;

	span {
		border-top: #ffffff 1px solid;
		border-bottom: #ffffff 1px solid;
		border-radius: 15px;
		padding: 12px;
		width: 90%;
		max-width: none;
	}

	.blog-post {
		background-color: #0a0a0a;
		display: flex;
		flex-direction: column;
		color: #ffffff;
		margin: 40px;
		padding: 60px 3.5%;
		border: #ffffff 1px solid;
		border-radius: 15px;
		box-shadow: #54152d -20px 20px 50px;
		position: relative;
		transition: all 0.3s ease;
		box-sizing: border-box;

		.toggle-indicator {
			display: inline-flex;
			margin-left: 10px;
			font-size: 0.8em;
			transition: transform 0.3s ease;
			width: 20px;
			text-align: center;
			justify-content: center;
			align-items: center;
		}

		h3 {
			font-size: 1.5em;
			margin: 0;
			padding: 0;
			cursor: pointer;
			transition: color 0.3s ease;
		}

		h3:hover {
			color: #4caf50;
		}

		.blog-post-content {
			transition: max-height 0.5s ease, opacity 0.3s ease;
			overflow: hidden;
			display: block;
			visibility: visible;
			opacity: 1;
			position: relative;
		}

		&.expanded .blog-post-content {
			max-height: none;
			opacity: 1;
			visibility: visible;
			display: block;
		}

		&.collapsed {
			padding: 20px 3.5%;
			transition: padding 0.3s ease;

			.blog-post-content {
				max-height: 0;
				opacity: 0;
				padding: 0;
				margin: 0;
				overflow: hidden;
				visibility: hidden;
				display: none;
			}

			h3,
			.blog-post-meta {
				margin-bottom: 0;
			}
		}

		.blog-post-meta {
			display: block;
			border-top: none;
			border-bottom: #ffffff 1px solid;
			border-radius: 15px;
			margin: 10px 0;
			font-style: italic;
			font-size: 0.7em;

			p {
				margin: -5px 0;
				padding: 0;
				text-align: right;
			}
		}

		h4 {
			font-size: 1.2em;
			margin: 20px 0 10px 0;
			padding: 5px 20px;
			color: #4caf50;
		}

		h5 {
			font-size: 1em;
			margin: 15px 0 5px 0;
			padding: 5px 20px;
		}

		p {
			font-size: 1.1em;
			margin: 10px 0;
			padding: 15px 45px;
			line-height: 1.8;
			text-align: justify;
		}

		ul {
			margin: 10px 0;
			padding: 0 85px;
			list-style-type: disc;
		}

		li {
			margin: 5px 0;
			padding: 5px 0;
			line-height: 1.6;
		}
	}

	.blog-error {
		background-color: #2a0a0a;
		border: #ff4444 1px solid;
		border-radius: 15px;
		padding: 20px;
		margin: 20px;
		text-align: center;
		color: #ff6666;
	}
}