/*!
Theme Name: Blocksy
Theme URI: https://creativethemes.com/blocksy/
Author: CreativeThemes
Author URI: https://creativethemes.com
Description: Blocksy is a fast, modern WordPress theme with advanced WooCommerce support and full compatibility with the block editor.
Version: 2.1.21
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Copyright: (c) 2019 CreativeThemes.
Requires at least: 6.5
Requires PHP: 7.0
Tested up to: 6.8
Text Domain: blocksy
Blocksy Minimum Companion Version: 2.0.74-beta1
Tags: accessibility-ready, blog, block-patterns, e-commerce, wide-blocks, block-styles, grid-layout, one-column, two-columns, three-columns, four-columns, right-sidebar, left-sidebar, translation-ready, custom-colors, custom-logo, custom-menu, featured-images, footer-widgets, full-width-template, theme-options, threaded-comments
*/
.accordion-container {
  margin-top: 24px;
}

.accordion {
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.accordion-item + .accordion-item {
  border-top: 1px solid rgba(0,0,0,.08);
}

/* Title (у тебя summary.accordion-title) */
.accordion-title {
  list-style: none;           /* убирает маркер summary */
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 16px 18px;
  margin: 0;

  font-weight: 700;
  line-height: 1.25;

  position: relative;
  outline: none;
}

/* убираем дефолтный маркер у summary в webkit */
.accordion-title::-webkit-details-marker {
  display: none;
}

/* caret */
.accordion-title::after {
  content: "›";
  transform: rotate(90deg);
  font-size: 20px;
  line-height: 1;
  opacity: .7;
  transition: transform .2s ease, opacity .2s ease;
}

.accordion-title.is-active::after {
  transform: rotate(-90deg);
  opacity: 1;
}

.accordion-title:hover {
  background: rgba(0,0,0,.03);
}

.accordion-content {
  padding: 0 18px 16px;
}

.accordion-content p:last-child {
  margin-bottom: 0;
}

/* optional: open state background */
.accordion-item.is-open > .accordion-title {
  background: rgba(0,0,0,.02);
}