
.dett_news .pt-50 { padding-top: 50px; }
.dett_news .pt-40 { padding-top: 40px; }
.dett_news .pt-30 { padding-top: 30px; }
.dett_news .pt-20 { padding-top: 20px; }
.dett_news .pt-10 { padding-top: 10px; }

.dett_news .mt-50 { margin-top: 50px; }
.dett_news .mt-40 { margin-top: 40px; }
.dett_news .mt-30 { margin-top: 30px; }
.dett_news .mt-20 { margin-top: 20px; }
.dett_news .mt-10 { margin-top: 10px; }

.dett_news .pb-50 { padding-bottom: 50px; }
.dett_news .pb-40 { padding-bottom: 40px; }
.dett_news .pb-30 { padding-bottom: 30px; }
.dett_news .pb-20 { padding-bottom: 20px; }
.dett_news .pb-10 { padding-bottom: 10px; }

.dett_news .mb-50 { margin-bottom: 50px; }
.dett_news .mb-40 { margin-bottom: 40px; }
.dett_news .mb-30 { margin-bottom: 30px; }
.dett_news .mb-20 { margin-bottom: 20px; }
.dett_news .mb-10 { margin-bottom: 10px; }

/* TinyMCE image styles */
.dett_news img.img-full {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  margin: 10px 0 !important;
}
.dett_news img.img-left {
  float: left !important;
  max-width: 50% !important;
  height: auto !important;
  margin: 4px 16px 10px 0 !important;
}
.dett_news img.img-right {
  float: right !important;
  max-width: 50% !important;
  height: auto !important;
  margin: 4px 0 10px 16px !important;
}
.dett_news img.img-center {
  display: block !important;
  max-width: 80% !important;
  height: auto !important;
  margin: 10px auto !important;
}

/* TinyMCE image effects */
.dett_news img.img-border {
  border: 4px solid #ffffff !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08) !important;
}
.dett_news img.img-shadow {
  box-shadow: 0 12px 28px rgba(0,0,0,0.18) !important;
}
.dett_news img.img-round {
  border-radius: 12px !important;
}

/* TinyMCE gallery 2 columns */
.dett_news div.gallery-2col {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
  align-items: start !important;
}
.dett_news div.gallery-2col img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
}

/* TinyMCE gallery 3 columns */
.dett_news div.gallery-3col {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
  align-items: start !important;
}
.dett_news div.gallery-3col img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
}

/* Responsive gallery: 1 column on mobile */
@media (max-width: 768px) {
  .dett_news div.gallery-responsive {
    grid-template-columns: 1fr !important;
  }
}