/* News Container */
#NewsContainer {
    flex: 1;
    color: black;
    font-family: Verdana, sans-serif !important;
    overflow-x: hidden;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    word-wrap: break-word;
    word-break: break-word;
    overflow-y: auto;
  }
  
  .news-container {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  /* News Item Layout */
  .news-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  /* Writer Section */
  .writer {
    flex-shrink: 0;
    width: 100px;
    margin-right: 20px;
    text-align: center;
  }
  
  .writer-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 5px;
  }
  
  .writer-info {
    color: #666;
  }
  
  /* News Content Section */
  .news-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  
  .news-content h3 {
    margin: 0 0 10px;
    color: #333;
  }
  
  .news-content small {
    color: #666;
    margin-bottom: 10px;
  }
  
  .news-details ul {
    margin: 0;
    padding-left: 20px;
    list-style-type: disc;
  }
  
  .news-separator {
    border: 0;
    height: 1px;
    background: #ccc;
    margin: 30px 0;
  }

  .news-details ul li {
    line-height: 1.6;
}

.news-content h2 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #444;
}
.patreon-container {
  max-width: 90%;
  margin: 20px 0;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
}

.patreon-container:hover {
  background-color: #fef4e7;
  transform: scale(1.02);
}

.patreonImage {
  width: 100%;
  max-height: 256px;
  border-radius: 16px;
  border: 4px solid #00472a;
  cursor: url(../../media/UI/pointer.png), pointer !important;
}

.patreonImage:hover {
  border-color: goldenrod;
}
