/* ========================================
   BUTTONS - All Button Styles
   ======================================== */

/* Primary CTA Button */
.sx-btn-primary {
  background: rgb(45, 132, 205);
  color: #ffffff;
  padding: 12px 24px;
  border: 1px solid rgb(45, 132, 205);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.sx-btn-primary:hover {
  background: rgba(45, 132, 205, .03);
  opacity: 0.9;
  transform: translateY(-2px);
  color: rgb(45, 132, 205);

}

/* Secondary CTA Button */
.sx-btn-outline {
  display: inline-block;
  background: #ffffff;
  color: rgb(45, 132, 205);
  padding: 12px 24px; /*btn size: top-bottom 12px left-right 24px*/
  border: 1px solid rgb(45, 132, 205);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s ease;
}

.sx-btn-outline:hover {
  background: rgb(45, 132, 205);
  opacity: 0.9;
  transform: translateY(-2px);
  color: #ffffff;
}

/* Layout utility: Button group spacing */
.sx-btn-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/*
How to use it in HTLM: 
      <div class="sx-btn-row">
        <a class="sx-btn-primary" href="LINK-1">TEXT-1</a>
        <a class="sx-btn-outline" href="LINK-2" target="_blank" rel="noopener">TEXT-2</a>
      </div>

* Note: target="_blank" opens the link in a new tab
  rel="noopener" is a security best practice when using target="_blank" 
  to prevent the new page from having access to the original page's window object.
*/