.hero {
  background-image: url(/wp-content/uploads/2025/10/custom-boxes-and-packaging-hero-banner.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-bg {
  padding: 150px 0;
}
/* .hero p {
  color: white;
}
.hero h1 {
  color: white;
} */
.list-item {
  display: block;
  position: relative;
}
.list-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
}
.list-item .title {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #ffffffb5;
  padding: 5px 10px;
  border-radius: var(--radius);
  font-weight: 500;
  color: var(--title);
  font-family: var(--family-s);
}
.feature-box {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-direction: column;
  text-align: center;
}
.feature-box .icon-image {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-box .icon-title {
	font-size: 18px;
    font-weight: 500;
	color:#333;
}
.feature-box img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

.how-it-works img {
  height: 300px;
  width: 420px;
  object-fit: cover;
  border-radius: var(--radius);
}

.hiw-content-wrap h3 {
  margin: 8px 0 16px;
  padding: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}
.hiw-content-wrap p {
  margin: 0;
  padding: 0;
}
.hiw-content-wrap.right {
  padding-left: 24px;
  border-left: 3px solid var(--primary);
  max-width: 320px;
  margin-right: auto;
  box-sizing: border-box;
}

.hiw-content-wrap.left {
  padding-right: 24px;
  border-right: 3px solid var(--primary);
  max-width: 320px;
  margin-left: auto;
  box-sizing: border-box;
}

.how-it-works-image {
  position: relative;
}
.how-it-works-image:before {
  content: "";
  position: absolute;
  top: -60px;
  left: 30px;
  font-size: 80px;
  font-family:var(--family-m);
  color: #f77e0b;
  font-weight: 500;
}

.one.how-it-works-image:before {
  content: "01";
}
.two.how-it-works-image:before {
  content: "02";
}
.three.how-it-works-image:before {
  content: "03";
}
.faq-heading {
    font-weight: 500;
    font-size: 20px;
	margin-bottom:15px;
}
.faq-item p{
    margin: 0;
	line-height:1.4;
}
.blog-container{
    padding: 40px;
    border-radius: var(--radius);
    background:#f5f5f5 ;
    margin: 10px;
}
.featured-posts-grid{
    display: grid;
    grid-template-columns: repeat(4, calc(25% - 15px));
    gap: 20px;
}
.featured-posts-grid article img{
    width:100%;
    border-radius: var(--radius);
}
.featured-post-item{
    display: flex;
    flex-direction: column;
    
}
.featured-posts-grid .post-title{
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
    text-align: left;
}
.featured-posts-grid .post-title a{
    color: var(--title);
}
.post-content{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top:auto;
    padding-top:15px;
}
.post-content .post-category a.category-link{
    background: #F57C25;
    color: white;
    font-size: 12px;
    padding: 5px 8px;
    border-radius: var(--radius);
    font-weight: bold;
    text-transform: uppercase;
}.post-content a.read-more{
    color: var(--title);
    font-size:  13px;
}
@media(max-width:1080px){
	.featured-posts-grid{
		grid-template-columns: repeat(2, calc(50% - 10px));
	}
}

@media(max-width: 768px) {
    .how-it-works .grid-2{
        gap:0px
    }
  .hiw-content-wrap.right,
  .hiw-content-wrap.left {
    border: none;
    padding: 0;
    max-width: 100%;
    margin: 0;
    border:0 !important;
  }
  .how-it-works-image:before {
    top: -40px;
    left: 10px;
    font-size: 60px;
  }
  .how-it-works-image img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
  }
}
@media(max-width:450px){
	.blog-container{
		padding: 20px;}
	.featured-posts-grid{
		grid-template-columns: 1fr;
	}
}