/* Container */

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

@media (min-width: 640px) {
  .container {
    max-width: 600px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 728px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 980px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1180px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1480px;
  }
}

/* Layout */

.skeleton-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.skeleton-header {
  height: 70px;
  display: flex;
  align-items: center;
}

.skeleton-header .container {
  display: flex;
  align-items: center;
}

.skeleton-logo {
  width: 140px;
  height: 30px;
  background: #e5e5e5;
  border-radius: 6px;
  animation: pulse 1.5s infinite ease-in-out;
}

/* Main Section */
.skeleton-main {
  flex: 1;
  display: flex;
  align-items: center;
}

.skeleton-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* Content */
.skeleton-content {
  flex: 1;
  animation: pulse 1.5s infinite ease-in-out;
}

.skeleton-line {
  height: 10px;
  background: #e5e5e5;
  border-radius: 999px;
  margin-bottom: 18px;
}

.line-1 {
  width: 60%;
  height: 16px;
}
.line-2 {
  width: 90%;
}
.line-3 {
  width: 80%;
}
.line-4 {
  width: 70%;
}

.skeleton-button {
  margin-top: 20px;
  height: 45px;
  width: 160px;
  background: #e5e5e5;
  border-radius: 8px;
}

/* Image */
.skeleton-image {
  flex: 1;
  height: 380px;
  background: #e5e5e5;
  border-radius: 16px;
  animation: pulse 1.5s infinite ease-in-out;
}

/* Animation */
@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  .skeleton-flex {
    flex-direction: column;
    gap: 40px;
  }

  .skeleton-image {
    width: 100%;
    max-width: 400px;
  }
}
