/* === Interruptor 1 Styles === */
.ni-interruptor-1 {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    max-width: 700px;
  }
  
  .ni-interruptor-1 .ni-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 24px;
    color: #007dbc;
    margin-bottom: 10px;
  }
  
  .ni-interruptor-1 .ni-desc {
    font-size: 18px;
    color: #007dbc;
    margin-bottom: 15px;
    line-height: 24px;
  }
  
  .ni-interruptor-1 .ni-btn {
    display: inline-block;
    background-color: #007dbc;
    color: #ffffff;
    font-weight: bold;
    padding: 8px 20px;
    text-decoration: none !important;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }
  
  .ni-interruptor-1 .ni-btn:hover {
    background-color: #005f99;
    color: #ffffff !important;
  }
  
  .ni-btn {
    text-decoration: none !important;
  }
  
  
  /* === Interruptor 2 Styles === */
  
  .ni-interruptor-2-wrapper {
    max-width: 370px;
    margin: 30px 0;
  }
  
  /* Float wrappers */
  .ni-interruptor-2-float-right {
    float: right;
    margin: 0 0 20px 20px;
    width: 360px;
    max-width: 100%;
    clear: none;
  }
  
  .ni-interruptor-2-float-left {
    float: left;
    margin: 0 20px 20px 0;
    width: 360px;
    max-width: 100%;
    clear: none;
  }
  
  /* Card base */
  .ni-interruptor-2 {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    padding: 20px;
    overflow: hidden;
    box-sizing: border-box;
  }
  
  /* Inner flex container */
  .ni-interruptor-2-inner {
    display: flex;
    gap: 16px;
    align-items: stretch;
    flex-direction: row; /* Default: border on left */
  }
  
  /* Float-left: switch border to right */
  .ni-interruptor-2-float-left .ni-interruptor-2-inner {
    flex-direction: row-reverse;
  }
  
  /* Border bar */
  .ni-interruptor-2-border {
    width: 2px;
    background-color: #007dbc;
    border-radius: 2px;
  }
  
  /* Content container */
  .ni-interruptor-2-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
  }
  
  /* Label */
  .ni-interruptor-2-label {
    background-color: #007dbc;
    color: #ffffff;
    padding: 6px 12px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 4px;
    display: inline-block;
    font-style: italic;
  }
  
  /* Card anchor */
  .ni-interruptor-2-card {
    display: block;
    text-decoration: none !important;
  }
  
  /* Image */
  .ni-interruptor-2-img {
    width: 100%;
    max-height: 150px;
    object-fit: cover;
    border-radius: 8px;
  }
  
  /* Title */
  .ni-interruptor-2-title {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #007dbc !important;
    margin-top: 12px !important;
    margin-bottom: 0 !important;
    line-height: 24px !important;
    text-decoration: none !important;
  }
  
  /* Safeguard links */
  .ni-interruptor-2-card h1,
  .ni-interruptor-2-card h3,
  .ni-interruptor-2-card h1 a,
  .ni-interruptor-2-card h3 a,
  .ni-interruptor-2-card a {
    text-decoration: none !important;
    color: #007dbc !important;
  }
  
  /* === Responsive Fix === */
  @media (max-width: 767px) {
    .ni-interruptor-2-float-left,
    .ni-interruptor-2-float-right {
      float: none;
      margin: 20px 0;
      width: 100%;
    }
  
    .ni-interruptor-2-inner {
      flex-direction: row !important;
    }
  }
  