/**
 * MAT Blocks Plugin Styles Override
 * 
 * Purpose: Load mat-blocks plugin styles that don't auto-load in WordPress 6.9
 * Reason: WP 6.9 on-demand CSS loading doesn't detect shortcodes or some blocks
 * 
 * Contains:
 * - hero3 styles (used by [featured_documents] shortcode)
 * - hero4 styles (Gutenberg block)
 * 
 * Last Updated: December 2025
 * Maintained by: Materiell Technical Team
 */

/* ============================================
   HERO3 STYLES (Shortcode)
   ============================================ */

.hero3-container {
  display: block;
  width: 100%;
  background-color: #081426;
  padding: 60px 0px;
}

.hero3-row1 {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  padding: 0px;
  margin-bottom: 24px;
}

.hero3-row2 {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  padding: 0px;
}

.hero3-col {
  border: 1px solid #B3BDCB;
  width: 384px;
  padding: 24px;
}

.hero3-para1 {
  font-family: 'Source Sans Pro', sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 18px;
  color: #CE3F33;
  margin-bottom: 18px;
}

.hero3-para2 {
  font-family: 'Source Sans Pro', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 25px;
  color: white;
  margin-bottom: 30px;
}

.hero3-para3 {
  font-family: 'Source Serif Pro', serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 18px;
  color: #B3BDCB;
}

@media (max-width: 1024px) {
  .hero3-container {
    padding: 40px 20px;
  }
  
  .hero3-row1,
  .hero3-row2 {
    display: block;
  }
  
  .hero3-col {
    width: 100%;
    margin-bottom: 24px;
  }
}

/* ============================================
   HERO4 STYLES (Gutenberg Block)
   ============================================ */

.hero4-container {
  max-width: 1440px;
  margin: auto;
  align-content: center;
  padding: 60px 120px;
}

.hero4-container p {
  margin: 0;
  text-align: center;
}

.hero4-container .hero4-col {
  border: 1px solid rgba(79, 111, 125, 0.5);
  box-sizing: border-box;
  padding: 40px;
}

.hero4-container .hero4-col .hero4-img img {
  height: 100px;
  width: 100px;
}

.hero4-container .hero4-col .hero4-para1 {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  color: #CB333B;
  margin-bottom: 20px;
}

.hero4-container .hero4-col .hero4-para2 {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: #202020;
}

@media (max-width: 1024px) {
  .hero4-container {
    padding: 40px 20px;
  }
  
  .hero4-container .hero4-row {
    display: block;
    padding: 0;
    margin: 0;
  }
  
  .hero4-container .hero4-col {
    width: 100%;
    margin: 20px 0px;
  }
}

/* End MAT Blocks Overrides */
