.elementor-93 .elementor-element.elementor-element-163f20c{--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-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for text-editor, class: .elementor-element-dfb0515 */body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
}

/* Section Container */
.video-section {
  margin: 100px 0; /* top and bottom spacing */
  padding: 0 20px;
}

/* Section Header */
.section-header {
  text-align: left;
  margin-bottom: 40px;
}

.section-header .subtitle {
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #ef6330;
  display: block;
  margin-bottom: 5px;
}

.section-header .main-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 1px;
  margin: 0;
  color: #222;
}

/* Video Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Video Card */
.video-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Video */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Video Title */
.video-title {
  padding: 15px;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  color: #333;
  background: #fafafa;
  border-top: 3px solid #ef6330;
}

/* Responsive */
@media (max-width: 1024px) {
  .section-header .main-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
  .section-header .main-title {
    font-size: 28px;
  }
}/* End custom CSS */