* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  color: white;
}

body {
  background: #0d192b;
  font-family: 'Outfit', sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  width: 100%;
  max-width: 1440px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.card {
  background: #14253d;
  border-radius: 15px;
  padding: 24px;
  max-width: 350px;
  width: 100%;
}

.card__images {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
}

.card__image {
  width: 100%;
  height: auto;
  display: block;
}

.card__images-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card__images:hover .card__images-layer {
  opacity: 1;
}

.card__view-icon {
  width: 48px;
  height: 48px;
}

.card__title h1 {
  color: white;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
}

.card__title p {
  color: #8bacda;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.card__time {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #2f415b;
}

.card__time-left, .card__time-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.card__time-left span {
  color: #00fff7;
  font-weight: 600;
}

.card__time-right span {
  color: #8bacda;
}

.card__creator {
  display: flex;
  align-items: center;
  gap: 16px;
}

.card__creator-image {
  width: 33px;
  height: 33px;
  border: 1px solid white;
  border-radius: 50%;
}

.card__creator p {
  color: #8bacda;
}

.card__creator span {
  color: white;
}

.attribution {
  color: #8bacda;
  text-align: center;
  font-size: 14px;
}

.attribution a {
  color: #00fff7;
  text-decoration: none;
}

.attribution a:hover {
  text-decoration: underline;
}

@media (max-width: 375px) {
  .card {
    padding: 20px;
  }
  
  .card__title h1 {
    font-size: 20px;
  }
  
  .card__title p {
    font-size: 16px;
  }
}
