
/* --- Section title --- */
.full_images.inner-container h2 {
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 800;
  color: #111217;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0;
  position: relative;
}

.full_images.inner-container h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  margin: 12px auto 0;
  background-color: #ff3c3c; /* Accent underline */
  border-radius: 2px;
}

/* --- Logo grid --- */
.full_images.inner-container .image-with-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(8px, 1.2vw, 14px);
  border-radius: 12px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  min-width: 120px;
  min-height: 60px;
}

.image-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 2vw, 32px);
  justify-content: center;
}

/* TITLE ROW */
.title-container {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(16px, 3vw, 28px);
}
.title-line {
  width: 38px;
  height: 3px;
  border-radius: 3px;
  background: #ff3c3c;            /* accent */
  flex: 0 0 auto;
  translate: 0 3px;
}
.title {
  margin: 0;
  font-weight: 800;
  color: #111217;
  font-size: clamp(24px, 3.6vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
