/* expert card */
.expert-card {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 1rem;
}
.expert-card__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 1rem;
	background: #f2f3f5;
	padding-top: 0.5rem;
	border-radius: 0.5rem;
}
.expert-card .expert-card__photo img {
	border-radius: 50%;
	max-width: 100px;
}
.expert-card .expert-card__info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap: 0.5rem;
}
.expert-card .expert-card__info .expert-card__name {
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.5rem;
}
.expert-card .expert-card__info .expert-card__position {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.25rem;
	letter-spacing: 1%;
}
.expert-card .expert-card__info .expert-card__name, .expert-card .expert-card__info .expert-card__position {
	color: #0F0F0F;
}
.expert-card .expert-card__subtxt {
	display: block;
	font-size: 0.5rem;
	line-height: 0.875rem;
	padding-top: 0.5rem;
}
/* blog detail */
.blog-detail_blck {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem !important;
}
.blog-detail_blck .blog-detail__date {
  margin-bottom: 0rem !important;
}
.blog-detail_blck .blog-detail__date, .blog-detail_blck .blog-detail__views, .blog-detail_blck .blog-detail__time {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.5rem;
}
.blog-detail_blck .blog-detail__date span, .blog-detail_blck .blog-detail__views span, .blog-detail_blck .blog-detail__time span {
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0.16px;
}
/* 2026/06/22 - faq block */
.faq-accordion {
	padding-top: 90px;
}
.faq-container {
	margin: 0 auto;
	width: 1130px;
	padding-left: 70px;
  padding-right: 70px;
}
@media (max-width: 575.98px) {
	.faq-accordion {
		padding-top: 40px;
	}
  .faq-container {
		width: calc(100% - 30px);
		margin: 0 15px;
		padding: 0px;
  }
}
.faq-item {
	margin-bottom: 1rem;
	overflow: hidden;
}
.faq-question {
	font-weight: 600;
	font-size: 18px;
	padding: 12px 24px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	list-style: none;
	background: #e9ebee;
	transition: background 0.2s;
	border-radius: 20px;
}
.faq-question::-webkit-details-marker {
	display: none;
}
.faq-question::after {
	content: '+';
	color: #989898;
	font-size: 1.6em;
	line-height: 1;
	font-weight: 300;
	transition: transform 0.2s;
}
details[open] .faq-question {
	background: #e9ebee;
}
details[open] .faq-question::after {
	transform: rotateZ(45deg);
	color: #000;
}
.faq-answer {
	font-size: 18px;
	padding: 12px 24px;
	line-height: 1.6;
	color: #333;
	background: #fff;
	margin-top: 12px;
	border-radius: 20px;
}
