/*!
Theme Name:   Solidarity Capital
Author:       Sproutbox
Author URI:   https://www.sproutbox.co
Template:     hello-elementor
Version:      1.0.0
*/

:root {
  --text-color: #131E3D;
  --primary-color: #202E4F;
}

/* Base body styling */
body {
  color: var(--text-color, #131E3D);
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: 1.6;
}

/* Header typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-color, #131E3D);
  font-family: 'Roboto Slab', serif;
  font-style: normal;
  font-weight: 400;
}

.elementor-element-b9319e3 a {
  color: #ffffff;
}

.elementor-element-5b496ba {
    position: relative;
}

.elementor-element-5b496ba:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(32, 46, 79, 0.00) 27%, rgba(19, 30, 61, 0.50) 83%);
    z-index: 1;
    pointer-events: none;
}

.elementor-element-5b496ba > .e-con-inner {
    position: relative;
    z-index: 2;
}

.ff-el-form-check-label span {
    font-size: 0.9rem;
}

.et_pb_text_inner a {
    color: #131E3D !important;
	text-decoration: underline !important;
}

.post-title a {
	color: #131E3D !important;
}

#button svg {
   font-size: 0.5rem;
}

#readmore svg {
   font-size: 0.4rem;
}

.elementor-element-29239f4 .elementor-widget-container p,
.elementor-element-29239f4 .elementor-widget-container p a {
    color: white !important;
}

.post-author-name {
    color: var(--Text-Color, #131E3D);
    font-family: Inter;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 33px */
}

.post-meta-details {
    color: var(--Text-Color, #131E3D);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%; /* 17.6px */
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.post-meta-details a {
    color: var(--Text-Color, #131E3D);
    text-decoration: none;
}

.post-meta-details .separator {
    margin: 0 5px;
    color: #888;
}

/* Main container for news items */
.recent-news-container {
    display: flex;
    flex-wrap: nowrap; /* Prevent wrapping to ensure single row */
    margin: 30px 0;
    overflow-x: auto; /* Allow horizontal scrolling on small screens */
}

/* Individual news item */
.news-item {
    flex: 1 1 calc(33.333% - 14px); /* Slightly adjust to account for gap */
    min-width: 300px;
    max-width: 33.333%;
    padding: 0px;
	margin: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
}

/* News image */
.news-image-container {
    width: 100%;
    height: 200px; 
    overflow: hidden;
    position: relative;
    border-radius: 10px 10px 0 0;
}

.news-image {
    width: 100%;
    height: 200px !important;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* News content container */
.news-content-container {
    padding: 20px;
    flex-grow: 1; /* Allow content to fill available space */
    display: flex;
    flex-direction: column;
}

/* News item title styling */
.news-title {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin: 0 0 10px;
}

/* Date with subtitle styling */
.news-subtitle-line {
    font-family: Inter;
	font-size: 0.9rem;
	font-style: normal;
	font-weight: 400;
	line-height: 110%; /* 17.6px */
	letter-spacing: 0.8px;
	text-transform: uppercase;
	color: var(--Main-Dark, #131E3D);
	padding-bottom: 20px;
}

/* News content */
.news-content {
	color: var(--Main-Dark, #131E3D);
	font-family: Inter;
	font-size: 0.9rem;
	font-style: normal;
	font-weight: 400;
	flex-grow: 1; /* Make content expand to push the "See More" link to bottom */
}

/* Read More link */
.btn-see-more, .news-see-more a {
    display: inline-block;
    color: #202E4F;
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: auto; /* Push to bottom */
	font-family: Inter;
	font-style: normal;
	font-weight: 400;
	line-height: 110%; /* 17.6px */
	letter-spacing: 0.8px;
	text-transform: uppercase;
}

/* Hover effect for links */
.btn-see-more:hover, .news-see-more a:hover {
    text-decoration: underline;
}

/* News Cards Layout Styles */
.news-cards-container {
    margin: 20px 0;
}

.news-card {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
    gap: 3rem;
}

.news-card-title {
	color: #000;
    font-family: 'Roboto Slab', serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.news-card-title a {
	color: #000;
}

.news-card-title a:hover {
	color: #000;
}

.news-card-date {
	color: #000;
	font-family: Inter;
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: 110%; /* 17.6px */
	letter-spacing: 0.8px;
	text-transform: uppercase;
	padding-bottom: 1rem;
}

body .news-cards-container .news-card .news-card-image {
    width: 500px !important;
    height: 400px !important;
    overflow: hidden !important;
}

body .news-cards-container .news-card .news-card-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 10px !important;
}

.news-card-content {
    flex: 0 0 60%;
	color: #000;
	font-family: Inter;
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 24px */
}

.news-network-tag {
	color: #000;
	font-family: Inter;
	font-size: 1rem;
	font-style: normal;
	font-weight: 500;
	line-height: 110%;
	letter-spacing: 1.1px;
	text-transform: uppercase;
	padding-top: 3rem;
	padding-bottom: 1rem;
}

.news-card-excerpt {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #333;
	padding-bottom: 1rem;
}

.news-read-more a {
	color: var(--Primary-Color, #202E4F);
	text-align: right;
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 110%; /* 17.6px */
	letter-spacing: 0.8px;
	text-transform: uppercase;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .news-card {
        flex-direction: column;
    }
	
	body .news-cards-container .news-card .news-card-image {
        width: 100% !important;
    }
    
    .news-card-content {
        flex: 0 0 100%;
    }
}

/* Team Grid Styling */
.team-member-title,
.news-date,
.team-bio-link,
.news-see-more .btn-see-more {
  color: var(--primary-color, #202E4F);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.team-member-name {
  font-family: 'Roboto Slab', serif;
  font-weight: 400;
  color: var(--text-color, #131E3D);
}

.team-member-title {
  color: var(--primary-color, #202E4F);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-bio-link {
  color: var(--primary-color, #202E4F);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
  justify-content: center;
}

.team-archive-item {
  width: 100%;
  max-width: 340px;
  text-align: left;
  padding: 15px;
  box-sizing: border-box;
}

.team-member-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.team-member-photo {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.team-member-photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.team-member-name {
  font-size: 22px;
  font-weight: 600;
  margin: 15px 0 5px;
  color: #333;
}

.team-member-title {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  color: #555;
  margin-bottom: 15px;
}

.team-bio-link {
  display: inline-block;
  text-transform: uppercase;
  color: #555;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
}

.team-bio-link:after {
  content: "›";
  display: inline-block;
  margin-left: 5px;
  font-size: 18px;
  line-height: 1;
  position: relative;
  top: 1px;
}

/* Single Team Member Shortcode Styling */
.single-team-title {
    color: var(--Text-Color, #131E3D);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 22px */
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.single-team-highlight {
    color: var(--Text-Color, #131E3D);
    font-family: Inter;
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    line-height: 150%; /* 30px */
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 3px solid var(--primary-color, #202E4F);
}

.single-team-excerpt {
    color: var(--Text-Color, #131E3D);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 30px */
	padding-top: 20px;
	padding-bottom: 20px;
}

.single-team-bio {
    color: var(--Text-Color, #131E3D);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 30px */
}

.single-team-bio p {
    margin-bottom: 20px;
}

/* Insights */
.alternating-posts-container {
	margin: 40px 0;
}

/* Fix container structure */
.alternating-post {
    display: flex;
    margin-bottom: 40px;
    align-items: stretch; /* Change from center to stretch for full height */
    border-radius: 12px;
    background-color: #ffffff;
    border: 1px solid #F4F3F2;
    overflow: hidden;
    padding: 0;
    min-height: 300px; /* Set a minimum height */
}

/* Make image container take full height */
.alternating-post .post-image {
    width: 50%;
    min-height: 100%;
    position: relative;
}

/* Make image fill container completely */
.alternating-post .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
}

/* Fix content area */
.alternating-post .post-content {
    width: 50%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.alternating-post .post-title {
	color: #000;
  	font-family: 'Roboto Slab', serif;
	font-size: 2rem;
	font-style: normal;
	font-weight: 400;
	line-height: 120%; /* 38.4px */
}

.alternating-post .post-meta {
	margin-bottom: 15px;
	color: #777;
}

.alternating-post .post-date {
	color: #000;
	font-family: Inter;
	font-size: 0.9rem;
	font-style: normal;
	font-weight: 400;
	line-height: 110%; /* 17.6px */
	letter-spacing: 0.8px;
	text-transform: uppercase;
}

.post-category {
	color: #000;
	font-family: Inter;
	font-size: 0.9rem;
	font-style: normal;
	font-weight: 400;
	line-height: 110%; /* 17.6px */
	letter-spacing: 0.8px;
	text-transform: uppercase;
}

.alternating-post .post-excerpt {
	margin-bottom: 0.9rem;
	color: #000;
	font-family: Inter;
	font-size: 0.9rem;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 24px */
}

.alternating-post .read-more {
    display: inline-flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #131E3D;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
}

.alternating-post .read-more:after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 5px;
	margin-top: 2px;
    background-image: url('https://solidcap.wpenginepowered.com/wp-content/uploads/bluearrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


.alternating-post .read-more:hover {
    color: #3A4B7C;
    background-color: transparent;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.alternating-post {
		flex-direction: column !important;
	}

	.alternating-post .post-image,
	.alternating-post .post-content {
		width: 100%;
	}

	.alternating-post .post-content {
		padding: 20px 0;
	}
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .team-archive-item {
    max-width: 100%;
  }
}

/* Media queries */
@media only screen and (max-width: 768px) {
  /* do something awesome */ }

/*# sourceMappingURL=style.css.map */
