.post-tile {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.post-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.post-tile-link {
    display: block;
    text-decoration: none;
    color: #333;
}

.post-tile-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.post-tile-content {
    padding: 1.5rem;
}

.post-tile-title {
    margin-top: 0;
    font-size: 1.75rem;
}

.post-tile-summary {
    color: #555;
}

.post-tile-meta {
    font-size: 0.9rem;
    color: #777;
    margin-top: 1rem;
}

/* Target the main site header */
.tc-l {
    /* Set your banner image as the background */
    /* background-image: url('/images/promptwire-banner-image.png');  */
    
    /* Ensure the image covers the whole area */
    background-size: cover;

    /* Center the image */
    background-position: center;

    /* Add a bit of padding so the title has space */
    padding: 4rem 2rem;
}

.homepage-post {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    display: flex;
    gap: 1.5rem;
  }
  
  .homepage-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  }
  
  .homepage-post-image > div {
    height: 250px;
    background-size: cover;
    background-position: center;
  }
  
  .homepage-post-content {
    padding: 1.5rem;
    flex-grow: 1;
  }
