.userGalleryEntries {
  padding: 100px 0 90px;
  background: url("/user_data/packages/default/img/background/bg_gallery.jpg") repeat;
  color: #3C3C43;
}
.userGalleryEntries_inner {
  position: relative;
  width: 1200px;
  margin: 0 auto;  
}
.userGalleryEntries_inner::before {
  display: block;
  content: "";
  width: 250px;
  aspect-ratio: 1.122;
  background-image: url("/user_data/packages/default/img/background/garagefun_title.png");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -30px;
  left: -50px
}
.userGalleryEntries_header {
  position: relative;
}
.userGalleryEntries_title {
  margin: 0 0 15px;
  font-family: Oswald, sans-serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
}
.userGalleryEntries_label {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.userGalleryEntries_body {
  position: relative;
  display: grid;
  grid-template:
    "intro more" auto
    "entries entries" auto / 1fr 240px;
}
.userGalleryEntries_intro {
  grid-area: intro;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  align-self: flex-end;
}
.userGalleryEntries_more {
  grid-area: more;
  padding: 0 0 7px;
}

.userGalleryEntries_more_link {
  position: relative;
  display: block;
  font-size: 14px;
  background-color: #CF4D43;
  text-align: left;
  color: #fff;
  padding: 15px 0 14px 28px;
  letter-spacing: 0.08em;
}

.userGalleryEntries_more_link:hover {
  color: #cf4d43;
}

.userGalleryEntries_more_link::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 101%;
  background-color: #fff;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right top;
}

.userGalleryEntries_more_link:hover::before {
  transform: scaleX(1);
  transform-origin: left top;
}

.userGalleryEntries_more_link::after {
  position: absolute;
  top: 50%;
  right: 29px;
  display: block;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 100%;
  background-color: #fff;
  transform: translate(0, -50%);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.userGalleryEntries_more_link:hover::after {
  background-color: #cf4d43;
  transform: translate(5px, -50%);
}

.userGalleryEntries_more_label {
  position: relative;
}

.userGalleryEntries_entries {
  grid-area: entries;
  margin: 54px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0 40px;
}

.userGalleryEntries_entry {
  position: relative;
  transition: opacity 0.3s;
}

.userGalleryEntries_entry:hover {
  opacity: 0.5;
}

.userGalleryEntries_entry_pickup {
  position: absolute;
  top: -16px;
  right: -16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  width: 74px;
  height: 74px;
  background-color: #497098;
  border-radius: 100%;
  font-family: Oswald, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  pointer-events: none;
}

.userGalleryEntries_entry_link {
  display: block;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background-color: #fff;
}

.userGalleryEntries_entry_image {
  width: 100%;
  aspect-ratio: 374 / 208;
  background-color: #ccc;
}

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

.userGalleryEntries_entry_text {
  padding: 26px 32px;
}

.userGalleryEntries_entry_title {
  font-size: 17px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.userGalleryEntries_entry_meta {
  margin: 12px 0 0;
  display: flex;
  align-items: center;
}

.userGalleryEntries_entry_category {
  margin: 0 12px 0 0;
  font-size: 11px; 
}

.userGalleryEntries_entry_category span {
  text-transform: uppercase;
  padding: 2px 14px;
  display: inline-block;
  background-color: var(--category-color, #dddbd9);
  border-radius: 9999px;
  font-weight: bold;
  letter-spacing: 0.04em;
}

.userGalleryEntries_entry_user {
  color: #777;
}