/* Practice Areas Card Styles */

/* Container arranged as a card with left content (image, title, description) and right sidebar (links) */
.content_fullwidth .container {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  background: #ffffff;
  border: 1px solid #e6e8eb;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}

/* Left side (main content) */
.content_left {
  flex: 1 1 64%;
  min-width: 0;
}

.image_frame {
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #e6e8eb;
}

.image_frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.blog_postcontent h3 {
  font-size: 28px;
  line-height: 1.3;
  margin: 16px 0 12px;
  color: #1f2d3d;
}

.blog_postcontent p,
.blog_postcontent .margin_top1 + * {
  font-size: 16px;
  line-height: 1.7;
  color: #3a4a5a;
}

/* Divider tweaks inside card */
.divider_line9.lessm {
  margin-top: 24px;
  margin-bottom: 0;
}

/* Right sidebar (Practice Areas list) */
.right_sidebar {
  flex: 1 1 36%;
}

.sidebar_widget {
  background: #f9fafb;
  border: 1px solid #e6e8eb;
  border-radius: 10px;
  padding: 18px 20px;
}

.sidebar_title h4 {
  font-size: 18px;
  color: #1f2d3d;
  margin: 0 0 12px;
}

.arrows_list1 {
  list-style: none;
  margin: 0;
  padding: 0;
}

.arrows_list1 li {
  margin: 8px 0;
}

.arrows_list1 a {
  display: block;
  padding: 8px 10px;
  border-radius: 6px;
  color: #1f2d3d;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.arrows_list1 a:hover {
  background: #eef2f7;
  color: #0f172a;
}

/* Responsive behavior */
@media (max-width: 992px) {
  .content_fullwidth .container {
    flex-direction: column;
    padding: 16px;
  }
  .right_sidebar {
    width: 100%;
  }
}