body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #d88211, #fc4c07);
  color: #eee;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.logo {
  width: 50px;
  height: 50px;
  background: #ff3c3c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border-radius: 10px;
}

h1 {
  margin: 0;
  font-size: 22px;
}

.meta {
  font-size: 12px;
  opacity: 0.7;
}

.main-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.card {
  background: rgb(209, 89, 89);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.section {
  margin-bottom: 20px;
}

.long-read {
  line-height: 1.6;
  opacity: 0.9;
}

audio {
  width: 100%;
  margin-top: 10px;
}

.kategorije {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: #2a2a2a;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 12px;
}



#slider {
  position: relative;
  overflow: hidden;
  width: 300px;
  height: 300px;
  border-radius: 10px;
  background: #d15959;
}

#slider ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  height: 100%;
}

#slider li {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d15959;
}

#slider img {
  max-width: 90%; 
  max-height: 90%; 
  object-fit: contain; 
}



.control_prev,
.control_next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #d15959;
  padding: 10px;
  text-decoration: none;
  border-radius: 5px;
  z-index: 10;
  cursor: pointer;
}

.control_prev { left: 10px; }
.control_next { right: 10px; }

.slider_option {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.8;
}

footer {
  text-align: center;
  margin-top: 30px;
  font-size: 12px;
  opacity: 0.6;
}



@media (max-width: 768px) {
  .main-grid {
    grid-template-columns: 1fr;
  }
}