/* Generated from tbuilder_layout_part: locations */
/* Builder Custom CSS START */
.cwg-locations-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0; /* Adjusted padding */
    font-family: sans-serif; /* Ensure this inherits from your theme if possible */
  }

  .cwg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }

  .cwg-card {
    background: #f6f6f6; /* Updated background color */
    border: 1px solid #CACACA; /* Updated border color and width */
    border-radius: 0; /* Right angles, no rounded corners */
    padding: 25px;
    /* Removed box-shadow, transition, and hover effects */
  }

  .cwg-location-name {
    color: #003B5C; /* Using the dark blue from the provided site screenshot */
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    border-bottom: 2px solid #009CDE; /* Using the bright blue from the screenshot for accent */
    padding-bottom: 10px;
    display: inline-block;
  }

  .cwg-address {
    color: #4a4a4a;
    font-style: normal;
    line-height: 1.6;
    font-size: 0.95rem;
  }
/* Builder Custom CSS END */