	.FrontPage {
		 	  width: auto;
        float: none;
		}
		
		.Welcome b {
		  font-size: 165%;
		}
		
		.Welcome-quote{
		 font-size: 0.8em;
    position: relative;
    left: 23%;
		}
		
		.WeekShows {
		  display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 20px;
		}
		
		.flyer {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 156px;
    height: 80%;
    overflow: hidden;
    transition: transform 0.3s ease;
}
    .flyerimage {
      width: 100%;
      height: 75%;  /* Fixed height for image */
      object-fit: cover;  /* Ensures the image fits the area */
      border-top-left-radius: 8px;
      border-top-right-radius: 8px;
    }
    
    .flyerimage a {
        display: block;
    text-align: center;
    text-decoration: none;
    background-color: #c04037;
    color: white;
    font-weight: bold;
    font-size: 11px;
    line-height: 1.2em;
    padding: 2%;
    }
    
    .flyerlink a {
        display: block;
    text-align: center;
    text-decoration: none;
    background-color: #c04037;
    color: white;
    font-weight: bold;
    font-size: 11px;
    line-height: 1.2em;
    padding: 2%;
    }
    .flyerlink a:hover {
      background-color: #ff8b00;
    }
    .flyerlink:hover {
      transform: scale(1.05);
    }
    
    Showbutton {
     background-color: #c04037; 
            color: white; 
            border: none; 
            padding: 12px 24px; 
            text-align: center; 
            text-decoration: none; 
            display: inline-block; 
            font-size: 16px; 
            border-radius: 5px;
            cursor: pointer; 
            transition: background-color 0.3s ease, transform 0.2s ease; 
        }
        
    Showbutton:hover {
       background-color: #ff8b00; 
            transform: translateY(-2px); 
        }
    
    Showbutton:focus {
     outline: none; /* Remove focus outline */ 
    }
    
     header {
            color: white;
            padding: 10px 0;
        }

        header h1 {
            margin: 0;
            font-size: 24px;
            font-weight: 600;
        }

        /* Publication Section */
        .publication-section {
    max-width: 1000px;
    margin: 10px auto;
    padding: 0px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .publication-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
    padding: 15px;
    border-bottom: 1px solid #eee;
        }

        .publication-item:last-child {
            border-bottom: none;
        }

        .publication-image {
            width: 100%;
            max-width: 130px;
            height: auto;
            border-radius: 6px;
            margin-right: 15px;
        }

        .publication-details {
            flex-grow: 1;
        }

        .publication-title {
            font-size: 20px;
            font-weight: 600;
            color: #333;
            margin: 0 0 10px 0;
        }

        .publication-summary {
            font-size: 14px;
            color: #555;
            line-height: 1.5;
            margin: 0 0 10px 0;
        }
        
        .publication-author {
            font-size: 12px;
            color: #888;
            margin: 0;
        }

        .publication-date {
            font-size: 12px;
            color: #888;
            margin: 0;
        }

        .read-more-btn {
            padding: 8px 20px;
            font-size: 14px;
            background-color: #c04037;
            color: white;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .read-more-btn:hover {
            background-color: #ff8b00;
        }

		
		@media screen and (max-width: 480px) {
		  #contentWrapper, #outerWrapper {
      width: 100%;
      overflow: hidden;
      }

    #rightColumn1 {
    width: 100%;
    box-sizing: border-box;
  }
		  
		  .FrontPage {
		 	  width: auto;
        float: none;
        margin: 0;
		}
		
		  .Welcome b {
		  font-size: 120%;
		}
		
		  .Welcome-quote {
		  font-size: 0.8em;
    position: relative;
    left: 22%;
		}
		
		.flyer {
        width: 90%;  /* Adjust for mobile screens */
        height: auto;  /* Let height adjust on mobile */
      }
      
      .flyerimage {
      width: 100%;
        height: auto;
        object-fit: cover;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
      }
      
      .flyerimage a {
        display: block;
    text-align: center;
    text-decoration: none;
    background-color: #c04037;
    color: white;
    font-weight: bold;
    font-size: 11px;
    line-height: 1.2em;
    padding: 2%;
    }
    
    .flyerlink a {
        display: block;
    text-align: center;
    text-decoration: none;
    background-color: #c04037;
    color: white;
    font-weight: bold;
    font-size: 15px;
    line-height: 1.2em;
    padding: 2%;
    }
    
    .publication-image {
            height: 15em;
        border-radius: 6px;
        margin-bottom: 3%;
        max-width: 100px;
        width: 43%;
        object-fit: cover;
}
		}