@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;600;700&family=Barlow+Condensed:wght@700&display=swap');

            .cbs-wrap {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
                padding: 40px 0;
                background: transparent;
                font-family: 'Barlow', sans-serif;
            }

            @media (max-width: 900px) {
                .cbs-wrap {
                    grid-template-columns: repeat(2, 1fr);
                }
            }

            @media (max-width: 580px) {
                .cbs-wrap {
                    grid-template-columns: 1fr;
                }
            }

            .cbs-card {
                background: #111111;
                border-radius: 16px;
                overflow: hidden;
                border: 1.5px solid transparent;
                transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
                cursor: pointer;
                display: flex;
                flex-direction: column;
            }

            .cbs-card:hover {
                border-color: #c9a84c;
                transform: translateY(-4px);
                box-shadow: 0 12px 40px rgba(201, 168, 76, 0.18);
            }


            .cbs-card__image-wrap {
                width: 100%;
                aspect-ratio: 4 / 3;
                overflow: hidden;
                display: block;
                text-decoration: none;
            }

            .cbs-card__image-wrap img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                display: block;
                transition: transform 0.5s ease;
            }

            .cbs-card:hover .cbs-card__image-wrap img {
                transform: scale(1.05);
            }

            /* Placeholder when no featured image */
            .cbs-card__no-img {
                width: 100%;
                aspect-ratio: 4 / 3;
                background: #1e1e1e;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .cbs-card__no-img svg {
                opacity: 0.2;
                width: 48px;
                height: 48px;
            }

            .cbs-card__body {
                padding: 24px 24px 28px;
                display: flex;
                flex-direction: column;
                flex: 1;
            }

            .cbs-card__title {
                font-family: 'Barlow Condensed', sans-serif;
                font-size: 1.45rem;
                font-weight: 700;
                color: #ffffff;
                line-height: 1.2;
                margin: 0 0 14px 0;
                letter-spacing: 0.01em;
                text-transform: none;
            }

            .cbs-card__title a {
                color: inherit;
                text-decoration: none;
                transition: color 0.2s ease;
            }

            .cbs-card__title a:hover {
                color: #c9a84c;
            }

            .cbs-card__excerpt {
                font-size: 0.935rem;
                color: #b0b0b0;
                line-height: 1.65;
                margin: 0;
                font-weight: 400;
            }
  /* ── Floating button container ── */
  .wa-float-wrapper {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  }
 
  /* ── Tooltip bubble ── */
  .wa-tooltip {
    background: #fff;
    color: #1a1a1a;
    font-size: 13.5px;
    font-weight: 500;
    padding: 9px 14px;
    border-radius: 20px 20px 4px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.13);
    white-space: nowrap;
    opacity: 0;
    transform: translateY(6px) scale(0.96);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
  }
 
  /* Show tooltip on wrapper hover */
  .wa-float-wrapper:hover .wa-tooltip {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
 
  /* ── Main button ── */
  .wa-float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
  }
 
  .wa-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
  }
 
  .wa-float-btn:active {
    transform: scale(0.97);
  }
 
  /* ── WhatsApp SVG icon ── */
  .wa-float-btn svg {
    width: 32px;
    height: 32px;
    fill: #fff;
  }
 
  /* ── Pulse ring animation ── */
  .wa-float-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: wa-pulse 2.2s ease-out infinite;
    pointer-events: none;
  }
 
  @keyframes wa-pulse {
    0%   { transform: scale(1);   opacity: 0.7; }
    70%  { transform: scale(1.5); opacity: 0;   }
    100% { transform: scale(1.5); opacity: 0;   }
  }
 
  /* ── Responsive: smaller on mobile ── */
  @media (max-width: 480px) {
    .wa-float-wrapper {
      bottom: 18px;
      right: 18px;
    }
 
    .wa-float-btn {
      width: 52px;
      height: 52px;
    }
 
    .wa-float-btn svg {
      width: 28px;
      height: 28px;
    }
  }