/* Container */
/* Container */
.release-section {
  background: rgb(241,229,215);
  color: #fff;
  padding: 0px 20px 0 20px; /* top, right, bottom, left */
  font-family: sans-serif;

  /* scrolling */
  max-height: 590px;   /* adjust as you like */
  overflow-y: auto;    /* vertical scroll if content is taller */
  border-radius: 12px; /* optional rounded corners */
}


/* Header */
.release-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
  padding-top: 30px;
}

.release-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: black;
}

.release-header .check {
  font-size: 0.9rem;
  color: black;
  text-transform: uppercase;
}

/* Items */
.release-item {
  display: flex;
  align-items: center;
  padding: 12px 0px 0px 0px;
  border-bottom: px solid rgba(255, 255, 255, 0.1);
}



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

/* Thumbnail */
.release-thumb {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.release-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Info */
.release-info {
  flex-grow: 1;
}

.release-category {
  font-size: 0.9 rem;
  font-weight: 600;
  color: black;
  margin: 0 0 4px;
  text-transform: uppercase;
}

.release-text {
  font-size: 1.1rem;
  line-height: 1.2;
  margin: 0;
  color: black;
}

/* Arrow */
.release-arrow {
  font-size: 1.2rem;
  color: black;
  margin-left: 12px;
  border: 1px solid black;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.release-section {
  display: flex;
  flex-direction: column;
}

.release-header {
  flex-shrink: 0;
  position: sticky;
  top: 0;
  background:rgb(241,229,215);
  padding-bottom: 10px;
  z-index: 1;
}

.release-items-wrapper {
  flex-grow: 1;
  overflow-y: auto;
}

/* Hide scrollbar (Webkit) */
.release-section::-webkit-scrollbar {
  width: 8px;   /* size when shown */
  background: transparent;
}

/* Scrollbar hidden until hover */
.release-section::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 4px;
}

.release-section:hover::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3); /* visible when hover */
}

.release-section:hover::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}

/* Header sticky */
.release-header {
  flex-shrink: 0;
  position: sticky;
  top: 0;
  background: rgb(241,229,215);
  padding: 25px 20px 10px 20px;
  z-index: 1;
}

.release-item:hover .release-arrow {
  background: #d1ad00;      /* yellow background */
  border-color: #d1ad00;    /* optional: make border match */
  color: black;            /* keep arrow visible */
  transition: background 0.2s ease, border-color 0.2s ease;
}

.release-link {
  text-decoration: none;   /* no underline */
  color: inherit;          /* keep your text colors */
  display: block;          /* so the whole item is clickable */
}

.release-link:hover {
  text-decoration: none;   /* make sure it doesn't come back on hover */
}
