

    .tiles {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
	  margin-top: 2rem;
    }

    .tile {
	overflow: hidden; 
      border: 1px solid #ccc;
      border-radius: 10px;
      background: white;
      display: flex;
      flex-direction: column;
      height: 400px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    }

    .tile-content {
      padding: 2.5rem 2rem;
      flex-grow: 1;
      text-align: center;	  
    }

    .tile-icon {
      font-size: 2.5rem;
      margin-bottom: 1.2rem;
      color: #333;
    }

    .tile h3 {
      font-size: 1.2rem;
      margin: 0 0 1rem;
      font-weight: bold;
      color: #222;
    }

    .tile p {
      font-size: 1rem;
      color: #444;
    }

    .tile-footer {
      background-color: #f7f7f7;
      padding: 1.25rem;
      text-align: center;
      border-top: 1px solid #ddd;
    }

    .tile-footer a {
      font-size: 1rem;
      color: #a40000;
      font-weight: bold;
      text-decoration: none;
    }

    .tile-footer a:hover {
      text-decoration: underline;
    }




.news-section-fullwidth {
    width: 100%;
    padding: 2rem 0;
}

.news-inner {
    max-width: 100%;
    padding: 0 2rem;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.news-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
	