.elementor-11090 .elementor-element.elementor-element-edff19a{--display:flex;}/* Start custom CSS for text-editor, class: .elementor-element-cc20c44 *//* =========================
   BDJ Blog Post — Solid Blue Style
========================= */

.bdj-blog-post {
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-family: inherit;
  color: #ffffff; /* Bijeli tekst globalno */
}

/* SOLID BLUE CARD (zamjena za Glass) */
.bdj-glass-card {
  background: #1bbbff; /* Tvoja plava */
  border: none;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(27, 187, 255, 0.25); /* Blaga plava sjenka */
  color: #ffffff;
}

/* Headings */
.bdj-blog-post h1 {
  font-size: 32px;
  margin: 0 0 20px 0;
  color: #ffffff;
  line-height: 1.2;
  font-weight: 800;
}

.bdj-blog-post h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  color: #ffffff;
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 10px;
  display: inline-block;
}

.bdj-blog-post h4 {
  font-size: 19px;
  margin: 0 0 10px 0;
  color: #ffffff; /* Sad je bijeli jer je pozadina plava */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bdj-blog-post p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #ffffff;
}

.bdj-blog-post p:last-child {
  margin-bottom: 0;
}

/* Intro Text */
.bdj-intro {
  font-size: 18px !important;
  font-weight: 500;
  color: #ffffff;
}

/* Grid Layout */
.bdj-grid-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.bdj-grid-section.bdj-reverse {
  direction: rtl;
}
.bdj-grid-section.bdj-reverse > * {
  direction: ltr;
}

/* Image Cards */
.bdj-image-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  height: 100%;
  min-height: 300px;
  border: 4px solid #1bbbff; /* Plavi okvir oko slike */
}

.bdj-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.bdj-image-card:hover img {
  transform: scale(1.05);
}

/* Check Lists */
.bdj-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.bdj-check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
}

.bdj-check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: #ffffff; /* Bijela kvačica */
  font-weight: bold;
  background: rgba(255,255,255,0.2);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
}

/* Step-by-Step Grid */
.bdj-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.bdj-step-item {
  background: rgba(255, 255, 255, 0.15); /* Malo svjetlija plava */
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  padding: 20px;
  transition: background 0.3s ease;
}

.bdj-step-item:hover {
  background: rgba(255, 255, 255, 0.25);
}

.bdj-step-full {
  grid-column: span 2;
}

.bdj-step-num {
  display: inline-block;
  background: #ffffff;
  color: #1bbbff; /* Plavi broj */
  width: 32px;
  height: 32px;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.bdj-subtitle {
  font-style: italic;
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.8) !important;
  margin-top: -10px;
  margin-bottom: 20px;
}

/* Video Buttons */
.bdj-video-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.bdj-video-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  background: #ffffff; /* Bijelo dugme */
  color: #1bbbff;     /* Plavi tekst */
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.bdj-video-btn:hover {
  background: #f0f9ff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  color: #0ea5e9;
}

/* Footer Signature */
.bdj-signature {
  margin-top: 30px;
  text-align: right;
  font-size: 18px;
  color: #ffffff;
  border-top: 1px solid rgba(255,255,255,0.4);
  padding-top: 20px;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 991px) {
  .bdj-grid-section {
    grid-template-columns: 1fr;
  }
  
  .bdj-image-card {
    order: -1;
    min-height: 250px;
  }
  
  .bdj-steps-grid {
    grid-template-columns: 1fr;
  }
  
  .bdj-step-full {
    grid-column: span 1;
  }
}

@media (max-width: 767px) {
  .bdj-glass-card {
    padding: 20px;
    border-radius: 14px;
  }
  
  .bdj-blog-post h1 {
    font-size: 26px;
  }
}
/* FORCE: image under text (all screens) */
.bdj-grid-section{
  grid-template-columns: 1fr !important;  /* umjesto 2 kolone */
}

/* Ukloni reverse trik jer više ne treba */
.bdj-grid-section.bdj-reverse{
  direction: ltr !important;
}

/* Slika da izgleda lijepo u 1 koloni */
.bdj-image-card{
  min-height: 380px;  /* možeš 320-450 po želji */
}

@media (max-width: 767px){
  .bdj-image-card{
    min-height: 240px;
  }
}/* End custom CSS */