/*
Theme Name: Salient Child Theme
Description: This is a custom child theme for Salient
Theme URI:   https://themeforest.net/item/salient-responsive-multipurpose-theme/4363266
Author: ThemeNectar
Author URI:  https://themeforest.net/user/themenectar
Template: salient
Version: 1.0
*/


/* Make the .rok-col a flex container */
.rok-col .wpb_wrapper{
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* space between columns */
}

/* Each .make-flex block is treated as a column item */
.rok-col .wpb_raw_code {
  flex: 1 1 100%; /* full width by default (mobile) */
}

/* On laptops and above → 2 columns */
@media (min-width: 992px) {
  .rok-col .wpb_raw_code{
    flex: 1 1 calc(50% - 20px);
  }
}


