/* ===========================================
   IT Specialist Widget - Fully Responsive
   Version: 4.0 | All Device Breakpoints
=========================================== */

.it-specialist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 2rem;
  align-items: center;
}

/* Content Styles */
.it-specialist-content {
  padding: 1rem;
}

.it-specialist-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #00d2ff, #264065);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.it-specialist-description {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  color: #333;
}

/* Image Styles */
.it-specialist-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* =====================
   RESPONSIVE BREAKPOINTS
   ===================== */

/* Large Desktops (1440px+) */
@media (min-width: 1440px) {
  .it-specialist-grid {
    gap: 3rem;
  }
}

/* Standard Desktops (1024px - 1439px) */
@media (max-width: 1439px) and (min-width: 1024px) {
  .it-specialist-grid {
    gap: 2.5rem;
  }
}

/* Small Desktops/Tablets Landscape (768px - 1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
  .it-specialist-grid {
    gap: 2rem;
  }
  .it-specialist-content {
    padding: 0.75rem;
  }
}

/* Tablets Portrait (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
  .it-specialist-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .it-specialist-title {
    font-size: 1.6rem;
  }
}

/* Large Mobile (414px - 575px) */
@media (max-width: 575px) and (min-width: 414px) {
  .it-specialist-grid {
    gap: 1.25rem;
  }
  .it-specialist-title {
    font-size: 1.5rem;
  }
  .it-specialist-description {
    font-size: 0.95rem;
  }
}

/* Small Mobile (320px - 413px) */
@media (max-width: 413px) {
  .it-specialist-grid {
    gap: 1rem;
  }
  .it-specialist-title {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
  }
  .it-specialist-description {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

/* Ultra HD/4K Screens (2560px+) */
@media (min-width: 2560px) {
  .it-specialist-grid {
    max-width: 1600px;
    margin: 0 auto;
  }
  .it-specialist-title {
    font-size: 3rem;
  }
  .it-specialist-description {
    font-size: 1.4rem;
  }
}

/* Foldable Devices (Short screens) */
@media (max-height: 600px) and (min-width: 768px) {
  .it-specialist-grid {
    align-items: flex-start;
  }
  .it-specialist-title {
    font-size: 1.5rem;
  }
}

/* Landscape Orientation */
@media (orientation: landscape) and (max-width: 1024px) {
  .it-specialist-grid {
    grid-template-columns: 1fr 1fr;
  }
}