/**
* 2007-2025 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2025 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/

#module-author_list-authorlist section#wrapper {
  margin-top: 20px;
}

#module-author_list-authorlist h1 {
  text-transform: uppercase;
}

.author-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 50px;
  margin-top: 20px;
  padding: 0 10px;
  justify-content: center;
}

.author-list {
    width: 300px;
    margin: 16px 20px 0 0;
    padding: 10px 0 0 0;
    background-color: #f7f7f7;
}

.author-item {
    border-bottom: 1px solid #80808052;
    padding: 6px;
    font-size: 14px;
    margin: 0 10px 10px 10px;
}

.author-item:last-child {
  border-bottom: none;
}

.author-item a {
font-size: 15px;
}

.author-card {
  width: 200px;
  text-align: center;
}

.author-card img {
  width: 100%;
  height: auto;
  border-radius: 0;
  object-fit: cover;
}

.author-name {
  margin-top: 10px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.9rem;
}

#module-author_list-authorlist #wrapper .row {
  display: flex;
}

#module-author_list-authorlist .page-content .row {
  /* width: 80vw; */
}



#module-author_list-authorlist #wrapper .sidebar {
  max-width: 300px;
  margin-left: 15px;
}

#module-author_list-authorlist div#content-wrapper {
  max-width: 1200px;
}

#module-author_list-authorlist .content {
  display: flex;
  align-items: center;
  gap: 30px;
}

#wrapper .breadcrumb {
  text-align: center;
}

.frameContainer {
  width: 200px;
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.frameContainer img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(1);
}

.frameContainer img:hover {
  transform: scale(1.1);
  filter: grayscale(0);
}

@media (max-width: 768px) {
  #module-author_list-authorlist #wrapper .row {
    display: flex;
    flex-direction: column;
  }

  .author-list {
    display: none;
   }

}


