
.fuji-container { 
  display: flex; 
  justify-content: center; 
  align-items: center;
  gap: 20px;
  background-color: #e5e5e5; 
  padding: 20px; 
}


.fuji-card { 
  background-color: #faf9f6; 
  padding: 15px 15px 35px 15px; 
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); 
  border-radius: 2px; 
}


.fuji-card.standard {
  width: 300px;
}
.fuji-card.standard .fuji-image-wrapper {
  aspect-ratio: 4 / 3;
}


.fuji-card.long {
  width: 250px;
}
.fuji-card.long .fuji-image-wrapper {
  aspect-ratio: 3 / 5;
}


.fuji-image-wrapper { 
  position: relative; 
  overflow: hidden; 
  background-color: #000; 
}


.fuji-image-wrapper img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block; 
  filter: contrast(1.1) brightness(0.95) saturate(1.1) sepia(0.15); 
}


.fuji-image-wrapper::after { 
  content: ""; 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  background-color: rgba(230, 150, 40, 0.15); 
  mix-blend-mode: color-burn; 
  pointer-events: none; 
}


.fuji-footer { 
  display: flex; 
  justify-content: flex-end; 
  margin-top: 15px; 
  padding-right: 5px; 
}

.fuji-date { 
  font-family: 'Courier New', Courier, monospace; 
  font-weight: bold; 
  color: #ff6600; 
  font-size: 14px; 
  letter-spacing: 2px; 
  opacity: 0.85; 
  text-shadow: 0 0 2px rgba(255, 102, 0, 0.5); 
}
