.content-image-section {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 1.06rem 0 0;

}
@media screen and (max-width: 768px) and (orientation: portrait) {
	.content-image-section {
		padding: 0.4rem 0;

}
	}
.content-image-section .container {
		position: relative;
		display: flex;
		flex-direction: row;
		align-items: flex-start;
		justify-content: space-between;
		gap: 0.24rem;
	}
@media screen and (max-width: 768px) and (orientation: portrait) {
	.content-image-section .container {
			flex-direction: column;
			justify-content: flex-start;
			gap: 0.4rem;
	}
		}
.content-image-section .content-wrap {
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		gap: 0.4rem;
		width: 6.3rem;
		color: var(--dark-grey);

	}
@media screen and (max-width: 768px) and (orientation: portrait) {
	.content-image-section .content-wrap {
			width: 100%;

	}
		}
:is(.content-image-section .content-wrap) .title-text-wrap {
			position: relative;
			display: flex;
			flex-direction: column;
			gap: 0.22rem;
		}
:is(:is(.content-image-section .content-wrap) .title-text-wrap) .text-wrap {
				max-width: 5.23rem;
			}
:is(:is(:is(.content-image-section .content-wrap) .title-text-wrap) .text-wrap) a {
					text-decoration: underline;
					transition: color 0.4s ease-in-out;
				}
:is(:is(:is(:is(.content-image-section .content-wrap) .title-text-wrap) .text-wrap) a):hover {
						color: var(--orange);
					}
:is(:is(:is(.content-image-section .content-wrap) .title-text-wrap) .text-wrap) p a {
					text-decoration: underline;
					transition: color 0.4s ease-in-out;
				}
:is(:is(:is(:is(.content-image-section .content-wrap) .title-text-wrap) .text-wrap) p a):hover {
						color: var(--orange);
					}
.content-image-section .image-wrap {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 4.59rem;
		height: auto;
	}
@media screen and (max-width: 768px) and (orientation: portrait) {
	.content-image-section .image-wrap {
			width: 100%;
	}
		}
:is(.content-image-section .image-wrap) .image {
			display: flex;
			width: 100%;
			height: auto;
		}
