/**
 * Integration Template CSS
 * Plugin-independent styles required by integration template + connectors tabs markup
 */

/* --------------------------------------------------
   Root Wrapper
-------------------------------------------------- */

.integration-template {}

/* --------------------------------------------------
   Header Logos
-------------------------------------------------- */

.integrations-header-logos {
  display: flex;
}

.integrations-header-logos .header-logo {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.integrations-header-logos .header-logo img {
  display: block;
  max-width: 400px;
  margin: 50px 0;
}

.integrations-header-logos .left-logo {
  background: linear-gradient(105.7deg, #E50E5C 2.81%, #7A105D 127.84%);
}

.integrations-header-logos .right-logo {
  background: linear-gradient(107.56deg, #25C0E6 0%, #027C99 100%);
}

/* --------------------------------------------------
   Body / Hero Section
-------------------------------------------------- */

.integrations-body-row {
  text-align: center;
  position: relative;
}

.integrations-body-row h1 {
  font-size: 35px;
}

/* --------------------------------------------------
   Center Icon Circle
-------------------------------------------------- */

.integrations-body-row .striim-icon-color-cirle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: #fff;
  background-image: url(https://media.striim.com/wp-content/uploads/2026/01/30161639/Striim-Logo-Recolored-icon.png);
  background-size: 50% auto;
  background-repeat: no-repeat;
  background-position: center;
  margin: auto;
  position: relative;
  top: -70px;
  margin-bottom: -70px;
  box-shadow: 0 0 15px 5px rgba(0,0,0,0.1);
}

/* --------------------------------------------------
   Why Striim Section
-------------------------------------------------- */

.why-striim {
  background-color: #f9f9fa;
  padding-bottom: 50px;
  color: #333;
}

.why-striim .why-intro {
  padding: 50px 0 25px;
}

.why-striim h2 {
  color: #000 !important;
  margin-top: 0;
  font-size: 32px !important;
  font-weight: bold;
  line-height: 34px;
}

.why-row {
  justify-content: space-evenly;
}

.why-item-col {
  padding: 15px;
}

.why-item {
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding: 40px;
  font-size: 16px;
  border-radius: 20px;
  line-height: normal;
  box-shadow: 0 0 15px 5px rgba(0,0,0,0.1);
}

.why-item h3 {
  margin-top: 0;
  font-size: 30px !important;
  font-weight: bold;
  line-height: 34px;
}

/* --------------------------------------------------
   Connectors Grid (Referenced by Elementor Shortcode HTML)
-------------------------------------------------- */

.connectors-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 18px;
}

a.connector-item {
  display: block;
  text-decoration: none;
  color: inherit;
}

a.connector-item:focus {
  outline: none;
}

a.connector-item:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
  border-radius: 16px;
}

.connector-bg {
  height: 100%;
  border-radius: 16px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 0 15px 5px rgba(0,0,0,0.08);
}

.connector-img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
a.connector-item .connectorname { color:#fff; }
.connector-img img {
  display: block;
  max-width: 120px;
  width: 100%;
  height: auto;
}

.connector-item .connector-name {
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

/* Optional hover polish (safe) */
a.connector-item:hover .connector-bg {
  transform: translateY(-2px);
  transition: transform .15s ease;
}

/* --------------------------------------------------
   Responsive
-------------------------------------------------- */

@media screen and (max-width: 960px) {
  .integrations-header-logos .header-logo img {
    max-width: 200px;
  }

  .connectors-container {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 14px;
  }

  .connector-img img {
    max-width: 110px;
  }
}
