@tailwind base;
@tailwind components;
@tailwind utilities;

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

:root {
  --font-sans: 'Inter', sans-serif;
}

/* Глобальные стили */
body {
    font-family: var(--font-sans);
    font-size: 16px;
    color: #332E2E;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 600;
    color: #332E2E;
}

h1 { font-size: 32px; }
h2 { font-size: 28px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

a {
    text-decoration: none;
    color: #332E2E;
    transition: color 0.3s ease-in-out;
}

a:hover {
    color: #a2a2a2;
}

strong, b {
  font-weight: 900; /* или даже 800 для супер жирного */
  text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.2); /* Легкая тень для усиления эффекта */
}

h1, h2, h3 {
  font-weight: 800;
  color: #333333;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}


.article-content p {
    font-size: 18px;
    margin-top: 20px;
    font-weight: 300;
}

.article-content h1 {
    font-size: 28px;
    font-weight: bold;
    margin-top: 20px;
    color: #333333;
}

.article-content h2 {
    font-size: 26px;
    font-weight: bold;
    margin-top: 20px;
    color: #333333;
}

.article-content h3 {
    font-size: 24px;
    font-weight: bold;
    margin-top: 20px;
    color: #333333;
}

.article-content h4 {
    font-size: 14px;
    margin-top: 20px;
    color: #777777;
}

.article-content a {
    color: #6A93B1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-content a:hover {
    color: #888888;
}

.article-content iframe,
.article-content embed,
.article-content object,
.article-content video {
    display: block;
    width: 100% !important;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    margin: 24px auto;
    border: none;
}

.article-content iframe[src*="spotify"],
.article-content iframe[src*="linkfire"],
.article-content iframe[src*="soundcloud"],
.article-content iframe[src*="music.apple.com"],
.article-content iframe[src*="embed.music.apple.com"] {
    aspect-ratio: auto;
    min-height: 180px;
    width: 100% !important;
    max-width: 100%;
}

.article-content iframe.article-embed-audio {
    aspect-ratio: auto;
    height: 190px;
    min-height: 190px;
    max-height: 220px;
}
