/* =============================================
   InfoNaMieru.sk - Modern Minimal CSS
============================================= */

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #0ea5e9;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --dark: #0f172a;
    --gray-900: #1e293b;
    --gray-800: #334155;
    --gray-700: #475569;
    --gray-600: #64748b;
    --gray-500: #94a3b8;
    --gray-400: #cbd5e1;
    --gray-300: #e2e8f0;
    --gray-200: #f1f5f9;
    --gray-100: #f8fafc;
    --white: #ffffff;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
    --shadow-lg: 0 4px 24px rgba(0,0,0,0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--gray-100);
    color: var(--gray-800);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}
a:hover {
    color: var(--primary-dark);
}

/* =============================================
   NAVBAR
============================================= */
.navbar {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-300);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 24px;
}

.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.navbar-links a {
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 500;
    margin-left: 32px;
}
.navbar-links a:hover {
    color: var(--primary);
}

/* =============================================
   HERO
============================================= */
.hero {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a78bfa 100%);
    padding: 160px 24px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255,255,255,0.08) 0%, transparent 40%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-3deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
    line-height: 1.7;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 0 0 34px;
}

.hero-trust span {
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 999px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 14px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: #34d399;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.scroll-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--primary);
    padding: 16px 36px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}
.scroll-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    color: var(--primary-dark);
}

/* =============================================
   SEKCIA
============================================= */
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

.section-soft {
    background: var(--white);
    max-width: none;
}

.section-soft > .section-title,
.section-soft > .section-subtitle,
.section-soft > .email-example-wrap {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray-600);
    text-align: center;
    margin-bottom: 48px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* =============================================
   CATEGORY CARDS
============================================= */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

.categories-grid-avoid {
    margin-bottom: 48px;
}

.category-choice-head {
    margin: 0 auto 18px;
    max-width: 760px;
    text-align: center;
}

.category-choice-head span {
    color: var(--gray-900);
    display: block;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
}

.category-choice-head p {
    color: var(--gray-600);
    font-size: 14px;
    margin: 0;
}

.category-choice-head-avoid {
    margin-top: 10px;
}

.category-card {
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    padding: 24px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.category-card.selected {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(99,102,241,0.05), rgba(139,92,246,0.05));
}

.category-card-avoid.selected {
    border-color: #dc2626;
    background: linear-gradient(135deg, rgba(220,38,38,0.05), rgba(245,158,11,0.05));
}

.category-card.selected::after {
    content: '✓';
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary);
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.category-card-avoid.selected::after {
    background: #dc2626;
}

.category-icon {
    font-size: 36px;
    margin-bottom: 12px;
    display: block;
}

.category-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    display: block;
}

.category-desc {
    color: var(--gray-600);
    display: block;
    font-size: 13px;
    line-height: 1.45;
    margin-top: 8px;
}

.category-card input[type="checkbox"] {
    display: none;
}

.contact-page {
    padding: 112px 24px 64px;
}

.contact-intro {
    margin: 0 auto 34px;
    max-width: 720px;
    text-align: center;
}

.contact-intro .hero-badge {
    background: #e0e7ff;
    border-color: #c7d2fe;
    color: var(--primary-dark);
}

.contact-intro h1 {
    color: var(--gray-900);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    margin: 16px 0 12px;
}

.contact-intro p {
    color: var(--gray-600);
    font-size: 17px;
}

.contact-layout {
    align-items: start;
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
    margin: 0 auto;
    max-width: 1040px;
}

.contact-form,
.contact-aside {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px;
}

.contact-aside h2 {
    color: var(--gray-900);
    font-size: 20px;
    margin-bottom: 14px;
}

.contact-aside ul {
    color: var(--gray-600);
    padding-left: 18px;
}

.contact-aside li {
    margin-bottom: 10px;
}

.contact-message-box {
    min-height: 260px;
    resize: vertical;
}

.archive-page {
    padding: 112px 24px 64px;
}

.archive-header {
    margin: 0 auto 38px;
    max-width: 780px;
    text-align: center;
}

.archive-header h1 {
    color: var(--gray-900);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 12px;
}

.archive-header p {
    color: var(--gray-600);
    font-size: 17px;
}

.archive-section {
    margin: 0 auto 42px;
    max-width: 1120px;
}

.archive-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: -18px auto 34px;
    max-width: 1120px;
}

.archive-categories a {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 999px;
    color: var(--gray-700);
    font-size: 13px;
    font-weight: 700;
    padding: 9px 14px;
}

.archive-categories a.active,
.archive-categories a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.archive-section h2 {
    align-items: center;
    color: var(--gray-900);
    display: flex;
    font-size: 24px;
    font-weight: 800;
    gap: 10px;
    margin-bottom: 16px;
}

.archive-section h2 span {
    background: var(--gray-200);
    border-radius: 999px;
    color: var(--gray-600);
    font-size: 13px;
    padding: 3px 9px;
}

.archive-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.archive-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    color: inherit;
    display: block;
    overflow: hidden;
}

.archive-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.archive-card img,
.archive-card-placeholder {
    aspect-ratio: 16 / 9;
    background: var(--gray-200);
    display: flex;
    font-size: 42px;
    height: auto;
    align-items: center;
    justify-content: center;
    object-fit: cover;
    width: 100%;
}

.archive-card div:last-child {
    padding: 16px;
}

.archive-card span {
    color: var(--primary);
    display: block;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 8px;
}

.archive-card h3 {
    color: var(--gray-900);
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 8px;
}

.archive-card p {
    color: var(--gray-600);
    display: -webkit-box;
    font-size: 14px;
    line-height: 1.5;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.archive-empty {
    margin: 0 auto;
}

.archive-pagination {
    margin: 10px auto 0;
    max-width: 1120px;
}

.pagination {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 18px;
}

.pagination span {
    color: var(--gray-600);
    font-size: 13px;
    font-weight: 700;
}

.email-example-wrap {
    align-items: start;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.8fr);
}

.email-example {
    background: #f8fafc;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.email-example-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    display: grid;
    gap: 4px;
    padding: 26px;
}

.email-example-header strong {
    font-size: 24px;
}

.email-example-header span {
    color: rgba(255,255,255,0.82);
    font-size: 14px;
}

.email-example-body {
    padding: 22px;
}

.email-example-body > p {
    color: var(--gray-600);
    margin-bottom: 16px;
}

.email-example article {
    background: #fff;
    border-left: 4px solid var(--primary);
    border-radius: 10px;
    margin-top: 14px;
    padding: 18px;
}

.email-example article span {
    color: var(--primary);
    display: block;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.email-example article h3 {
    color: var(--gray-900);
    font-size: 18px;
    line-height: 1.35;
    margin-bottom: 8px;
}

.email-example article p {
    color: var(--gray-600);
    font-size: 14px;
}

.promise-panel {
    background: var(--gray-900);
    border-radius: var(--radius);
    color: #fff;
    padding: 26px;
}

.promise-panel h3 {
    font-size: 22px;
    margin-bottom: 14px;
}

.promise-panel ul {
    display: grid;
    gap: 12px;
    list-style: none;
}

.promise-panel li {
    color: var(--gray-300);
    font-size: 14px;
    padding-left: 24px;
    position: relative;
}

.promise-panel li::before {
    color: #34d399;
    content: '✓';
    font-weight: 800;
    left: 0;
    position: absolute;
}

/* =============================================
   SUBSCRIBE FORM
============================================= */
.subscribe-form {
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: inherit;
    color: var(--gray-800);
    transition: var(--transition);
    outline: none;
    background: var(--gray-100);
}

.form-input:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(99,102,241,0.1);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    width: 100%;
    box-shadow: 0 4px 12px rgba(99,102,241,0.3);
}
.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(99,102,241,0.4);
}
.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-success {
    background: linear-gradient(135deg, var(--success), #059669);
    color: #fff;
}

.btn-danger {
    background: linear-gradient(135deg, var(--danger), #dc2626);
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gray-300);
    color: var(--gray-700);
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* =============================================
   ALERTS
============================================= */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert-info {
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

/* =============================================
   HOW IT WORKS
============================================= */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.step {
    text-align: center;
    padding: 32px 20px;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.step p {
    font-size: 14px;
    color: var(--gray-600);
}

/* =============================================
   FOOTER
============================================= */
.footer {
    background: var(--gray-900);
    color: var(--gray-500);
    text-align: center;
    padding: 40px 24px;
    font-size: 14px;
}

.footer a {
    color: var(--gray-400);
}
.footer a:hover {
    color: #fff;
}

/* =============================================
   CONFIRMATION / MANAGE PAGE
============================================= */
.page-center {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: var(--gray-200);
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    max-width: 520px;
    width: 100%;
    text-align: center;
}

.card h1 {
    font-size: 28px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.card p {
    color: var(--gray-600);
    margin-bottom: 24px;
}

.card-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: block;
}

/* =============================================
   LOADING SPINNER
============================================= */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 768px) {
    .hero h1 { font-size: 32px; }
    .hero p { font-size: 16px; }
    .section-title { font-size: 28px; }
    .categories-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .category-card { padding: 16px; }
    .category-icon { font-size: 28px; }
    .subscribe-form { padding: 24px; }
    .card { padding: 32px 24px; }
    .navbar-links { display: none; }
    .steps { grid-template-columns: 1fr; gap: 16px; }
    .email-example-wrap { grid-template-columns: 1fr; }
    .hero-trust { justify-content: center; }
    .contact-layout { grid-template-columns: 1fr; }
    .contact-intro h1 { font-size: 32px; }
}

@media (max-width: 480px) {
    .categories-grid { grid-template-columns: 1fr; }
    .hero { padding: 120px 16px 60px; }
    .hero h1 { font-size: 28px; }
}

/* =============================================
   PUBLIC ARTICLE
============================================= */
.public-article-wrap {
    padding: 112px 24px 64px;
}

.public-article {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin: 0 auto;
    max-width: 880px;
    padding: 44px;
}

.ad-slot {
    margin: 24px 0;
    text-align: center;
}

.ad-slot img {
    border-radius: 8px;
    height: auto;
    max-width: 100%;
}

.ad-html {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 90px;
    overflow: hidden;
}

.ad-slot:empty {
    display: none;
}

.public-article-meta {
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.public-article h1 {
    color: var(--dark);
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 18px;
}

.public-article-summary {
    color: var(--gray-600);
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.public-article-hero {
    border-radius: var(--radius-sm);
    display: block;
    margin: 0 0 32px;
    max-height: 520px;
    object-fit: cover;
    width: 100%;
}

.public-article-content {
    border-top: 1px solid var(--gray-300);
    color: var(--gray-800);
    font-size: 17px;
    line-height: 1.85;
    padding-top: 30px;
}

.article-text-block.align-left { text-align: left; }
.article-text-block.align-center { text-align: center; }
.article-text-block.align-right { text-align: right; }
.article-text-block.text-lead {
    color: var(--gray-700);
    font-size: 21px;
    font-weight: 500;
}
.article-text-block.text-heading {
    color: var(--dark);
    font-size: 30px;
    font-weight: 800;
    line-height: 1.25;
    margin: 34px 0 14px;
}
.article-text-block.text-subheading {
    color: var(--gray-900);
    font-size: 23px;
    font-weight: 800;
    line-height: 1.3;
    margin: 28px 0 12px;
}

.lightbox-trigger {
    background: none;
    border: 0;
    cursor: zoom-in;
    display: block;
    padding: 0;
    width: 100%;
}

.image-lightbox {
    align-items: center;
    background: rgba(15, 23, 42, 0.92);
    display: none;
    inset: 0;
    justify-content: center;
    padding: 20px;
    position: fixed;
    z-index: 500;
}

.image-lightbox.open {
    display: flex;
}

.image-lightbox img {
    border-radius: var(--radius-sm);
    max-height: 88vh;
    max-width: 96vw;
    object-fit: contain;
}

.image-lightbox-close {
    background: #ffffff;
    border: 0;
    border-radius: 999px;
    color: var(--dark);
    cursor: pointer;
    font-size: 30px;
    height: 44px;
    line-height: 1;
    position: fixed;
    right: 18px;
    top: 18px;
    width: 44px;
}

.public-article-gallery {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    margin-top: 34px;
}

.public-article-gallery img {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-sm);
    object-fit: cover;
    width: 100%;
}

.public-article-video {
    margin-top: 34px;
}

.public-article-video video {
    background: var(--dark);
    border-radius: var(--radius-sm);
    display: block;
    width: 100%;
}

.public-article-video iframe {
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: var(--radius-sm);
    display: block;
    width: 100%;
}

.public-article-block-image {
    margin: 28px 0;
}

.public-article-block-image img {
    border-radius: var(--radius-sm);
    display: block;
    width: 100%;
}

.public-article-block-image figcaption,
.video-caption {
    color: var(--gray-500);
    font-size: 13px;
    margin-top: 8px;
}

.ad-slot {
    display: grid;
    gap: 12px;
    margin: 24px 0;
    min-height: 0;
}

.ad-slot:empty {
    display: none;
}

.ad-slot img {
    border-radius: var(--radius-sm);
    display: block;
    max-height: 180px;
    object-fit: cover;
    width: 100%;
}

@media (max-width: 768px) {
    .public-article-wrap { padding: 88px 14px 40px; }
    .public-article { padding: 24px; }
    .public-article h1 { font-size: 30px; }
    .public-article-summary { font-size: 16px; }
}
