:root {
    --primary: #1b4cfb;
    --primary-dark: #1133a8;
    --accent: #ffb400;
    --text-main: #1b1b1b;
    --bg-light: #f6f7fb;
    --gradient-warm: linear-gradient(90deg, #ffb347, #ffcc33);
    --gradient-blue: linear-gradient(90deg, #1b4cfb, #4b74ff);
    --radius-lg: 1.5rem;
    --radius-md: 1rem;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-main);
    background-color: #ffffff;
}

/* Header / logo */

.site-header .navbar {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.site-logo {
    height: 40px;
}

.nav-link {
    font-weight: 500;
    color: #555555;
}

.nav-link.active,
.nav-link:hover {
    color: var(--primary);
}

.nav-cta {
    margin-left: 1rem;
}

/* Hero */

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    color: #ffffff;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 53, 135, 0.92), rgba(0, 139, 255, 0.75));
    z-index: -1;
}

.hero-text {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.hero-card {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.hero-card-img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 16px;
}

/* Общие секции */

.section-title {
    font-size: 1.7rem;
    font-weight: 700;
}

/* Podcast */

.podcast-player .btn {
    min-width: 190px;
}

/* Guide */

.guide-section {
    background-color: var(--bg-light);
}

.guide-img {
    max-width: 260px;
}

.guide-download-btn {
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* Goals + features */

.goals-section {
    background-image: var(--gradient-warm);
}

.features-section {
    background-image: var(--gradient-blue);
}

.feature-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 1.75rem 1.5rem;
}

/* Blog */

.blog-card {
    border-radius: var(--radius-md);
    padding: 1.5rem;
    border: 1px solid #e2e5f0;
    background-color: #ffffff;
}

.blog-title {
    margin-bottom: 0.5rem;
}

.blog-meta {
    font-size: 0.85rem;
    color: #777777;
    margin-bottom: 0.75rem;
}

.blog-link {
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

.blog-link:hover {
    text-decoration: underline;
}

/* Contact */

.contact-section {
    background-color: var(--bg-light);
}

.contact-form .btn {
    font-weight: 600;
}

/* Footer */

.site-footer {
    border-top: 1px solid #e1e3ec;
    font-size: 0.9rem;
}

.site-footer a {
    color: var(--primary);
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

/* Адаптивность */

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-text {
        text-align: center;
    }
}
/* Blog list page */

.blog-list-page {
    background-color: #ffffff;
}

.page-header-simple {
    border-bottom: 1px solid #e4e7f0;
}

.page-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--text-main);
}

.page-subtitle {
    font-size: 0.98rem;
    color: #666a78;
}

.notes-logo-img {
    max-height: 46px;
}

.blog-banner-card {
    border: none;
    border-radius: 0;
}

/* Posts list */

.blog-list-section .post-item:last-of-type {
    border-bottom: none;
}

.post-title-link {
    color: var(--text-main);
    text-decoration: none;
}

.post-title-link:hover {
    color: var(--primary);
}

.post-meta a {
    color: var(--primary);
    text-decoration: none;
}

.post-meta a:hover {
    text-decoration: underline;
}

.post-excerpt {
    font-size: 0.98rem;
    color: #4a4d59;
}

.post-readmore-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

.post-readmore-link:hover {
    text-decoration: underline;
}

/* Subscribe block */

.blog-subscribe-section {
    border-top: 1px solid #e4e7f0;
    background-color: var(--bg-light);
}

.subscribe-form .form-control {
    height: 100%;
}
/* Contact page */

.contact-hero {
    padding-top: 2rem;
}

.contact-hero-card img {
    max-height: 320px;
    object-fit: cover;
}

.contact-hero-card .card-body {
    background-color: #ffffff;
    border-top: 1px solid #eceff6;
    font-size: 0.98rem;
}

.contact-main {
    background-color: #ffffff;
}

.contact-info-card {
    background-color: #f6f7fb;
    border-radius: 0.75rem;
    padding: 2rem 2.25rem;
    font-size: 0.96rem;
}

.contact-social-links a {
    display: inline-block;
    margin-right: 0.75rem;
    font-size: 0.9rem;
    color: var(--primary);
    text-decoration: none;
}

.contact-social-links a:hover {
    text-decoration: underline;
}

.contact-form-card {
    border-radius: 0.75rem;
    border: 1px solid #e1e3ec;
    padding: 2rem 2.25rem;
    background-color: #ffffff;
}

.contact-form .form-label {
    font-size: 0.96rem;
}

.contact-form .btn {
    font-weight: 600;
}

/* Map */

.contact-map-wrapper {
    border: 1px solid #e1e3ec;
    border-radius: 0.75rem;
    overflow: hidden;
}

.contact-map-wrapper iframe {
    display: block;
    width: 100%;
    height: 320px;
    border: 0;
}

/* Responsive */

@media (max-width: 767.98px) {
    .contact-info-card,
    .contact-form-card {
        padding: 1.5rem 1.25rem;
    }
}
/* About page */

.about-page {
    background-color: #ffffff;
}

.about-header .page-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
}

.about-quote-box {
    margin-top: 1.5rem;
    padding: 1.6rem 1.8rem;
    border-radius: 0.9rem;
    background-image: var(--gradient-blue);
    font-size: 1rem;
}

.about-logo-img {
    max-width: 240px;
}

.about-text p {
    font-size: 0.98rem;
    color: #4a4d59;
}

.about-values-list {
    padding-left: 1.2rem;
    margin-bottom: 0;
    font-size: 0.98rem;
}

.about-values-list li + li {
    margin-top: 0.15rem;
}

@media (max-width: 767.98px) {
    .about-header .page-title {
        font-size: 1.7rem;
    }
    .about-quote-box {
        padding: 1.2rem 1.3rem;
    }
    .about-logo-wrapper {
        text-align: center;
        margin-bottom: 1rem;
    }
}
/* Podcast page */

.podcast-page {
    background-color: #ffffff;
}

.podcast-hero-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-main);
}

.podcast-hero .podcast-cover-card p {
    color: #4a4d59;
}

.podcast-apps-card {
    padding: 1.5rem 1.7rem;
    border-radius: 1rem;
    border: 1px solid #e1e3ec;
    background-color: #ffffff;
}

.podcast-app-badge {
    max-width: 180px;
    height: auto;
}

/* Intro + embed */

.podcast-intro h2 {
    font-weight: 600;
}

.podcast-intro p {
    font-size: 0.98rem;
    color: #4a4d59;
}

.podcast-player-embed {
    border-radius: 0.9rem;
    overflow: hidden;
    border: 1px solid #dfe3f0;
    background-color: #f6f7fb;
}

.podcast-player-embed iframe {
    display: block;
    width: 100%;
    min-height: 340px;
    border: 0;
}

/* Message form */

.podcast-message-section {
    border-top: 1px solid #e4e7f0;
}

.podcast-message-form .btn {
    font-weight: 600;
}

/* Hosts */

.podcast-hosts-section {
    border-top: 1px solid #e4e7f0;
}

.host-card {
    border-radius: 1rem;
    border: 1px solid #e1e3ec;
    padding: 1.5rem 1.4rem;
    background-color: #ffffff;
}

.host-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
}

/* Podcast subscribe */

.podcast-subscribe-section {
    border-top: 1px solid #e4e7f0;
    background-color: var(--bg-light);
}

@media (max-width: 767.98px) {
    .podcast-hero-title {
        font-size: 1.4rem;
    }
}
/* Single post (episodio) */

.single-post-page {
    background-color: #ffffff;
}

.single-post-article {
    max-width: 760px;
    margin: 0 auto;
}

.single-post-category {
    letter-spacing: 0.08em;
    color: #7a7f8f;
}

.single-post-title {
    font-weight: 700;
    color: var(--text-main);
}

.single-post-meta {
    color: #8b8fa0;
}

.single-post-intro {
    font-size: 0.98rem;
    color: #4a4d59;
}

.single-post-share .single-share-link {
    font-size: 0.9rem;
    color: var(--primary);
    text-decoration: none;
}

.single-post-share .single-share-link:hover {
    text-decoration: underline;
}

/* Quote */

.single-post-quote {
    padding: 1rem 1.25rem;
    border-left: 4px solid var(--primary);
    background-color: #f6f7fb;
    border-radius: 0.75rem;
}

/* Audio */

.single-audio-embed {
    border-radius: 0.9rem;
    overflow: hidden;
    border: 1px solid #dfe3f0;
    background-color: #f6f7fb;
}

.single-audio-embed iframe {
    display: block;
    width: 100%;
    min-height: 232px;
    border: 0;
}

/* Resources */

.single-resources-list {
    padding-left: 1.2rem;
    font-size: 0.96rem;
}

.single-resources-list li + li {
    margin-top: 0.15rem;
}

/* Transcript */

.single-transcript-body p {
    font-size: 0.96rem;
    margin-bottom: 0.5rem;
}

/* Patreon block */

.single-post-patreon {
    border-top: 1px solid #e4e7f0;
    padding-top: 1.75rem;
}

/* Comments */

.single-comment-form .form-label {
    font-size: 0.95rem;
}
