/* Services sidebar — fixed left panel */
.c-services-sidebar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  background: #222;
  color: #ccc;
  padding: 14px 16px;
  border-radius: 0 8px 8px 0;
  font-size: 11px;
  line-height: 1.5;
  max-width: 170px;
  box-shadow: 2px 2px 12px rgba(0,0,0,0.15);
}
.c-services-sidebar__title {
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  margin: 0 0 8px;
}
.c-services-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}
.c-services-sidebar ul li {
  margin-bottom: 4px;
}
.c-services-sidebar ul li a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s;
}
.c-services-sidebar ul li a:hover {
  color: #57cfb0;
}
.c-services-sidebar__cta {
  display: block;
  text-align: center;
  background: #57cfb0;
  color: #222;
  font-weight: 700;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}
.c-services-sidebar__cta:hover {
  background: #45b89a;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 1200px) {
  .c-services-sidebar {
    display: none;
  }
}

/* Latest blog articles on homepage */
.c-latest-articles {
  padding: 40px 0 20px;
}
.c-latest-articles h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
}
.c-latest-articles__item {
  margin-bottom: 30px;
}
.c-latest-articles__item a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.c-latest-articles__item a:hover h3 {
  color: #57cfb0;
}
img.c-latest-articles__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 12px;
  transition: opacity 0.2s;
  display: block;
}
.c-latest-articles__img--placeholder {
  width: 100%;
  height: 180px;
  background: #e9ecef;
  border-radius: 6px;
  margin-bottom: 12px;
}
.c-latest-articles__item a:hover .c-latest-articles__img {
  opacity: 0.85;
}
.c-latest-articles__item h3 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  transition: color 0.2s;
}
