/* Breadcrumb Title Content Custom Styles */

/* Main wrapper */
/* Subtitle */
.main-subtitle {
  font-size: 1.2em;
  color: #ffffff;
  margin-bottom: 1em;
  line-height: 120%;
}

.main-title-section-container .container{
    min-height: 80px;
    margin-bottom: 60px;
}

/* Advantages Row */
.advantages-list {
  display: flex;
  background-color: rgba(255, 255, 255, 0.17);
  justify-content: center;
  align-items: stretch;
  width: 100%;
  margin: 0 auto;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  padding-left: 0;
}

.advantages-list li {
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 24px;
  color: white;
  line-height: 110%;
  gap: 8px;
  white-space: nowrap;
}

.advantages-list li:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.17);
}

.advantages-list .advantage-icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 0.5em;
}

.advantages-list li:last-child {
  padding-bottom: 16px !important;
}

/* Expert Card */
.expert-card {
  display: flex;
  align-items: flex-start;
  margin-top: 2em;
  background-color: #ffffff;
  border-radius: 8px;
  padding-bottom: 1.5em;
  max-width: 420px;
  margin: 0 auto;
}
.expert-image img {
  width: 100px;
  height: 128px;
    border-radius: var(--wdtRadius_2X);
	object-fit: cover;
}
.expert-info {
  flex: 1;
  text-align: left;
  margin-left: 1.5em;
}
.expert-name {
  font-weight: bold;
  font-size: 20px;
  line-height: 110%;
  margin-bottom: 0.5rem;
}
body .expert-name a{
  color: var(--e-global-color-text);
}
body .expert-name a:hover{
  color: var(--wdtPrimaryColor);
}

.expert-image:hover ~ .expert-info .expert-name a,
.expert-name a:hover {
  color: var(--wdtPrimaryColor);
}
.expert-position {
  font-size: 12px;
  color: #54304d99;
  line-height: 110%;
  margin-bottom: 0.5rem;
}
.expert-description {
  font-size: 12px;
  margin-bottom: 0.5em;
  line-height: 110%;
  color: var(--e-global-color-primary);
}
body .expert-phone a {
  color: var(--wdtPrimaryColor);
  font-weight: bold;
}
.expert-info-base {
  display: flex;
  flex-direction: column;
}
.expert-phone-link {
  display: inline-block;

  font-size: 12px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  margin-top: 0.5em;
}

.expert-cta {
  text-align: center;
  margin-top: 1em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5em;
	margin-bottom: 1.5rem;
}
.expert-cta-btn {
  display: inline-block;
  background: #1a7f5a;
  color: #fff;
  padding: 0.75em 2em;
  border-radius: 6px;
  font-size: 1em;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(26, 127, 90, 0.1);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.expert-cta-btn:hover,
.expert-cta-btn:focus {
  background: #15914d;
  color: #fff;
  box-shadow: 0 4px 16px rgba(26, 127, 90, 0.18);
  text-decoration: none;
}

.expert-cta.mobile{
	display: none;
}

.expert-card.mobile{
	display: none;
}

@media (max-width: 1024px) {
  .advantages-list {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
	margin-top: 30px;
	margin-bottom: 20px;
	max-width: 420px;
	border-radius: 10px;
  }
  .advantages-list li {
    flex: 1 1 100%;
    min-width: 100%;
    max-width: 100%;
    margin-bottom: 0;
	flex-direction: row;
	justify-content: flex-start;
	  padding: 12px 20px;
  }
  .main-subtitle {
    font-size: 1rem;
	  margin-bottom: 36px;
  }
	
	.advantages-list li:last-child {
	  padding-bottom: 12px !important;
	}
	
	.advantages-list li:not(:last-child){
		border: none;
	}
	.expert-cta{
		display: none;
	}
	
	.expert-cta.mobile{
		display: block;
	}
	
	.expert-card{
		display: none;
	}
	
	.expert-card.mobile{
		display: flex;
	}
}

@media (max-width: 600px) {
  .expert-info {
  	margin-left: 12px;
	}
	
	.expert-card{
		padding: 1rem;
	}
	
	.expert-image img{
		width: 120px;
		height: 128px;
	}
}

@media (max-width: 420px) {
	.expert-image img{
		height: 170px;
	}
	
	  .advantages-list {
		border-radius: 0;
	}
}

body .main-title-section h1 {
  color: white;
}

.main-title-section-wrapper {
  position: relative;
}

.main-title-section-container {
  position: relative;
  z-index: 2;
}

.main-title-section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.main-title-section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
/*   background: #33172dcc; */
  z-index: 1;
  pointer-events: none;
}

.expert-socials{
	display: flex;
	gap: 6px;
}

.expert-social-icon svg{
	font-size: 24px;
}

@media (min-width: 1024px) and (max-width:1220px){
	.advantages-list li {
		font-size: 14px;
		gap: 6px;
	}
}

body .meta-right-content .single-entry-date{
	display: block !important;
}