/**
 * @file
 * Styles for DP Views paragraph module.
 */

.dp-paragraph.views {
  width: 100%;
  padding: 0;
  box-sizing: border-box;
}

.dp-paragraph.views .dp-title-h2 {
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.3;
  color: #333333;
  font-weight: 700;
}

.dp-paragraph.views .dp-views-container {
  width: 100%;
}

.dp-paragraph.views .dp-views-text {
  width: 100%;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333333;
}

.dp-paragraph.views .dp-views-text p {
  margin: 0 0 15px 0;
}

.dp-paragraph.views .dp-views-text p:last-child {
  margin-bottom: 0;
}

.views-error {
  background-color: #f8d7da;
  color: #721c24;
  padding: 15px;
  border-radius: 5px;
  border: 1px solid #f5c6cb;
  text-align: center;
  margin: 20px 0;
}

/* Мобильные стили */
@media (max-width: 767px) {
  .dp-paragraph.views .dp-title-h2 {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }
  
  .dp-paragraph.views .dp-views-text {
    font-size: 1rem;
  }
}

/* Десктопные стили */
@media (min-width: 1024px) {
  .dp-paragraph.views .dp-title-h2 {
    font-size: 2.8rem;
    margin-bottom: 50px;
  }
}