/*
Theme Name: tvrepair Child
Theme URI: https://underscores.me/
Author: Your Name
Author URI: https://yourwebsite.com
Description: Child theme for tvrepair
Template: tvrepair
Version: 1.0.0
Text Domain: tvrepair-child
*/

/* Custom CSS yahan likho */



.blog-layout {
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 30px;
  padding: 40px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.blog-card {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.blog-card img {
  width: 100%;
}

.sidebar {
  background: #f5f5f5;
  padding: 20px;
}

#load-more {
  padding: 10px 20px;
  margin-top: 20px;
}

@media(max-width:768px){
  .blog-layout { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}

  .faq-section {
    background: #f5f5f5;
    padding: 50px 20px;
/* 	margin-left: 200px!important; */
  }

  .faq-container {
    max-width: 800px;
    margin: auto;
    background: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }

  .faq-title {
    font-size: 24px;
    font-weight: 700;
    color: #4a2c2a;
    margin-bottom: 20px;
  }

  .faq-item {
    border-bottom: 1px solid #e5e5e5;
  }

  .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 0;
    font-size: 15px;
    font-weight: 600;
    color: #555;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }

  .faq-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #777;
    font-size: 14px;
  }

  .faq-answer p {
    margin: 0 0 15px;
  }

  .faq-item.active .faq-answer {
    max-height: 200px;
  }

  .faq-item.active .faq-icon {
    transform: rotate(45deg);
  }

  .faq-question:focus,
  .faq-question:active {
    outline: none;
    box-shadow: none;
  }

  /* Mobile */
  @media (max-width: 600px) {
    .faq-container {
      padding: 20px;
    }

    .faq-title {
      font-size: 20px;
    }
  }
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 10px 0;
    font-size: 15px;
    font-weight: 600;
    color: #555;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.faq-question .faq-icon {
    margin-left: auto;  /* 🔥 This pushes icon to extreme right */
}
.faq-question {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.faq-question {
    line-height: 1.4;
}
.faq-item p {
    margin: 0;
}

.faq-item p:empty {
    display: none!important;
}
p:empty {
  display: none;
  margin: 0;
}
.wpcf7-form-control {
  width: 100% !important;
  max-width: 100%;
}