/*
Theme Name: DMC Tema
Theme URI: https://example.com/dmc-lite
Author: DMC
Author URI: https://example.com
Description: Ultra-light WordPress theme built as a clean, fast base for Gutenberg and page builders.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dmc-lite
Tags: custom-logo, featured-images, block-styles, wide-blocks, translation-ready
*/

:root {
  --dmc-text: #151515;
  --dmc-muted: #666;
  --dmc-border: #e6e6e6;
  --dmc-link: #075bbb;
  --dmc-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--dmc-text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
}

img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--dmc-link);
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

a:hover {
  text-decoration-thickness: .12em;
}

button,
input,
select,
textarea {
  font: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 100000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: #fff;
  background: #111;
}

.site-header,
.site-footer,
.site-main {
  width: min(100% - 32px, var(--dmc-width));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 20px;
  border-bottom: 1px solid var(--dmc-border);
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.site-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.site-title a {
  color: inherit;
  text-decoration: none;
}

.site-description {
  margin: 2px 0 0;
  color: var(--dmc-muted);
  font-size: 14px;
}

.site-navigation ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-navigation a {
  color: inherit;
  text-decoration: none;
}

.site-navigation a:hover {
  color: var(--dmc-link);
}

.site-main {
  padding-block: 32px;
}

.site-main-full {
  width: 100%;
  max-width: none;
  padding-block: 0;
}

.site-main-full > .entry {
  margin: 0;
}

.site-main-canvas {
  width: 100%;
}

.entry {
  margin-block: 0 40px;
}

.entry-title {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
}

.entry-title a {
  color: inherit;
  text-decoration: none;
}

.entry-meta,
.entry-footer,
.page-header {
  color: var(--dmc-muted);
  font-size: 14px;
}

.entry-content > * {
  margin-top: 0;
}

.entry-content > * + * {
  margin-top: 1.1em;
}

.alignwide {
  max-width: min(100vw - 32px, 1280px);
  margin-inline: calc((100% - min(100vw - 32px, 1280px)) / 2);
}

.alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
}

.wp-caption,
.wp-caption-text,
.gallery-caption,
.bypostauthor {
  max-width: 100%;
}

.post-navigation,
.posts-navigation,
.pagination {
  margin-block: 32px;
}

.site-footer {
  padding-block: 24px;
  color: var(--dmc-muted);
  font-size: 14px;
  border-top: 1px solid var(--dmc-border);
}

@media (max-width: 700px) {
  .site-header {
    display: block;
  }

  .site-navigation {
    margin-top: 16px;
  }
}
