/*!*
 * @package   ats
 * @copyright Copyright (c)2011-2026 Nicholas K. Dionysopoulos / Akeeba Ltd
 * @license   GNU General Public License version 3, or later
 */

@use '../common/include-media' as *;

@mixin ats_category_category
{
  .row:first-of-type {
    margin-bottom: 1em;
    display: flex;
    gap: .5em;
    flex-direction: column;
    align-items: center;
    @include media(">=tablet") {
      flex-direction: row;
      align-items: stretch;
      .ats-category-image {
        flex-basis: 17%;
      }
    }

    .col {
      flex-grow: 1;
    }
  }

  .ats-category-quickbuttons {
    display: flex;

    .flex-grow-1 {
      flex-grow: 1;
    }
  }
}
