/*
Theme Name: Custom Auto Theme
Author: System
Version: 1.0
*/
:root { --color-primary: #4527A0; --color-primary-light: #EDE7F6; --color-accent: #00838F; --color-dark: #311B92; --color-text: #1A1530; --color-bg-alt: #F5F2FF; --font-family: 'Open Sans', 'Trebuchet MS', sans-serif; } *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: var(--font-family); color: var(--color-text); background: #fff; display: flex; flex-direction: column; min-height: 100vh; font-size: 1rem; line-height: 1.7; } main { flex: 1; display: flex; flex-direction: column; } .container { max-width: 1160px; margin: 0 auto; padding: 0 1.25rem; } a { color: inherit; text-decoration: none; } img { max-width: 100%; height: auto; display: block; } .btn { display: inline-block; padding: 0.7rem 1.6rem; border-radius: 999px; font-weight: 700; cursor: pointer; transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s; border: 2px solid transparent; } .btn-primary { background: var(--color-primary); color: #fff; } .btn-primary:hover { background: var(--color-dark); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(69,39,160,0.25); } .btn-accent { background: var(--color-accent); color: #fff; } .btn-accent:hover { background: #00696f; transform: translateY(-2px); } .btn-outline { background: transparent; border-color: #fff; color: #fff; } .btn-outline:hover { background: #fff; color: var(--color-primary); } .site-header { background: #fff; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.07); } .header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; } .logo { font-size: 1.5rem; font-weight: 900; color: var(--color-primary); letter-spacing: -0.03em; } .logo:hover { color: var(--color-dark); } .main-nav { display: flex; align-items: center; gap: 0.4rem; } .main-nav a { padding: 4px 16px; border-radius: 999px; font-size: 0.92rem; font-weight: 600; color: var(--color-text); transition: background 0.2s, color 0.2s; } .main-nav a:hover { background: var(--color-primary); color: #fff; } .btn-nav { background: var(--color-primary); color: #fff !important; } .btn-nav:hover { background: var(--color-dark) !important; } .burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; } .burger span { display: block; width: 24px; height: 2px; background: var(--color-primary); border-radius: 2px; transition: 0.3s; } .hero { background-size: cover; background-position: center; background-repeat: no-repeat; position: relative; padding: 5rem 0 4rem; min-height: 44vh; display: flex; align-items: center; } .hero.has-bg-image { background-size: cover; } .bg-overlay { position: absolute; inset: 0; background: rgba(69,39,160,0.78); z-index: 0; } .hero .container { position: relative; z-index: 1; max-width: 700px; text-align: center; margin: 0 auto; } .hero-title { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 1rem; } .hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.88); margin-bottom: 1.8rem; } .hero-cta-group { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; } .hero-mini-form { background: rgba(255,255,255,0.12); border-radius: 12px; padding: 1rem 1.25rem; max-width: 420px; width: 100%; } .hero-mini-form p { color: rgba(255,255,255,0.85); font-size: 0.85rem; margin-bottom: 0.6rem; font-weight: 600; } .hero-mini-form .form-row { display: flex; gap: 0.5rem; flex-wrap: wrap; } .hero-mini-form input { flex: 1; min-width: 120px; padding: 0.5rem 0.85rem; border-radius: 999px; border: none; font-size: 0.88rem; } .hero-mini-form button { padding: 0.5rem 1.2rem; border-radius: 999px; background: var(--color-accent); color: #fff; border: none; font-weight: 700; cursor: pointer; font-size: 0.88rem; transition: background 0.2s; } .hero-mini-form button:hover { background: #00696f; } #stats { background: var(--color-dark); padding: 1.8rem 0; color: #fff; } .stats-strip { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; } .stat-item { text-align: center; } .stat-number { font-size: 2rem; font-weight: 900; color: var(--color-accent); line-height: 1; } .stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.75); margin-top: 0.25rem; } #articles { padding: 4rem 0; background: #fff; } #articles .section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; color: var(--color-dark); margin-bottom: 2.5rem; letter-spacing: -0.02em; } .masonry-hero { background: var(--color-dark); border-radius: 16px; padding: 2.5rem 2rem; margin-bottom: 2rem; box-shadow: 0 8px 32px rgba(49,27,146,0.18); transition: box-shadow 0.2s, transform 0.2s; } .masonry-hero:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(49,27,146,0.25); } .masonry-hero .card-tag { display: inline-block; background: var(--color-accent); color: #fff; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 3px 12px; border-radius: 999px; margin-bottom: 1rem; } .masonry-hero .card-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 900; color: #fff; margin-bottom: 0.8rem; line-height: 1.2; } .masonry-hero .card-teaser { color: rgba(255,255,255,0.82); font-size: 1rem; margin-bottom: 1.5rem; } .masonry-hero .card-link { display: inline-block; background: #fff; color: var(--color-primary); padding: 0.6rem 1.4rem; border-radius: 999px; font-weight: 700; font-size: 0.9rem; transition: background 0.2s, transform 0.15s; } .masonry-hero .card-link:hover { background: var(--color-primary-light); transform: translateY(-2px); } .masonry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: start; } .masonry-grid .article-card:first-child { margin-top: 0; } .masonry-grid .article-card:last-child { margin-top: 2.5rem; } .article-card { background: #fff; border-radius: 14px; padding: 1.8rem 1.6rem; box-shadow: 0 3px 16px rgba(69,39,160,0.1); transition: box-shadow 0.2s, transform 0.2s; border-left: 4px solid var(--color-primary); } .article-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(69,39,160,0.17); } .article-card .card-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-accent); margin-bottom: 0.6rem; } .article-card .card-title { font-size: 1.2rem; font-weight: 800; color: var(--color-dark); margin-bottom: 0.6rem; line-height: 1.3; } .article-card .card-teaser { font-size: 0.94rem; color: #555; margin-bottom: 1.2rem; } .article-card .card-link { display: inline-block; color: var(--color-primary); font-weight: 700; font-size: 0.88rem; padding: 0.45rem 1.1rem; border-radius: 999px; border: 2px solid var(--color-primary); transition: background 0.2s, color 0.2s; } .article-card .card-link:hover { background: var(--color-primary); color: #fff; } #about { background: var(--color-bg-alt); padding: 3rem 0; } .editorial-note { max-width: 680px; margin: 0 auto; padding: 2rem 2.5rem; position: relative; } .editorial-note-quote { font-size: 4.5rem; line-height: 0.6; color: var(--color-accent); font-family: Georgia, serif; display: block; margin-bottom: 0.5rem; } .editorial-note-text p { font-size: 1.05rem; line-height: 1.8; color: var(--color-text); margin-bottom: 0.9rem; font-style: italic; } .editorial-note-text p:last-child { margin-bottom: 0; } .editorial-note-signature { display: block; margin-top: 1.2rem; font-weight: 900; font-size: 1rem; color: var(--color-primary); letter-spacing: 0.04em; text-transform: uppercase; } .site-footer { background: var(--color-dark); color: #fff; } .footer-top { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1.5rem; padding: 2rem 0 1.2rem; } .footer-logo-large { font-size: 1.5rem; font-weight: 900; color: #fff; letter-spacing: -0.02em; } .footer-logo-large:hover { color: var(--color-accent); } .footer-nav-center { display: flex; justify-content: center; align-items: center; gap: 0; flex-wrap: wrap; } .footer-nav-center a { color: rgba(255,255,255,0.8); font-size: 0.88rem; padding: 0 0.6rem; transition: color 0.2s; } .footer-nav-center a:hover { color: #fff; } .footer-nav-center .sep { color: rgba(255,255,255,0.35); } .footer-credit { font-size: 0.85rem; color: rgba(255,255,255,0.7); white-space: nowrap; } .footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 1rem 0; } .footer-disclaimer { font-size: 0.8rem; color: rgba(255,255,255,0.55); line-height: 1.6; } .footer-inner { display: flex; align-items: center; justify-content: space-between; } .footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.55); } .footer-nav { display: flex; gap: 1rem; flex-wrap: wrap; } .footer-nav a { color: rgba(255,255,255,0.7); font-size: 0.88rem; transition: color 0.2s; } .footer-nav a:hover { color: #fff; } .page-disclaimer { background: var(--color-bg-alt); padding: 1rem 0; margin-top: auto; } .page-disclaimer p { font-size: 0.82rem; color: #777; text-align: center; } .cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--color-dark); color: #fff; padding: 1rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; z-index: 999; box-shadow: 0 -4px 20px rgba(0,0,0,0.18); flex-wrap: wrap; } .cookie-banner p { font-size: 0.88rem; color: rgba(255,255,255,0.88); flex: 1; } .cookie-banner a { color: var(--color-accent); } .cookie-banner-btn { background: var(--color-accent); color: #fff; border: none; padding: 0.5rem 1.4rem; border-radius: 999px; font-weight: 700; cursor: pointer; font-size: 0.88rem; transition: background 0.2s; white-space: nowrap; } .cookie-banner-btn:hover { background: #00696f; } .hidden { display: none !important; } .article-banner { background: var(--color-bg-alt); } .article-banner-std { padding: 2.5rem 0 1.5rem; } .article-banner-std .article-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.8rem; flex-wrap: wrap; } .article-banner-std .article-tag { background: var(--color-primary); color: #fff; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; padding: 3px 12px; border-radius: 999px; } .article-banner-std .article-date, .article-banner-std .article-read-time { font-size: 0.83rem; color: #888; } .article-banner-std h1 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 900; color: var(--color-dark); line-height: 1.15; } .article-top-image { margin-bottom: 0; } .article-top-image img { width: 100%; height: auto; display: block; } .article-banner-img-below { padding: 1.5rem 0 1rem; } .article-banner-img-below .article-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.7rem; flex-wrap: wrap; } .article-banner-img-below .article-tag { background: var(--color-primary); color: #fff; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; padding: 3px 12px; border-radius: 999px; } .article-banner-img-below .article-date, .article-banner-img-below .article-read-time { font-size: 0.83rem; color: #888; } .article-banner-img-below h1 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 900; color: var(--color-dark); line-height: 1.15; } .article-layout { display: grid; grid-template-columns: 280px 1fr; gap: 2.5rem; padding: 3rem 0 2rem; } .article-aside { position: sticky; top: 80px; align-self: start; } .article-toc { background: var(--color-primary-light); border-radius: 12px; padding: 1.2rem 1.4rem; margin-bottom: 1.5rem; } .article-toc h4 { font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-primary); margin-bottom: 0.8rem; } .article-toc ul { list-style: none; } .article-toc ul li { margin-bottom: 0.4rem; } .article-toc ul li a { font-size: 0.88rem; color: var(--color-text); transition: color 0.2s; line-height: 1.4; display: block; } .article-toc ul li a:hover { color: var(--color-primary); } .related-articles { background: var(--color-bg-alt); border-radius: 12px; padding: 1.2rem 1.4rem; } .related-articles h4 { font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-primary); margin-bottom: 1rem; } .related-card { display: block; padding: 0.75rem 0.9rem; border-radius: 8px; background: #fff; margin-bottom: 0.7rem; box-shadow: 0 2px 8px rgba(69,39,160,0.08); transition: box-shadow 0.2s, transform 0.15s; } .related-card:last-child { margin-bottom: 0; } .related-card:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(69,39,160,0.14); } .related-card-title { font-size: 0.88rem; font-weight: 700; color: var(--color-dark); margin-bottom: 0.25rem; line-height: 1.35; } .related-card-teaser { font-size: 0.8rem; color: #888; line-height: 1.45; } article { min-width: 0; } article h2 { font-size: 1.35rem; font-weight: 800; color: var(--color-dark); margin: 2rem 0 0.8rem; } article p { font-size: 1rem; line-height: 1.8; color: var(--color-text); margin-bottom: 1rem; } article ul, article ol { padding-left: 1.5rem; margin-bottom: 1rem; } article li { font-size: 1rem; line-height: 1.75; color: var(--color-text); margin-bottom: 0.4rem; } .tip-block { font-style: italic; font-size: 1.05rem; color: var(--color-primary); text-align: center; margin: 2rem 0; padding: 0 2rem; } .article-inline-img { margin: 1.5rem 0; border-radius: 10px; overflow: hidden; } .article-inline-img img { width: 100%; height: auto; display: block; } .newsletter-cta { background: var(--color-primary); border-radius: 14px; padding: 2rem 2rem; margin: 2.5rem 0; color: #fff; } .newsletter-cta h3 { font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 0.5rem; } .newsletter-cta p { font-size: 0.92rem; color: rgba(255,255,255,0.85); margin-bottom: 1.2rem; } .newsletter-form { display: flex; gap: 0.6rem; flex-wrap: wrap; } .newsletter-form input { flex: 1; min-width: 140px; padding: 0.6rem 1rem; border-radius: 999px; border: none; font-size: 0.9rem; } .newsletter-form button { padding: 0.6rem 1.4rem; border-radius: 999px; background: var(--color-accent); color: #fff; border: none; font-weight: 700; cursor: pointer; font-size: 0.9rem; transition: background 0.2s; white-space: nowrap; } .newsletter-form button:hover { background: #00696f; } .article-disclaimer { background: var(--color-bg-alt); border-radius: 10px; padding: 1.2rem 1.4rem; margin-top: 2rem; border-left: 3px solid var(--color-accent); } .article-disclaimer p { font-size: 0.83rem; color: #777; line-height: 1.6; margin-bottom: 0; } .success-page { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 4rem 1.25rem; text-align: center; } .success-page .success-icon { font-size: 3.5rem; margin-bottom: 1rem; } .success-page h1 { font-size: 2.2rem; font-weight: 900; color: var(--color-dark); margin-bottom: 0.8rem; } .success-page p { font-size: 1rem; color: #666; max-width: 440px; margin: 0 auto 2rem; } .page-404 { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 4rem 1.25rem; text-align: center; } .page-404 .big-404 { font-size: clamp(5rem, 15vw, 10rem); font-weight: 900; color: var(--color-primary-light); line-height: 1; margin-bottom: 0.5rem; } .page-404 .icon-404 { margin: 0 auto 1.5rem; } .page-404 h1 { font-size: 1.8rem; font-weight: 900; color: var(--color-dark); margin-bottom: 0.8rem; } .page-404 p { font-size: 1rem; color: #666; max-width: 420px; margin: 0 auto 2rem; } .page-404 .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; } .policy-page { padding: 3rem 0 4rem; max-width: 860px; margin: 0 auto; } .policy-page h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 900; color: var(--color-dark); margin-bottom: 0.5rem; } .policy-page .policy-date { font-size: 0.85rem; color: #888; margin-bottom: 2rem; } .policy-page h2 { font-size: 1.2rem; font-weight: 800; color: var(--color-primary); margin: 2rem 0 0.7rem; } .policy-page p { font-size: 0.97rem; line-height: 1.8; color: var(--color-text); margin-bottom: 0.9rem; } .policy-page a { color: var(--color-accent); text-decoration: underline; } .policy-page ul, .policy-page ol { padding-left: 1.5rem; margin-bottom: 1rem; } .policy-page li { font-size: 0.97rem; line-height: 1.75; color: var(--color-text); margin-bottom: 0.4rem; } .policy-timeline { position: relative; padding: 1rem 0; } .policy-timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--color-primary-light); transform: translateX(-50%); } .timeline-entry { display: grid; grid-template-columns: 1fr auto 1fr; gap: 1.5rem; margin-bottom: 2rem; align-items: start; } .timeline-entry:nth-child(odd) .tl-content { grid-column: 1; text-align: right; } .timeline-entry:nth-child(odd) .tl-dot { grid-column: 2; } .timeline-entry:nth-child(odd) .tl-empty { grid-column: 3; } .timeline-entry:nth-child(even) .tl-empty { grid-column: 1; } .timeline-entry:nth-child(even) .tl-dot { grid-column: 2; } .timeline-entry:nth-child(even) .tl-content { grid-column: 3; text-align: left; } .tl-dot { width: 36px; height: 36px; border-radius: 50%; background: var(--color-primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 0.25rem; box-shadow: 0 2px 8px rgba(69,39,160,0.3); } .tl-dot span { font-size: 0.75rem; font-weight: 900; color: #fff; } .tl-content { background: var(--color-bg-alt); border-radius: 10px; padding: 1rem 1.2rem; } .tl-content h3 { font-size: 0.95rem; font-weight: 800; color: var(--color-dark); margin-bottom: 0.4rem; } .tl-content p { font-size: 0.9rem; color: #555; line-height: 1.6; margin-bottom: 0; } .tl-empty { min-width: 0; } .terms-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.2rem; margin: 1.5rem 0 2rem; } .terms-card { background: var(--color-bg-alt); border-radius: 12px; padding: 1.2rem 1.3rem; border-top: 4px solid var(--color-primary); } .terms-card .terms-card-num { font-size: 1.5rem; font-weight: 900; color: var(--color-primary); line-height: 1; margin-bottom: 0.4rem; } .terms-card h3 { font-size: 0.95rem; font-weight: 800; color: var(--color-dark); margin-bottom: 0.4rem; } .terms-card p { font-size: 0.85rem; color: #666; line-height: 1.55; } .accordion-item { border: 1px solid #e0daf5; border-radius: 10px; margin-bottom: 0.8rem; overflow: hidden; } .accordion-toggle { width: 100%; background: none; border: none; padding: 1.1rem 1.4rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: var(--font-family); font-size: 1rem; font-weight: 700; color: var(--color-dark); text-align: left; transition: background 0.2s; } .accordion-toggle:hover { background: var(--color-primary-light); } .accordion-toggle::after { content: '+'; font-size: 1.3rem; font-weight: 400; color: var(--color-primary); transition: transform 0.2s; } .accordion-toggle[aria-expanded='true']::after { transform: rotate(45deg); } .accordion-content { display: none; padding: 0 1.4rem 1.2rem; } .accordion-content.open { display: block; } .accordion-content p { font-size: 0.95rem; line-height: 1.75; color: var(--color-text); margin-bottom: 0.8rem; } .accordion-content ul { padding-left: 1.4rem; margin-bottom: 0.8rem; } .accordion-content li { font-size: 0.92rem; color: var(--color-text); line-height: 1.65; margin-bottom: 0.35rem; } .accordion-content a { color: var(--color-accent); text-decoration: underline; } .policy-hero { background: var(--color-primary); color: #fff; padding: 3rem 0 2rem; } .policy-hero h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; color: #fff; margin-bottom: 0.5rem; } .policy-hero p { color: rgba(255,255,255,0.8); font-size: 1rem; } .policy-hero .policy-date { color: rgba(255,255,255,0.65); font-size: 0.85rem; margin-top: 0.5rem; } @media (max-width: 900px) { .article-layout { grid-template-columns: 1fr; } .article-aside { position: static; } .masonry-grid { grid-template-columns: 1fr; } .masonry-grid .article-card:last-child { margin-top: 0; } .footer-top { grid-template-columns: 1fr; text-align: center; gap: 0.8rem; } .footer-nav-center { justify-content: center; } .policy-timeline::before { display: none; } .timeline-entry { grid-template-columns: 1fr; } .timeline-entry:nth-child(odd) .tl-content, .timeline-entry:nth-child(even) .tl-content { grid-column: 1; text-align: left; } .tl-dot, .tl-empty { display: none; } } @media (max-width: 768px) { .main-nav { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: #fff; padding: 1rem; box-shadow: 0 8px 20px rgba(0,0,0,0.1); gap: 0.4rem; } .main-nav.open { display: flex; } .main-nav a { width: 100%; padding: 0.6rem 1rem; border-radius: 8px; } .burger { display: flex; } .hero-cta-group { align-items: stretch; } .terms-cards-grid { grid-template-columns: 1fr 1fr; } } @media (max-width: 480px) { .stats-strip { gap: 1.5rem; } .terms-cards-grid { grid-template-columns: 1fr; } .newsletter-form { flex-direction: column; } .newsletter-form input { min-width: unset; } }