.releases {
  display: flex;
  justify-content: center;
  align-items: center;
}

.release-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #000;
    color: #fff;
    min-height: 100vh;
    width: 80%;
    display: flex;
    justify-content: center;
    margin-top: 3.5rem
  }
  
  .column {
    padding: 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .column-header {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: center;
    width: 100%;
    border-bottom: 2px solid #2c2c2c;
    padding-bottom: 1rem;
    font-family: "Calistoga", system-ui;
  }
  
  .release-entry {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1.5rem;
    border-radius: 4px;
    padding: 8px;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  }

  .release-entry:hover {
    background-color: #131313;
  }
  
  .cover {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  }
  
  .release-info {
    display: flex;
    flex-direction: column;
  }
  
  .release-title {
    font-size: 1.25rem;
    font-weight: bold;
    font-family: "Calistoga", system-ui;
  }
  
  .release-date {
    font-size: 1rem;
    color: #ccc;
  }
  
  .release-columns > .column:first-child {
    border-right: 2px solid #2c2c2c;
  }
  