@media only screen and (max-width: 768px) {
    .full-width-banner {
        height: 200px; /* Maintain the same height */
        background-size: auto;
    }

    .title-column {
        align-items: center;
    }

    .banner-title {
        font-size: 18px;
        text-align: center;
    }
}

.full-width-banner {
    display: flex;
    justify-content: center;
    align-items: space-between;
    margin-bottom: 1rem;
    background-size: auto;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center top;
    padding: 0em;
}

.title-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.banner-title {
    background-color: rgba(0, 0, 0, 0);
    padding: 0.5em;
    border-radius: 2em;
}

.banner-title h1 {
    /*font-family: 'Times New Roman', Times, serif;*/
    font-size: 48px;
    margin-bottom: 0px;
    padding-inline: 1em;
    text-shadow: 2px 2px 2px black;
}

.banner-title-image {
    background-color: rgba(0, 0, 0, 0);
    width: auto;
    height: auto;
    max-height: 100%;
    padding: 0.5em;
    padding-inline: 1em;
    border-radius: 2em;
}

.banner-title-image img {
    width: 100%;
    height: auto;
    max-height: 100%;
    display: block;
}
.patient-cta,
.member-cta {
    background-color: rgba(240, 240, 240, 1);
    border: 1px solid rgba(208, 208, 208, 0.5);
    border-radius: 0.25em;
    padding: 1.25em;
    margin: 1.25em 0;
    text-align: center;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
    justify-content: center;
}
.member-cta p {
    text-align: center;
}
.patient-cta h3,
.member-cta h3 {
    color: #332e3c;
    margin-bottom: 0.5em;
}
.patient-cta a,
.member-cta a {
    display: inline-block;
    padding: 0;
    text-decoration: none;
    margin-top: 0.5em;
    width: auto;
    max-width: 12.5em;
    margin-left: auto;
    margin-right: auto;
}
.member-cta a {
    font-size: 10px;
    border: none;
    outline: none;
    padding: 0;
}
.member-cta button {
    display: inline-block;
    background-color: #e29578;
    color: white;
    padding: 0.5em 2em;
    text-decoration: none;
    border-radius: 0.5em;
    margin-top: 0.5em;
    width: auto;
    max-width: 12.5em;
    margin-left: auto;
    margin-right: auto;
}
.home-layout {
    display: flex;
    gap: 2rem;
}

.main-content {
    flex: 1;
}

.sidebar {
    width: 300px; /* Adjust as needed */
}

@media (max-width: 768px) {
    .home-layout {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }
}

.sidebar-welcome {
    padding: 20px;
    background: #f8f8f8;
    border-radius: 5px;
}

.sidebar-section {
    margin-bottom: 30px;
}

.sidebar-section-title {
    font-size: 1.2em;
    margin-bottom: 15px;
}

.post-list,
.tag-list {
    list-style: none;
    padding: 0;
}

.post-item,
.tag-item {
    margin-bottom: 15px;
}

.post-link,
.tag-link {
    text-decoration: none;
    color: #333;
}

.post-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.post-excerpt {
    font-size: 0.9em;
}

.post-date {
    font-size: 0.8em;
    color: #666;
}

.sidebar .sidebar-story__title {
    font-size: 16px; 
    line-height: 1.3; 
    text-align: left;
  } 

.sidebar .sidebar-story__date {
    font-size: 12px; 
}

@media (min-width: 992px) {
    .sidebar-story {
      display: flex;
      align-items: flex-start;
    }
  
    .sidebar-story__media {
      flex: 0 0 40%;
      margin-right: 15px;
    }
  
    .sidebar-story__content {
      flex: 1;
    }
   
    .sidebar .sidebar-story__media {
        max-width: 80px; 
      }

    .sidebar .sidebar-story {
        margin-bottom: 15px; 
    }

    .col-lg-4.sidebar__wrapper {
      padding-left: 0; 
      margin-left: 0;
    }
  
    .sidebar {
      padding-left: 8px; 
      margin-left: 8px;
    }
  
}

@media (max-width: 991px) {
    .sidebar__wrapper {
        display: none;
    }
}



