/*
    Theme Name: Bobcat Theme 2
    Author: CJ Lupori
    Description: Bobcat Theme Option 2 of 3
    Version: 2.1.0
*/
/*--------------------------------------------------------------
## Editor class styles
--------------------------------------------------------------*/

 /* ── Reset & Container ── */
  .brand-grid-wrapper {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 56px 32px;
    box-sizing: border-box!important;
  }


  /* ── Grid Layout ── */
  .brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);  /* 4 columns on desktop */
    gap: 28px;
  }

  /* ── Individual Brand Card ── */
  .brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #e8e8f0;
    padding: 0 0 24px 0;         
    gap: 20px;
    overflow: hidden;             
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    cursor: pointer;
  }

 .brand-card:hover {
  transform: translateY(2px) scale(0.985);
  box-shadow: inset 0 4px 16px rgba(0, 0, 0, 0.13), 0 1px 4px rgba(0, 0, 0, 0.06);
  border-color: #c8c8e0;
}

  .brand-card:focus-visible {
    outline: 3px solid #4a6cf7;
    outline-offset: 3px;
  }

  /* ── Logo / Image Area ── */
  .brand-card__img-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;         /* Change to 1/1 for square logos */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5fa;
    overflow: hidden;
  }

  .brand-card__img-wrap img {
    width: 100% !important;        /* Overrides WordPress editor's inline max-width: 0px */
    max-width: 100% !important;    /* Overrides WordPress editor's inline max-width: 0px */
    height: 100%;
    object-fit: cover;           /* Use "cover" if you prefer fill */
    box-sizing: border-box;
    transition: transform 0.3s ease;
  }

  .brand-card:hover .brand-card__img-wrap img {
    transform: scale(1.04);
  }

  /* ── Brand Name Label ── */
  .brand-card__label {
    font-weight: 600;
    font-size: 1.1rem;
    color: #1a1a2e;
    text-align: center;
    letter-spacing: 0.02em;
    line-height: 1.3;
  }

  /* ── Responsive Breakpoints ── */

  @media (max-width: 768px) {
    .brand-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
  }

  @media (max-width: 480px) {
    .brand-grid {
      grid-template-columns: repeat(1, 1fr);
      gap: 14px;
    }

    .brand-card__label {
      font-size: 0.95rem;
    }
  }
.row > * {
    padding-left: calc(var(--bs-gutter-x) * 0.0);
    padding-right: calc(var(--bs-gutter-x) * 0.0);
}
a {
    text-decoration: none;
    color: #7a878e;
    outline: 0;
}
@media screen and (min-width: 1200px) {
    .widget_sandhills_advanced_cpt_layout .offset-xl-1 {
        margin-left: 0;
        width: 20%;
    }
    
}
