.elementor-13671 .elementor-element.elementor-element-4256ce27{--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-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-13671 .elementor-element.elementor-element-75494f28{text-align:center;}.elementor-13671 .elementor-element.elementor-element-f620f89{--e-filter-direction:row;--e-filter-white-space:nowrap;--e-filter-wrap:wrap;--e-filter-overflow-x:initial;}.elementor-widget-loop-grid .elementor-button{background-color:var( --e-global-color-accent );font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}.elementor-widget-loop-grid .elementor-pagination{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-loop-grid .e-load-more-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-13671 .elementor-element.elementor-element-f8f7c24{--grid-columns:3;}.elementor-13671 .elementor-element.elementor-element-f8f7c24 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-13671 .elementor-element.elementor-element-f8f7c24 .elementor-pagination{text-align:center;}body:not(.rtl) .elementor-13671 .elementor-element.elementor-element-f8f7c24 .elementor-pagination .page-numbers:not(:first-child){margin-left:calc( 10px/2 );}body:not(.rtl) .elementor-13671 .elementor-element.elementor-element-f8f7c24 .elementor-pagination .page-numbers:not(:last-child){margin-right:calc( 10px/2 );}body.rtl .elementor-13671 .elementor-element.elementor-element-f8f7c24 .elementor-pagination .page-numbers:not(:first-child){margin-right:calc( 10px/2 );}body.rtl .elementor-13671 .elementor-element.elementor-element-f8f7c24 .elementor-pagination .page-numbers:not(:last-child){margin-left:calc( 10px/2 );}@media(max-width:1024px){.elementor-13671 .elementor-element.elementor-element-f8f7c24{--grid-columns:2;}}@media(max-width:767px){.elementor-13671 .elementor-element.elementor-element-f8f7c24{--grid-columns:1;}}/* Start custom CSS for loop-grid, class: .elementor-element-f8f7c24 *//* ============================================================
   BLOG LOOP UPGRADE — hs.astera.co.id (DISESUAIKAN DENGAN HTML ASLI)
   Paste ke: Elementor > Section/Page > Advanced > Custom CSS
   ATAU di: Elementor Settings > Custom CSS (Global)

   Catatan penyesuaian:
   - ID elemen gambar diganti dari 5ef8e29 -> 54d6ab45
   - ID elemen judul diganti dari f703d19 -> 28318f97
   - Wrapper .elementor-1492 diganti -> .elementor-13676
     (ini scope class loop template yang benar-benar ada di HTML)
   - "Read More" arrow sekarang nempel di widget judul (28318f97)
     karena di HTML tidak ada wrapper konten terpisah
   - Fixed missing semicolon setelah padding di section Read More
   ============================================================ */


/* ──────────────────────────────────────────
   1. GRID CONTAINER — 3 kolom, gap rapi
   ────────────────────────────────────────── */
.elementor-loop-container.elementor-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 28px !important;
  align-items: start !important;
}

/* Tablet: 2 kolom */
@media (max-width: 1024px) {
  .elementor-loop-container.elementor-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}

/* Mobile: 1 kolom */
@media (max-width: 640px) {
  .elementor-loop-container.elementor-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}


/* ──────────────────────────────────────────
   2. LOOP ITEM — Card dengan hover effect
   ────────────────────────────────────────── */
.e-loop-item {
  background: #ffffff !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  border: 1px solid #ede8e0 !important;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.35s ease !important;
  position: relative !important;
}

.e-loop-item:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 48px rgba(15, 31, 61, 0.10) !important;
  border-color: #c9a96e !important;
}


/* ──────────────────────────────────────────
   3. FEATURED IMAGE — Zoom on hover
   (ID asli di HTML: elementor-element-54d6ab45)
   ────────────────────────────────────────── */
.elementor-element-54d6ab45 {
  overflow: hidden !important;
  display: block !important;
  line-height: 0 !important;
}

.elementor-element-54d6ab45 img {
  width: 100% !important;
  height: 220px !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.e-loop-item:hover .elementor-element-54d6ab45 img {
  transform: scale(1.06) !important;
}


/* ──────────────────────────────────────────
   4. GOLD LINE ACCENT — muncul di bawah gambar
   ────────────────────────────────────────── */
.elementor-element-54d6ab45::after {
  content: '' !important;
  display: block !important;
  width: 0 !important;
  height: 2px !important;
  background: #c9a96e !important;
  transition: width 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.e-loop-item:hover .elementor-element-54d6ab45::after {
  width: 100% !important;
}


/* ──────────────────────────────────────────
   5. CONTAINER INNER — Padding konten
   (scope diganti .elementor-1492 -> .elementor-13676,
   ini class yang benar-benar bungkus loop item di HTML)
   ────────────────────────────────────────── */
.elementor-13676 .e-con-inner {
  padding: 0 !important;
  flex-direction: column !important;
}

/* Widget judul (28318f97) dijadikan pembungkus padding konten,
   karena tidak ada wrapper konten terpisah di HTML */
.elementor-element-28318f97 {
  padding: 18px 20px 22px !important;
  display: block !important;
}


/* ──────────────────────────────────────────
   6. POST TITLE — Typography upgrade
   ────────────────────────────────────────── */
.elementor-element-28318f97 .elementor-heading-title {
  font-family: "Lato", sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
  letter-spacing: -0.01em !important;
  color: #1a1a2e !important;
  margin: 0 !important;
}

.elementor-element-28318f97 .elementor-heading-title a {
  color: #1a1a2e !important;
  text-decoration: none !important;
  display: block !important;
  transition: color 0.25s ease !important;
}

.elementor-element-28318f97 .elementor-heading-title a:hover {
  color: #c9a96e !important;
}


/* ──────────────────────────────────────────
   7. READ MORE INDICATOR — pseudo arrow
   ────────────────────────────────────────── */
.elementor-element-28318f97::after {
  content: 'Read More →' !important;
  display: block !important;
  font-family: "Lato", sans-serif !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: #c9a96e !important;
  margin-top: 10px !important;
  padding: 0 0 18px 0 !important;
  opacity: 0 !important;
  transform: translateY(4px) !important;
  transition: opacity 0.3s ease, transform 0.3s ease !important;
}

.e-loop-item:hover .elementor-element-28318f97::after {
  opacity: 1 !important;
  transform: translateY(0) !important;
}


/* ──────────────────────────────────────────
   8. PAGINATION — Style upgrade
   ────────────────────────────────────────── */
.elementor-pagination {
  text-align: center !important;
  margin-top: 48px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
}

.elementor-pagination .page-numbers {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  font-family: "Lato", sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #6b7280 !important;
  text-decoration: none !important;
  border: 1px solid #e5e0d8 !important;
  background: transparent !important;
  transition: all 0.25s ease !important;
}

.elementor-pagination .page-numbers:hover {
  background: #1a1a2e !important;
  color: #ffffff !important;
  border-color: #1a1a2e !important;
}

.elementor-pagination .page-numbers.current {
  background: #c9a96e !important;
  color: #ffffff !important;
  border-color: #c9a96e !important;
}


/* ──────────────────────────────────────────
   9. CONTAINER BOXED — reset padding bawaan
   (scope diganti .elementor-1492 -> .elementor-13676)
   ────────────────────────────────────────── */
.elementor-13676 .e-con-boxed {
  padding: 0 !important;
  --padding-top: 0px !important;
  --padding-bottom: 0px !important;
  --padding-left: 0px !important;
  --padding-right: 0px !important;
}/* End custom CSS */