.other-pages-simple-text-page {
	.banner {
		height: 300px;
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		padding-inline: 0;

		img {
			position: absolute;
			height: 100%;
			width: 100%;
			object-fit: cover;
		}

		.banner-text {
			position: absolute;
			height: 100%;
			width: 100%;
			background-color: rgba(0, 0, 0, 0.5);
			display: flex;
			align-items: center;
			justify-content: center;
			color: white;
			font-size: 35px;
			text-align: center;
		}
	}

	.nav-menu {
		display: flex;
		flex-direction: column;
		gap: 10px;

		ul {
			padding: 0;
			margin: 0;

			li {
				margin-bottom: 10px;
				border-left: 5px solid transparent;
				padding-left: 5px;

				&.current {
					border-left-color: var(--mainColor);
				}

				&:hover {
					border-left-color: var(--mainColor);
				}

				a {
					color: #000;
					font-size: 18px;
					font-weight: 600;
					transition: all 0.2s ease-in-out;
					overflow-wrap: anywhere;

					&.current {
						font-weight: bold;
					}
				}
			}
		}
	}

	.title {
		margin-block: 2rem;

		.page__title {
			font-size: 35px;
			font-weight: 600;
		}

		.page__content {
			margin-block: 1rem;
			overflow-wrap: anywhere;

			ol li {
				list-style: decimal;
			}

			ul li {
				list-style: disc;
			}
		}
	}
}

.twimg-modal {
	display: none;
	position: fixed;
	z-index: 99999;
	padding-top: 60px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.9);
	cursor: zoom-out;
}

.twimg-modal-content {
	margin: auto;
	display: block;
	height: 90%;
}

.twimg-close {
	position: absolute;
	top: 20px;
	right: 35px;
	font-size: 40px;
	font-weight: bold;
	color: #fff;
	cursor: pointer;
}
