/* CSS to tweak the top banner */

.BaseMaster_logoContainer {
    padding-top: 7px;
}

.CHBlock_container h1, .CHBlock_richTextContent h1 {
  font-size: 48px !important;
}

.CHHeroBlock_contentContainer {
  width: 620px !important;

}

/* New CSS for HTML block on homepage. Generated using Claude by Jer 07/26 */


    /* Reset & Base Styles */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      color: #333333;
      background-color: #f8fafc;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    /* MIDDLE BLOCK: Outer Wrapper Background with Image & Dynamic Fallback Gradient */
    .hero-outer-container {
      background: url('/resources/Storage/Branding/bghomepage/pattern_3.jpg'), linear-gradient(135deg, #f0f4f8 0%, #d9e2ec 100%) center/cover no-repeat;
      padding: 3rem 1.5rem;
      width: 100%;
    }

    /* Main Responsive Grid Wrapper (Highlights vs FAQs, no Basics block) */
    #wrapper {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      /* Wider column for Release Highlights (3fr) vs FAQs (1.2fr) */
      grid-template-columns: 3fr 1.2fr;
      gap: 2rem;
    }

    /* Content Cards/Blocks */
    .block {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(8px);
      border-radius: 12px;
      padding: 2.2rem;
      box-shadow: 0 4px 15px rgba(0, 46, 110, 0.05);
      border: 1px solid rgba(0, 46, 110, 0.08);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .block:hover {
      box-shadow: 0 6px 20px rgba(0, 46, 110, 0.08);
    }

    /* Brand Header Titles */
    .block-heading {
      color: #002E6E; /* Classic Bazaarvoice Blue */
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
      border-bottom: 2px solid rgba(0, 46, 110, 0.1);
      padding-bottom: 0.5rem;
    }

    /* News Container spacing */
    .news-container {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    /* Individual News Item Styles */
    .news {
      background: #ffffff;
      border-left: 4px solid #002E6E;
      padding: 1.5rem;
      border-radius: 0 8px 8px 0;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
      transition: border-color 0.2s ease, transform 0.2s ease;
    }

    .news:hover {
      border-left-color: #0056b3;
      transform: translateX(2px);
    }

    .news-title {
      font-size: 1.15rem;
      color: #002E6E;
      font-weight: 600;
      margin-bottom: 0.35rem;
    }

    .news-date {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #767676;
      font-weight: 600;
      margin-bottom: 1rem;
      display: inline-block;
    }

    /* Content Layout with Icon and Text */
    .news-body-wrap {
      display: flex;
      gap: 1.25rem;
      align-items: flex-start;
    }

    .news-icon-container {
      flex-shrink: 0;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .news-icon {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .news-content {
      font-size: 0.95rem;
      color: #486581;
      flex-grow: 1;
    }

    .news-content b {
      color: #002E6E;
    }

    /* Clean, modern inline link overrides */
    .read-more-link {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      color: #002E6E;
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
      margin-top: 0.75rem;
      transition: color 0.2s ease, gap 0.2s ease;
    }

    .read-more-link:hover {
      color: #0056b3;
      gap: 0.5rem;
    }

    /* List link setups */
    .link-list {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .list-link {
      color: #00326e;
      text-decoration: none;
      font-size: 0.95rem;
      transition: color 0.2s, padding-left 0.2s;
      display: inline-flex;
      align-items: center;
    }

    .list-link:hover {
      color: #0056b3;
      padding-left: 4px;
    }

    /* EXTERNAL BLOCK: Adjusted to premium white background with light contrast cards */
    .external-outer-container {
      background: #ffffff; /* Updated to pure white background */
      padding: 4rem 1.5rem;
      width: 100%;
      border-top: 1px solid rgba(0, 46, 110, 0.08);
      border-bottom: 1px solid rgba(0, 46, 110, 0.08);
    }

    #wrapper-externals {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .block-externals {
      background: #f8fafc; /* Subtle slate backdrop for elevation visibility on pure white container */
      border: 1px solid rgba(0, 46, 110, 0.08);
      border-radius: 12px;
      padding: 2.2rem;
      color: #333333;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, background-color 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 46, 110, 0.02);
    }

    .block-externals:hover {
      transform: translateY(-5px);
      background: #ffffff;
      box-shadow: 0 12px 30px rgba(0, 46, 110, 0.08);
      border-color: rgba(0, 46, 110, 0.15);
    }

    .block-externals-title {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 0.8rem;
      color: #002E6E; /* High contrast Dark Blue */
    }

    .block-externals-desc {
      font-size: 0.95rem;
      color: #486581;
      line-height: 1.6;
      margin-bottom: 2rem;
    }

    .block-externals-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: #002E6E; /* Legible Dark Blue on light background */
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      transition: color 0.2s ease, transform 0.2s ease;
      margin-top: auto;
    }

    .block-externals-link:hover {
      color: #0056b3;
    }

    .external-link-icon {
      width: 14px;
      height: 14px;
      display: inline-block;
      vertical-align: middle;
      transition: transform 0.2s ease;
    }

    .block-externals-link:hover .external-link-icon {
      transform: translate(2px, -2px);
    }

    /* FOOTER BLOCK: Premium Modern Light Layout (Adjusted to Pure White) */
    footer {
      background-color: #ffffff; /* Updated to pure white background */
      color: #486581;
      padding: 4rem 1.5rem 3rem 1.5rem;
      border-top: 1px solid rgba(0, 46, 110, 0.08);
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2.5rem;
      margin-bottom: 3.5rem;
    }

    .footer-heading {
      color: #002E6E; /* Classic Bazaarvoice Blue for headlines */
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 1.25rem;
    }

    .column p {
      margin-bottom: 0.75rem;
    }

    .column p:last-child {
      margin-bottom: 0;
    }

    .footer-link {
      color: #00326e;
      font-size: 0.9rem;
      text-decoration: none;
      transition: color 0.2s, padding-left 0.2s;
      display: inline-flex;
      align-items: center;
    }

    .footer-link:hover {
      color: #0056b3;
      padding-left: 4px;
    }

    /* Bottom copyright section */
    .footer-bottom {
      border-top: 1px solid rgba(0, 46, 110, 0.08);
      padding-top: 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .copyright {
      font-size: 0.85rem;
      color: #767676;
    }

    /* Responsive Media Queries */
    @media screen and (max-width: 1024px) {
      #wrapper {
        grid-template-columns: 2fr 1fr;
        gap: 1.5rem;
      }
      #wrapper-externals {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
      }
      .row {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media screen and (max-width: 768px) {
      #wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      #wrapper-externals {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      .hero-outer-container, .external-outer-container {
        padding: 2.5rem 1rem;
      }
      .row {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
      .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
      }
    }



.CHBlock_richTextContent, .CHBlock_container * {font-family: -apple-system, Helvetica, Arial, sans-serif;}