.post-container img{
    border-radius: 2rem;
}
.section_home_page{
    background-color: var(--primary-section-color);
    padding: 4rem 0;
}

.wrap-left {
    float: left;
    margin: 0 1em 1em 0;
    max-width: 40%;
  }
  
  .wrap-right {
    float: right;
    margin: 0 0 1em 1em;
    max-width: 40%;
  }
  
  /* Clear floats after paragraphs, if needed */
  p::after {
    content: "";
    display: table;
    clear: both;
  }


/*.album-container {
    display: flex;
    justify-content: center; 
}*/
.photo-album {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(var(--min-album-col-width, 200px), 1fr));
    gap: var(--album-col-gap, 1rem);
    padding: var(--album-padding, 1rem);
    box-sizing: border-box;
  }
  
.photo-album img {
    width: 100%;
    aspect-ratio: 4 / 3;      /* or 1 / 1 for squares */
    object-fit: cover;        /* fill the box nicely */
    display: block;
    border-radius: var(--album-img-border-radius, 6px);      /* optional */
}



.list_component .list {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: start;
    justify-items: start;
    display: grid;
}
.list_component .list .list_item {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    border: .25rem solid #140e13;
    background-color: #140e13;
    color: #f4ece9;
    text-align: center;
    border-radius: 1rem;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    padding-bottom: 1rem;
    display: flex;
    width: 100%;
    overflow: hidden;
}
.list_component .list .list_item img {
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: .75rem .75rem 0 0;
    width: 100%;
    height: 100%;
}
.list_component .list .list_item p{
    line-height: 1;
    margin: 0;
}


@media (max-width: 600px) {
    .wrap-left,
    .wrap-right {
      float: none;
      display: block;
      margin: 1em auto;
      max-width: 100%;
    }
}

@media screen and (max-width: 991px) {
    .list_component .list {
        grid-template-columns: 1fr 1fr;
    }
}