
.hr {
    display: block;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-secondary), transparent);
}

/*----------------------------------------------------------------------
inputs-wrapp
----------------------------------------------------------------------*/
.inputs-wrapp {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.inputs-wrapp label {
    margin-bottom: 10px;
    font-weight: bold;
}

.inputs-wrapp label span {
    color: red;
    margin: 0 3px;
}

.inputs-wrapp input[type='text'],
.inputs-wrapp input[type='number'],
.inputs-wrapp input[type='mail'],
.inputs-wrapp input[type='password'],
.inputs-wrapp textarea {
    border:1px solid var(--color-secondary);
    border-radius: 24px;
    box-shadow: none;
    outline: none;
    height: 56px;
    padding: 0 5px;
}
.inputs-wrapp textarea {
    height: 230px;
}

/*----------------------------------------------------------------------
blogPost-container
----------------------------------------------------------------------*/
.blogPost-container {
    display: flex;
}

@media screen and (max-width:1023px) {
	.blogPost-container {
		flex-direction: column; 
	}
}

/*----------------------------------------------------------------------
blogPost-content
----------------------------------------------------------------------*/
.blogPost-container .blogPost-content {
    width: 65%;
	padding-left: 42px;
}
.blogPost-container .blogPost-content .post-image {
    width: 100%;
    height: 530px;
  /*  object-fit: cover;*/
    border-radius: 18px;
    margin-bottom: 25px;
}
.blogPost-container .blogPost-content .post-title {
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    color: var(--color-text);
    margin-bottom: 25px;
}
.blogPost-container .blogPost-content .post-info {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--color-textLight);
    margin-bottom: 42px;
}

.blogPost-container .blogPost-content .post-info .post-info-item {
    display: inline-flex;
    align-items: center;
    margin-left: 32px;
}

.blogPost-container .blogPost-content .post-info .post-info-item:last-child {
	margin-left: 0;
}

.blogPost-container .blogPost-content .post-info .post-info-item .icon {
    margin-left: 5px;
}

.blogPost-container .blogPost-content .post-description {
    text-align: center;
    color: var(--color-textLight);
    margin-bottom: 32px;
    padding: 25px;
    line-height: 28px;
    background-color: #0148A01A;
    border: 2px solid var(--color-secondaryAlpha);
}

.blogPost-container .blogPost-content .post-headlines {
    display: inline-flex;
    flex-direction: column;
    padding: 25px;
    border:2px solid var(--color-borderLight);
    margin-bottom: 32px;
}

.blogPost-container .blogPost-content .post-headlines .post-headlines-title {
    font-weight: bold;
    margin-bottom: 25px;
}

.blogPost-container .blogPost-content .post-headlines .post-headlines-list {
    display: inline-flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
}

.blogPost-container .blogPost-content .post-headlines .post-headlines-list .item {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    color: var(--color-text);
}

.blogPost-container .blogPost-content .post-headlines .post-headlines-list .item:last-child {
    margin-bottom: 0;
}

.blogPost-container .blogPost-content .post-headlines .post-headlines-list .item a {
    color: var(--color-text);
}

.blogPost-container .blogPost-content .post-headlines .post-headlines-list .item::before {
    content: '\f104';
    font-family: 'Font Awesome 6 Pro';
    width: 18px;
    height: 18px;
    line-height: 18px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    background-color: var(--color-secondary);
    margin-left: 20px;
}

.blogPost-container .blogPost-content .post-content {
    
}

.blogPost-container .blogPost-content .post-content p {
    margin-bottom: 36px;
    line-height: 32px;
    font-size: 1.15rem;
}

.blogPost-container .blogPost-content .post-content h3 {
    font-size: 1.6rem;
    font-weight: bold;
}

.blogPost-container .blogPost-content .post-share {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    margin-bottom: 25px;
}

.blogPost-container .blogPost-content .post-share a {
    margin-left: 25px;
}

.blogPost-container .blogPost-content .post-share a img {
    width: 36px;
    height: 36px;
}

.blogPost-container .blogPost-content .post-newerOlder {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 56px;
}

.blogPost-container .blogPost-content .post-newerOlder .post-newerOlder-item {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
}

.blogPost-container .blogPost-content .post-newerOlder .post-newerOlder-item:last-child {
    align-items: flex-end;
}

.blogPost-container .blogPost-content .post-newerOlder .post-newerOlder-item .item-name {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    color: var(--color-secondary);
    font-size: 1rem;
}

.blogPost-container .blogPost-content .post-newerOlder .post-newerOlder-item .item-name .icon {
    width: 32px;
    height: 32px;
    line-height: 32px;
    margin-left: 15px;
    color: var(--color-secondary);
    font-size: 24px;
}

.blogPost-container .blogPost-content .post-newerOlder .post-newerOlder-item:last-child .item-name .icon {
    margin-right: 15px;
    margin-left: unset;
}

.blogPost-container .blogPost-content .post-newerOlder .post-newerOlder-item .item-title {
    color: var(--color-text);
    font-size: 1rem;
    font-weight: bold;
}

.blogPost-container .blogPost-content .post-opinions-wrapp {
    margin-top: 56px;
}

.blogPost-container .blogPost-content .post-opinions-wrapp .post-opinions-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--color-text);
}

.blogPost-container .blogPost-content .post-opinions-wrapp .post-opinions-description {
    color: var(--color-textLight);
    margin-bottom: 25px;
    text-align: center;
}

.blogPost-container .blogPost-content .post-opinions-wrapp .post-opinions-form {
    position: relative;
    margin-bottom: 10px;
}

.blogPost-container .blogPost-content .post-opinions-wrapp .post-opinions-form .form-inner {
    position: relative;
    border-radius: 30px;
    border:2px solid var(--color-secondary);
    padding: 32px;
    background-color: #fff;
    z-index: 2;
}

.blogPost-container .blogPost-content .post-opinions-wrapp .post-opinions-form .form-inner .form-footer {
    padding: 15px 0;
}

.blogPost-container .blogPost-content .post-opinions-wrapp .post-opinions-form .form-shape {
    position: absolute;
    width: 170px;
    height: 170px;
    left: -85px;
    top: -85px;
    object-fit: contain;
}

@media screen and (max-width:1023px) {
	.blogPost-container .blogPost-content {
		width: 100%;
		padding-left: unset;
	}
	.blogPost-container .blogPost-content .post-image {
		height: 430px;
	}
	.blogPost-container .blogPost-content .post-title {
		font-size: 1.7rem;
	}
	.blogPost-container .blogPost-content .post-opinions-wrapp .post-opinions-form .form-shape {
		display: none;
	}
}

/*----------------------------------------------------------------------
blogPost-side
----------------------------------------------------------------------*/
.blogPost-container .blogPost-side {
    width: 35%;
}

@media screen and (max-width:1023px) {
	.blogPost-container .blogPost-side {
		width: 100%;
	}
}

/*----------------------------------------------------------------------
side-title
----------------------------------------------------------------------*/
.side-title {
	display:flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	font-size: 1.1rem;
	font-weight: bold;
}
.side-title span {
	display: block;
	width:100%;
	margin: 0 10px;
	white-space: nowrap;
	text-align: center;
}
.side-title::before {
	content: '';
	height: 24px;
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url(../images/blogPost/title-shape-right.svg);
}
.side-title::after {
	content: '';
	height: 24px;
	width: 100%;	
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url(../images/blogPost/title-shape-left.svg);
}

/*----------------------------------------------------------------------
post-search-wrapp
----------------------------------------------------------------------*/
.blogPost-side .post-search-wrapp {
	display: flex;
	justify-content: space-between;
	margin-bottom: 25px;
}

.blogPost-side .post-search-wrapp input {
    flex: 1;
	border: 2px solid var(--color-secondaryAlpha);
	border-radius: 10px;
	height: 42px;
	outline: none;
	box-shadow: none;
	margin-left: 10px;
	padding: 0 5px;
}

/*----------------------------------------------------------------------
post-links-warapp
----------------------------------------------------------------------*/
.blogPost-side .post-links-wrapp {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 25px;
}

.blogPost-side .post-links-wrapp a {
	display: block;
	text-align:center;
	margin-bottom: 10px;
	color: var(--color-textLight);
}

/*----------------------------------------------------------------------
post-related-wrapp
----------------------------------------------------------------------*/
.blogPost-side  .post-related-wrapp {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 25px;
}

.blogPost-side  .post-related-wrapp .blog-item-related {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 80%;
	padding: 10px;
	margin-bottom: 10px;
}

.blogPost-side  .post-related-wrapp .blog-item-related img {
	border-radius: 8px;
	width: 100%;
	margin-bottom: 10px;
}

.blogPost-side  .post-related-wrapp .blog-item-related .item-title {
	font-size: 1rem;
	font-weight: unset;
	color: var(--color-textLight);
	margin-bottom: 10px;
}

.blogPost-side  .post-related-wrapp .blog-item-related .item-date {
	font-size: 0.8rem;
	font-weight: unset;
	color: var(--color-textLight);
}


