/* Legal Insights Section Content */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.insight-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #e0e0e0;
}

.insight-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-color: #1e6642;
}

.insight-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.insight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.insight-card:hover .insight-image img {
  transform: scale(1.05);
}

.insight-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.insight-category {
  display: inline-block;
  background-color: #1a4d80;
  color: white;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.insight-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a4d80;
  margin-bottom: 10px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.insight-card:hover .insight-title {
  color: #1e6642;
}

.insight-excerpt {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
  flex-grow: 1;
}

.insight-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #777;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.insight-date {
  display: flex;
  align-items: center;
  gap: 5px;
}

.insight-date i {
  color: #1e6642;
}

.insight-read-time {
  display: flex;
  align-items: center;
  gap: 5px;
}

.insight-read-time i {
  color: #1e6642;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #1a4d80;
  font-weight: 600;
  font-size: 14px;
  margin-top: 15px;
  transition: color 0.3s ease;
}

.read-more i {
  transition: transform 0.3s ease;
}

.read-more:hover {
  color: #1e6642;
}

.read-more:hover i {
  transform: translateX(3px);
}

.newsletter-signup {
  margin-top: 60px;
  background-color: rgba(26, 77, 128, 0.05);
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(26, 77, 128, 0.1);
}

.newsletter-title {
  font-size: 24px;
  color: #1a4d80;
  margin-bottom: 15px;
}

.newsletter-description {
  color: #555;
  margin-bottom: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 10px;
}

.newsletter-input {
  flex-grow: 1;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}

.newsletter-submit {
  background-color: #1e6642;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-submit:hover {
  background-color: #1a4d80;
}

.view-all-insights {
  text-align: center;
  margin-top: 40px;
}

.view-all-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  border: 2px solid #1a4d80;
  color: #1a4d80;
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.view-all-button:hover {
  background-color: #1a4d80;
  color: white;
}

/* Featured Insight */
.featured-insight {
  margin-bottom: 50px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #e0e0e0;
}

.featured-insight-image {
  height: 100%;
  min-height: 350px;
}

.featured-insight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-insight-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-label {
  display: inline-block;
  background-color: #1e6642;
  color: white;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 15px;
}

.featured-insight-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a4d80;
  margin-bottom: 15px;
  line-height: 1.4;
}

.featured-insight-excerpt {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.featured-insight-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #777;
  margin-top: auto;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .featured-insight {
    grid-template-columns: 1fr;
  }
  
  .featured-insight-image {
    min-height: 250px;
  }
}

@media (max-width: 768px) {
  .insights-grid {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-input,
  .newsletter-submit {
    width: 100%;
  }
}
