
/*
*
*
*   See "lists.css"
*
*
**/

/* Enhanced Artist Hero Section */
.fragments.artist-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
  margin: auto;
  width: 100%;
  border-top-left-radius: 0.9375rem;
  border-top-right-radius: 0.9375rem;
  border-bottom-left-radius: 0.4375rem;
  border-bottom-right-radius: 0.4375rem;
  border: 0.0938rem solid var(--border-250);
}

.artist-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(88, 28, 135, 0.4), rgba(29, 78, 216, 0.4), rgba(190, 24, 93, 0.4));
  backdrop-filter: blur(3.75rem);
}

.artist-hero-image {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.artist-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2rem);
  transform: scale(1.1);
}

.artist-hero-content {
  position: relative;
  margin: 0 auto;
  padding: 1rem;
}

@media (min-width: 40rem) {
  .artist-hero-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 64rem) {
  .artist-hero-content {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 3rem;
    padding-bottom: 5rem;
  }
}

.artist-hero-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 64rem) {
  .artist-hero-flex {
    flex-direction: row;
    align-items: flex-end;
  }
}

/* Artist Avatar */
.artist-avatar-group {
  position: relative;
}

.artist-avatar-container {
  width: 12rem;
  height: 12rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1.5625rem 3.125rem -0.75rem rgba(0, 0, 0, 0.25);
  border: 0.25rem solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

@media (min-width: 64rem) {
  .artist-avatar-container {
    width: 16rem;
    height: 16rem;
  }
}

.artist-avatar-group:hover .artist-avatar-container {
  transform: scale(1.05);
}

.artist-avatar-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist-avatar-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 1rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.5rem;
}

.artist-avatar-group:hover .artist-avatar-overlay {
  opacity: 1;
}

.artist-play-btn {
  padding: 0.75rem 1.5rem;
  background-color: #2563eb;
  border-radius: 624.9375rem;
  color: white;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transform: translateY(0.5rem);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.artist-avatar-group:hover .artist-play-btn {
  transform: translateY(0);
}

.artist-play-btn:hover {
  background-color: #1d4ed8;
}

.artist-play-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Artist Info Section */
.artist-info-section {
  flex: 1;
  text-align: center;
}

@media (min-width: 64rem) {
  .artist-info-section {
    text-align: left;
  }
}

.artist-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 624.9375rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  backdrop-filter: blur(0.25rem);
}

.artist-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #4ade80;
  border-radius: 624.9375rem;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.artist-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(to right, white, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0.625rem 0.9375rem rgba(0, 0, 0, 0.3));
}

@media (min-width: 64rem) {
  .artist-title {
    font-size: 4.5rem;
  }
}

.artist-genre {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 1.5rem;
}

@media (min-width: 64rem) {
  .artist-genre {
    font-size: 1.5rem;
  }
}

/* Stats Row */
.artist-stats-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 64rem) {
  .artist-stats-row {
    justify-content: flex-start;
  }
}

.artist-stat {
  text-align: center;
}

@media (min-width: 64rem) {
  .artist-stat {
    text-align: left;
  }
}

.artist-stat-value {
  font-size: 1.875rem;
  font-weight: 700;
}

.artist-stat-label {
  font-size: 0.875rem;
  color: #9ca3af;
}

.artist-stat-divider {
  width: 0.0625rem;
  height: 3rem;
  background-color: rgba(255, 255, 255, 0.2);
}

/* Action Buttons */
.artist-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

@media (min-width: 64rem) {
  .artist-actions {
    justify-content: flex-start;
  }
}

.artist-action-btn {
  padding: 0.75rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(0.25rem);
  border-radius: 624.9375rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  color: white;
}

.artist-action-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.artist-action-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.artist-action-icon {
  padding: 0.75rem;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(0.25rem);
  border-radius: 624.9375rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  color: white;
}

.artist-action-icon:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.artist-action-icon svg {
  width: 1.25rem;
  height: 1.25rem;

}

/* Artist Content Area */
.fragments.artist-content {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem;
}

@media (min-width: 40rem) {
  .fragments.artist-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 64rem) {
  .fragments.artist-content {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 2rem;
    padding-bottom: 3rem;
  }
}

/* Quick Stats Grid */
.artist-quick-stats {
  display: inline-flex;
  gap: 1rem;
  padding: 0 1rem;
  margin-bottom: 3rem;
  width: 100%;
 
}

@media (min-width: 48rem) {
  .artist-quick-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.artist-stat-card {
  width: -webkit-fill-available;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(0.25rem);
}

.artist-stat-card.stat-blue {
  background: linear-gradient(to bottom right, rgba(37, 99, 235, 0.2), rgba(30, 64, 175, 0.2));
}

.artist-stat-card.stat-purple {
  background: linear-gradient(to bottom right, rgba(147, 51, 234, 0.2), rgba(107, 33, 168, 0.2));
}

.artist-stat-card.stat-pink {
  background: linear-gradient(to bottom right, rgba(219, 39, 119, 0.2), rgba(157, 23, 77, 0.2));
}

.stat-card-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat-card-label {
  font-size: 0.875rem;
  color: #9ca3af;
  margin-bottom: 0.25rem;
}

.stat-card-value {
  font-size: 1.5rem;
  font-weight: 700;
}

.stat-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.stat-icon-blue {
  background-color: rgba(37, 99, 235, 0.3);
}

.stat-icon-purple {
  background-color: rgba(147, 51, 234, 0.3);
}

.stat-icon-pink {
  background-color: rgba(219, 39, 119, 0.3);
}

/* Original styles below */

.artistPage > .top {
  margin-top: 2rem;
  position: relative;
  padding: clamp(1rem, 4vw, 2.25rem) clamp(1rem, 5vw, 3.5rem);
  border: 0.0625rem solid var(--borderMain);
  background: var(--fade-base);
  backdrop-filter: blur(0.5rem);
  
  border-top-left-radius: 0.9375rem;
  border-top-right-radius: 0.9375rem;
  border-bottom-left-radius: 0.4375rem;
  border-bottom-right-radius: 0.4375rem;
}
.artistPage  > .top .metadata {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.75rem);
}


.albums-selector button {
  flex-shrink: 0;
}

.meta-hero {
  display: grid;
  grid-template-columns: clamp(6rem, 18vw, 11rem) 1fr;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
}

.meta-artwork {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 1.125rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0.625rem 1.875rem hsl(0 0% 0% / 0.35);
}
.meta-artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: saturate(1.05) contrast(1.02);
}
.meta-artwork:hover img {
  transform: scale(1.06);
}

.meta-primary h1 {
  margin: 0 0 0.25rem 0;
  font-size: clamp(1.375rem, 4.2vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: 0.0125rem;
}
.meta-sub {
  margin: 0.125rem 0 0.75rem 0;
  opacity: 0.8;
  font-size: clamp(0.75rem, 1.6vw, 0.875rem);
}
.meta-stats {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  opacity: 0.9;
}
.meta-stats span {
  padding: 0.375rem 0.625rem;
  border: 0.0625rem solid hsl(0 0% 100% / 0.08);
  border-radius: 62.4375rem;
  background: linear-gradient(180deg, hsl(0 0% 100% / 0.03), hsl(0 0% 100% / 0));
}
.meta-actions {
  display: flex;
  gap: 0.625rem;
  margin-top: 0.875rem;
}

.btn {
  padding: 0.625rem 0.875rem;
  border-radius: 0.75rem;
  background: hsl(220 16% 18%);
  border: 0.0625rem solid hsl(0 0% 100% / 0.08);
  font-weight: 600;
  letter-spacing: 0.0125rem;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover {
  transform: translateY(-0.0625rem);
  border-color: hsl(0 0% 100% / 0.16);
  box-shadow: 0 0.375rem 1.25rem hsl(220 60% 50% / 0.18);
}
.btn:active {
  transform: translateY(0);
}
.btn.accent {
  background: linear-gradient(180deg, hsl(215 90% 56%), hsl(215 86% 52%));
  border: 0.0625rem solid hsl(215 90% 60%);
  color: #fff;
}
.btn.ghost {
  background: transparent;
}

.meta-secondary {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(1rem, 2.4vw, 1.625rem);
  align-items: start;
}
.meta-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.meta-badges .badge {
  font-size: 0.75rem;
  padding: 0.375rem 0.625rem;
  border-radius: 62.4375rem;
  border: 0.0625rem dashed hsl(0 0% 100% / 0.12);
  background: hsl(220 16% 18% / 0.45);
}
.meta-about p {
  margin: 0;
  line-height: 1.6;
  opacity: 0.95;
}



.artistPage .fragments .similar {
/*  padding: clamp(1rem, 3.6vw, 2rem) clamp(1rem, 5vw, 3.5rem) clamp(1.5rem, 5vw, 3rem);*/
  display: grid;
  gap: clamp(0.875rem, 2.4vw, 1.5rem);
  padding: 0;
}
.similar-head h2 {
  margin: 0;
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  letter-spacing: 0.0125rem;
}
.similar-rows {
  display: grid;
  gap: clamp(0.625rem, 1.8vw, 1rem);
}

.marquee-row {
  position: relative;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent 0, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 6%, black 94%, transparent 100%);
  border-radius: 0.875rem;
}
.marquee-row .track {
  display: inline-flex;
  align-items: center;
  gap: var(--gap, 1.25rem);
  will-change: transform;
  animation: marquee-left linear var(--speed, 30s) infinite;
}
.marquee-row.right .track {
  animation-name: marquee-right;
}
.marquee-row:hover .track {
  animation-play-state: paused;
}


@keyframes marquee-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes marquee-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}



.similar-card {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 0.625rem;
  align-items: center;
  padding: 0.5rem 0.625rem;
  background: hsl(0 0% 100% / 0.03);
  border: 0.0625rem solid hsl(0 0% 100% / 0.06);
  border-radius: 0.75rem;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.similar-card:hover {
  transform: translateY(-0.125rem);
  background: hsl(0 0% 100% / 0.05);
  border-color: hsl(0 0% 100% / 0.12);
  box-shadow: 0 0.625rem 1.5rem hsl(220 60% 50% / 0.18);
}
.similar-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  overflow: hidden;
}
.similar-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.similar-meta {
  display: grid;
  align-items: center;
}
.similar-name {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.2;
}
.similar-sub {
  opacity: 0.75;
  font-size: 0.75rem;
  line-height: 1.2;
}
@media (max-width: 55rem) {
  .meta-secondary {
    grid-template-columns: 1fr;
  }
  .meta-hero {
    grid-template-columns: 5.5rem 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-row .track {
    animation: none;
    transform: translateX(0);
  }
}

.similar-rows {
  display: grid;
  gap: clamp(0.625rem, 1.8vw, 1rem);
}
.names-row {
  position: relative;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent 0, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 6%, black 94%, transparent 100%);
  border-radius: 0.875rem;
}
.names-track {
  display: inline-flex;
  align-items: center;
  gap: var(--gap, 1.125rem);
  will-change: transform;
  animation: names-left linear var(--speed, 30s) infinite;
}
.names-row.right .names-track {
  animation-name: names-right;
}
@keyframes names-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes names-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.names-row:hover .names-track {
  animation-play-state: paused;
}

.name-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.85rem;
  
/** 
  border-radius: 62.4375rem;
  border: 0.0625rem solid hsl(0 0% 100% / 0.12);
  background: hsl(0 0% 100% / 0.04);
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;  
**/

  font-size: 2.25rem;
  font-weight: bold;
  letter-spacing: 0.1156rem;
  line-height: 1.5;
  white-space: nowrap;
  text-decoration: none;


color: var(--text-300);
}
.name-pill:hover {
/*""
  transform: translateY(-0.125rem);
  background: hsl(0 0% 100% / 0.07);
  border-color: hsl(0 0% 100% / 0.2);
  box-shadow: 0 0.5rem 1.125rem hsl(220 60% 50% / 0.18);
**/
color: var(--text-100);
}
.name-pill:active {
  transform: translateY(0);
}





.genre-tag {
  padding: 0.375rem 0.75rem;
  border: 0.0625rem solid var(--border-200);
  border-radius: 1rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.genre-tag:hover {
  background: var(--accent-primary);
  color: var(--text-on-accent);
  transform: scale(1.05);
}

.gradient-text {
  background: var(--gradRainbow);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-flow 8s ease infinite;
}

.similar-artist {
  padding: 0.5rem 1rem;
  background: var(--background-500);
  border: 0.0625rem solid var(--border-200);
  border-radius: 1.25rem;
  color: var(--text-100);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: all var(--transition-fast);
  will-change: background-color, transform;
}

.similar-artist:hover {
  background: var(--accent-primary);
  color: var(--text-on-accent);
  box-shadow: var(--shadow-sm);
  transform: translateY(-0.125rem);
}

.album-selector {
  margin-bottom: 2rem;
}

.album-selector {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
  padding: 0.25rem 0;
  mask-image: linear-gradient(90deg, transparent 0, black 1.5rem, black calc(100% - 1.5rem), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 1.5rem, black calc(100% - 1.5rem), transparent 100%);
}

.album-selector:hover .album-tab:not(.active) {
  opacity: 1;
  transition: all 0.45s ease-in-out;
}

.album-selector::-webkit-scrollbar {
  display: none;
}

.album-tab {
  flex: 0 0 auto;
  padding: 0.5rem 1rem;
  background: var(--background-600);
  border-radius: 0.5rem;
  color: var(--text-300);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  border: 0.0625rem dashed transparent;
  opacity: 0.25;
  transition: all var(--transition-smooth);
}
.album-tab.active {
  background: var(--accent-primary);
  color: var(--text-on-accent);
  box-shadow: var(--shadow-sm);
  opacity: 1;
  transition: var(--transition-smooth);
}
.album-tab:hover:not(.active) {
  background: var(--background-500);
  color: var(--text-100);
  transform: translateY(-0.0625rem);
  border: 0.0625rem dashed var(--border-accent);
  transition: all 0.45s ease-in-out;
}

.album-content {
  padding: 1rem;
  opacity: 1;
  transform: translateY(0);
  transition: all var(--transition-base);
}
.album-content.fade-out {
  opacity: 0;
  pointer-events: none;
  transform: translateY(1.25rem);
}
.album-content.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.artistTop {
  --artist-header-height: 17.5rem;
  --avatar-size: 6.25rem;
  --action-button-height: 1.875rem;
  --tag-spacing: 0.5rem;
  --content-max-width: 75rem;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  overflow: hidden;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
  margin-top: 2rem;
  justify-content: center;
  border-top-right-radius: 0.9375rem;
  border-top-left-radius: 0.9375rem;
  border-bottom-left-radius: 0.3125rem;
  border-bottom-right-radius: 0.3125rem;
}

.artist-header {
  position: relative;
  margin-top: 4rem;
  height: var(--artist-header-height);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 2rem 2rem;
}

.content-wrapper {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 1rem;
  max-width: fit-content;
  margin: 0 auto;
}

.artist-avatar {
  width: var(--avatar-size);
  height: var(--avatar-size);
  flex-shrink: 0;
  border-radius: 50%;
  border: 0.25rem solid var(--background-canvas);
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.3);
  background: var(--background-600);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.artist-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.artist-avatar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 60%);
  border-radius: 50%;
}

.artist-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  padding-bottom: 0;
  flex: unset;
}

.metadata-tags {
  display: flex;
  flex-direction: column;
  gap: var(--tag-spacing);
}
.metadata-tags span {
  background: var(--background-500);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.375rem 0.75rem;
  border-radius: 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.0312rem;
  transition: all 0.2s ease;
}
.metadata-tags span:hover {
  background: var(--background-700);
  transform: translateY(-0.0625rem);
}

.action-buttons {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
.action-buttons button {
  height: var(--action-button-height);
  padding: 0.625rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.0312rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.action-buttons .play {
  background: linear-gradient(to right, #4a8eff, #6d5ff6);
  color: white;
  box-shadow: 0 0.25rem 0.75rem rgba(74, 142, 255, 0.3);
}
.action-buttons .play:hover {
  transform: translateY(-0.125rem);
  box-shadow: 0 0.375rem 1rem rgba(74, 142, 255, 0.4);
}
.action-buttons .follow {
  background: var(--background-inset);
  color: rgba(255, 255, 255, 0.9);
  border: 0.0625rem solid var(--background-700);
}
.action-buttons .follow:hover {
  background: var(--background-600);
  transform: translateY(-0.125rem);
}
