.strips-page {
  padding: 20px;
  background-color: #f9f9f9;
}

.strips-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.strip-slide {
  display: flex;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.strip-media {
  width: 40%;
}

.strip-media img {
  width: 100%;
  height: auto;
}

.strip-body {
  padding: 10px;
  width: 60%;
}

.strip-title {
  font-size: 1.2em;
  margin: 0;
}

.strip-excerpt {
  color: #666;
}

.strips-controls {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.strips-controls button {
  padding: 10px 15px;
  border: none;
  background-color: #007bff;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

.strips-controls button:disabled {
  background-color: #ccc;
}