.elementor-137 .elementor-element.elementor-element-4d160f4{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-137 .elementor-element.elementor-element-c6398c9{width:100%;max-width:100%;}body.elementor-page-137{padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-c6398c9 *//* === ЗАГОЛОВОК СТОРІНКИ "ПУБЛІКАЦІЇ" === */
.volyn-publications-heading {
  text-align: center;
  padding: 60px 20px 40px;
  max-width: 900px;
  margin: 0 auto;
}

.volyn-publications-heading .vph-title {
  font-family: 'Cormorant SC', serif !important;
  font-weight: 700 !important;
  font-size: clamp(40px, 6vw, 72px) !important;
  letter-spacing: 6px !important;
  color: #1c1c1c !important;
  line-height: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
  text-transform: uppercase;
}

.volyn-publications-heading .vph-ornament {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin: 24px 0;
}

.volyn-publications-heading .vph-ornament .line {
  width: 70px;
  height: 1px;
  background: #8a3a2a;
  display: block;
}

.volyn-publications-heading .vph-ornament .diamond {
  width: 9px;
  height: 9px;
  background: #8a3a2a;
  transform: rotate(45deg);
  display: block;
}

.volyn-publications-heading .vph-subtitle {
  font-family: 'Cormorant Garamond', 'Old Standard TT', serif;
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.6;
  color: #5a4a3a;
  max-width: 640px;
  margin: 0 auto;
}

/* === СТОРІНКА ПУБЛІКАЦІЙ === */
.volyn-publications {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 60px;
  box-sizing: border-box;
}

/* === СПИСОК КАРТОК === */
.vp-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* === КАРТКА (горизонтальна, журнальний стиль) === */
.vp-card {
  display: block;
  border-bottom: 1px solid rgba(138, 58, 42, 0.18);
  transition: opacity 0.3s ease, background 0.3s ease;
}

.vp-card:first-child {
  border-top: 1px solid rgba(138, 58, 42, 0.18);
}

.vp-card:hover {
  background: rgba(138, 58, 42, 0.03);
}

.vp-card-link {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 36px;
  padding: 28px 0;
  text-decoration: none;
  color: inherit;
}

.vp-img {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #1c1c1c, #2c2c2c);
  overflow: hidden;
}

.vp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vp-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(138, 58, 42, 0.08) 0%, transparent 50%, rgba(138, 58, 42, 0.05) 100%), #2c2c2c;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.vp-img-placeholder::before {
  content: "";
  width: 50px;
  height: 50px;
  border: 1.5px solid rgba(138, 58, 42, 0.5);
  transform: rotate(45deg);
}

.vp-img-placeholder::after {
  content: "ФОТО";
  position: absolute;
  bottom: 20px;
  font-family: 'Cormorant SC', serif;
  font-size: 10px;
  letter-spacing: 4px;
  color: rgba(184, 173, 153, 0.3);
}

.vp-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6px 0;
}

.vp-meta-top {
  margin-bottom: 10px;
}

.vp-cat {
  font-family: 'Cormorant SC', serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: #8a3a2a;
  font-weight: 700;
  text-transform: uppercase;
}

.vp-title {
  font-family: 'Cormorant SC', serif !important;
  font-size: clamp(20px, 2vw, 26px) !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  line-height: 1.15 !important;
  color: #1c1c1c !important;
  margin: 0 0 14px 0 !important;
  padding: 0 !important;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.vp-card:hover .vp-title {
  color: #8a3a2a;
}

.vp-excerpt {
  font-family: 'Cormorant Garamond', 'Old Standard TT', serif;
  font-size: 16px;
  line-height: 1.6;
  color: #5a4a3a;
  margin: 0 0 16px 0;
  max-width: 600px;
}

.vp-meta-bottom {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: #8a3a2a;
  letter-spacing: 0.5px;
}

.vp-sep {
  margin: 0 6px;
  opacity: 0.5;
}

/* === АДАПТИВ === */
@media (max-width: 800px) {
  .volyn-publications {
    padding: 0 20px 40px;
  }
  
  .vp-card-link {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 0;
  }
  
  .vp-img {
    aspect-ratio: 16 / 10;
  }
  
  .vp-title {
    font-size: 20px !important;
    letter-spacing: 1.5px !important;
  }
  
  .vp-excerpt {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .volyn-publications-heading {
    padding: 40px 16px 30px;
  }
  
  .volyn-publications-heading .vph-subtitle {
    font-size: 17px;
  }
  
  .vp-title {
    font-size: 18px !important;
  }
}/* End custom CSS */