/*
Theme Name: Eksell 5-Column Child
Theme URI: https://wordpress.org/themes/eksell/
Description: Child theme for Eksell that adds a 5-column option to the archive post grid.
Author: (Your Name)
Template: eksell
Version: 1.0.0
Text Domain: eksell-5col-child
*/

/* Ensure parent styles load first; WP will enqueue parent + this stylesheet via functions.php. */

/* 5-column grid helpers (12-col system can't express 5 equal columns) */
.cols-5col > .col { width: 20%; }
@media ( min-width: 700px ) {
  .cols-t-5col > .col { width: 20%; }
}
@media ( min-width: 1000px ) {
  .cols-tl-5col > .col { width: 20%; }
}
@media ( min-width: 1200px ) {
  .cols-d-5col > .col { width: 20%; }
}
@media ( min-width: 1600px ) {
  .cols-dl-5col > .col { width: 20%; }
}
