/*
Theme Name: Projekt363 Block Theme
Theme URI: https://www.projekt363.ee/
Author: OpenAI for Projekt363
Author URI: https://www.projekt363.ee/
Description: Custom WordPress block theme starter for Projekt363. Includes Projects and Services post types, project-to-service relationships, and a clean high-contrast architectural style.
Requires at least: 6.6
Tested up to: 6.8
Requires PHP: 8.1
Version: 0.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: projekt363
Tags: block-theme, full-site-editing, custom-colors, custom-logo, featured-images
*/

/* Base stylesheet intentionally small. Most visual system lives in theme.json. */
.p363-card-image img,
.wp-block-post-featured-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

@media (min-width: 782px) {
  .p363-card-image img,
  .wp-block-post-featured-image img {
    filter: grayscale(100%);
    transition: filter .5s ease;
  }

  .p363-card:hover .p363-card-image img,
  .wp-block-post:hover .wp-block-post-featured-image img,
  .wp-block-post-featured-image:hover img {
    filter: grayscale(0%);
  }
}

.p363-muted {
  color: var(--wp--preset--color--muted);
}

.p363-eyebrow {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 0.85rem;
}

.p363-service-badges,
.p363-project-services {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.p363-service-badges a,
.p363-project-services a {
  text-decoration: none;
  border: 1px solid currentColor;
  padding: .3rem .65rem;
  font-size: .9rem;
}
