.analysis-section{
 margin : 50px 85px 100px;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1270px;
  margin: 0 auto 30px;
}
.browse-posts{
  display: flex;
  background: #FFDF00;
  border-radius: 100px;
  padding: 17.5px 13px;
  margin-top: 69px;
  text-decoration: none;
}
.browse-posts span{
  width: 160px;
  font-family: Archivo;
  font-weight: 600;
  font-size: 18px;
  line-height: normal;
  letter-spacing: 0;
  color: rgba(0, 0, 0, 1);
}
.browse-posts div{
  height: 20px;
  margin-left: 20px;
}
.section-header h2{
    font-family: Archivo;
    font-weight: 700;
    font-size: 62px;
    line-height: normal;
    letter-spacing: 0;
    text-align: left;
    vertical-align: middle;
    margin: 0 0 10px;
    color: #000000;
}
.section-header p {
    font-family: Archivo;
    font-weight: 400;
    font-size: 24px;
    line-height: normal;
    letter-spacing: 0;
    margin: 0;
    color: #000000;
}
.analysis-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
    justify-content: center;
  }
  
  .analysis-card {
    /* border: 1px solid rgba(152, 152, 152, 1); */
    border-radius: 30px;
    overflow: hidden;
    width: calc(50% - 35px);
    max-width: 600px;
    height:844px;
    display: flex;
    flex-direction: column;
    margin-bottom: 171px;
  }
  .analysis-card.reverse {
    margin-top:171px ;
    margin-bottom: 0;
    flex-direction: column-reverse;
  }
  
  .analysis-card img {
    width: 100%;
    height: 594px;
    display: block;
    object-fit: cover;
  }
  
  .card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px 20px;
    height: 250px;
    background-color: #EFEFEF;
  }
  
  .card-content small {
    width: 66px;
    display: inline-block;
    padding: 7px 10px !important;
    border-radius: 100px;
    font-family: Archivo;
    font-weight: 400;
    font-size: 12px;
    line-height: normal;
    letter-spacing: 0;
    color: rgba(0, 0, 0, 1);
    background-color: #f4f4f4;
  }
  
  .card-content h3 {
    font-family: Archivo;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0;
    margin: 0;
  }
  
  .card-content .date {
    font-family: Archivo;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    letter-spacing: 0;
    color: rgba(0, 0, 0, 0.4);
    margin: 0;
  }
  .card-content a {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #FFDF00;
	color: #191919;
	border-radius: 80px;
	padding: 17.5px 20px;
	padding-left: 20px !important;
	text-decoration: none;
	text-align: center;
	width: max-content;
}
.card-content a span{
    width: 89px;
	font-family: Archivo;
	font-weight: 500;
	font-size: 18px;
	line-height: normal;
    letter-spacing: 0;
	text-transform: none;
}
.card-content a div{
	width: 19px;
	height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
	mask-size: 100% 100%;
}
@media (max-width: 1024px) {
  .analysis-section{
    margin : 30px auto;
    width: calc(100% - 20px);
  }
  /* .analysis-section{
    margin-top: 100px;
  } */
  .browse-posts{
    display: none;
  }
  .section-header {
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
  }
  .section-header h2{
    font-size: 35px;
    text-align: center;
    margin-bottom: 20px;
  }
  .section-header p{
    font-size: 15px;
    margin: 0 25px;
    text-align: center;
  }
  .analysis-cards {
    gap: 31px;
  }
  .analysis-card {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0;
    border: 1px solid #989898;
    border-radius: 20px;
  }
  .analysis-card.reverse{
    flex-direction: column;
    margin: 0;
  }
  .card-content{
    padding-left: 15px;
  }
  .analysis-card img{
    height: 300px;
  }
  .card-content{
    background-color: #FFFFFF;
    height: 272px;
  }
}
@media (min-width: 1441px) {
  .section-header {
    justify-content: space-around;
  }
}