/*
Theme Name: Brainforest Wordpress Starter FSE
Theme URI: https://bitbucket.org/rekyl/brainforest-wordpress-starter
Author: Brainforest
Author URI: https://brainforest.se/
Description: Brainforest default starter theme.
Requires at least: 6.7
Tested up to: 6.7
Requires PHP: 7.2
Version: 1.0.2
Text Domain: brainforest
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news
*/

/*
 * Link styles
 * https://github.com/WordPress/gutenberg/issues/42319
 */
a {
  text-decoration-thickness: 1px !important;
  text-underline-offset: 0.1em;
}

:root :where(.wp-block-button__link.has-gradient-3-gradient-background:hover) {
  background: linear-gradient(to bottom, #ffc032 0%, #ffa90a 100%) !important;
}

:root :where(.wp-block-button__link.has-gradient-4-gradient-background:hover) {
  background: linear-gradient(to bottom, #8acb50 0%, #6cb032 100%) !important;
}

.logos {
  overflow: hidden;
  padding: 30px 0;
  position: relative;
}

.logos::before,
.logos::after {
  position: absolute;
  top: 0;
  content: '';
  width: 32px;
  height: 100%;
  z-index: 2;
}

.logos::before {
  left: 0;
  background: linear-gradient(to left, rgba(248, 246, 244, 0), rgb(248, 246, 244));
}

.logos::after {
  right: 0;
  background: linear-gradient(to right, rgba(248, 246, 244, 0), rgb(248, 246, 244));
}

.logos__track {
  width: max-content;
  will-change: transform;
  animation: marquee 40s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.logos:hover .logos__track {
  animation-play-state: paused;
}

.logos__track > figure {
  flex: 0 0 auto;
}

@media (min-width: 768px) {
.logos::before,
.logos::after {
  width: 250px;
}


@media (max-width: 767px) {
  .site-footer .wp-block-social-links .wp-social-link span:not(.screen-reader-text) {
    display: none;
  }
}
