/*
Theme Name: Carolina Gayniacs
Theme URI: https://carolinagayniacs.com
Author: Carolina Gayniacs
Author URI: https://carolinagayniacs.com
Description: A warm, community-first WordPress theme for the Carolina Gayniacs network. Supports multisite with network/subsite branding, block editor patterns, and full WCAG 2.1 AA accessibility.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: carolina-gayniacs
Tags: accessibility-ready, block-styles, custom-logo, custom-menu, editor-style, featured-images, full-site-editing, one-column, two-columns, wide-blocks

Carolina Gayniacs WordPress Theme
Copyright (C) 2026 Carolina Gayniacs
*/

/* ================================================================
   CSS CUSTOM PROPERTIES
   ================================================================ */
:root {
  --pride-red: #E40303;
  --pride-orange: #FF8C00;
  --pride-yellow: #FFED00;
  --pride-green: #008026;
  --pride-blue: #004DFF;
  --pride-purple: #750787;
  --pride-gradient: linear-gradient(90deg,
    var(--pride-red), var(--pride-orange), var(--pride-yellow),
    var(--pride-green), var(--pride-blue), var(--pride-purple));

  --active-color: #CE1126;

  --bg: #faf9f7;
  --white: #ffffff;
  --text: #2d2a26;
  --text-soft: #6e6a63;
  --border: #eae7e2;
  --border-strong: #d6d2cb;
  --surface-hover: #f5f3f0;

  --radius: 10px;
  --radius-sm: 6px;
  --page-pad: 1.5rem;
  --content-width: 1080px;
  --wide-width: 1280px;
  --font: 'Nunito', system-ui, -apple-system, sans-serif;
}

/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--active-color); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { text-decoration: none; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
  border: 0;
}

/* ================================================================
   SKIP LINK
   ================================================================ */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--text); color: #fff;
  padding: 0.6rem 1.2rem; border-radius: 0 0 8px 8px;
  font-weight: 700; z-index: 200;
  text-decoration: none; transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ================================================================
   PRIDE BAR
   ================================================================ */
.pride-bar {
  height: 10px;
  background: var(--pride-gradient);
}

/* ================================================================
   SITE HEADER
   ================================================================ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 var(--page-pad);
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Admin bar offset */
.admin-bar .site-header { top: 32px; }

@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

.header-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0.6rem 0;
  gap: 1rem;
}

/* Logo zone */
.header-logo-zone {
  display: flex;
  align-items: center;
  justify-self: start;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: var(--pride-gradient);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.logo-icon img {
  width: 100%; height: 100%;
  object-fit: contain;
}

.logo-icon svg { width: 26px; height: 26px; }

.logo-words { display: flex; flex-direction: column; line-height: 1.15; }
.logo-words .org { font-size: 0.72rem; font-weight: 600; color: var(--text-soft); letter-spacing: 0.02em; }
.logo-words .site { font-size: 1.25rem; font-weight: 800; color: var(--text); letter-spacing: -0.01em; }
.logo-words .site:first-child { font-size: 1.3rem; }

/* Nav zone */
.header-nav-zone { justify-self: center; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
}

.header-nav .nav-link {
  position: relative;
  padding: 0.4rem 0.7rem;
  font-size: 0.88rem; font-weight: 600;
  color: var(--text-soft);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
  display: flex; align-items: center; gap: 0.25rem;
}

.header-nav .nav-link:hover,
.header-nav .nav-link:focus-visible { color: var(--text); background: var(--surface-hover); }

.header-nav .current-menu-item > a,
.header-nav .current-menu-ancestor > a,
.header-nav .nav-link.active { color: var(--text); }

.header-nav .current-menu-item > a::after,
.header-nav .nav-link.active::after {
  content: ''; position: absolute;
  bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 18px; height: 3px; border-radius: 3px;
  background: var(--active-color);
}

/* Nav item with children (WP menu classes) */
.header-nav .menu-item-has-children { position: relative; }

.header-nav .menu-item-has-children > a::before {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 4px;
  opacity: 0.45;
  vertical-align: middle;
  order: 1;
}

/* Sub-menus */
.header-nav .sub-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 180px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  list-style: none;
  padding: 0.35rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
  z-index: 60;
}

.header-nav .menu-item-has-children.open > .sub-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.header-nav .sub-menu a {
  display: block;
  padding: 0.45rem 0.7rem;
  font-size: 0.85rem; font-weight: 500;
  color: var(--text-soft);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background 0.1s, color 0.1s;
}

.header-nav .sub-menu a:hover,
.header-nav .sub-menu a:focus-visible { background: var(--surface-hover); color: var(--text); }

/* User zone */
.header-user-zone { display: flex; align-items: center; justify-self: end; }

.user-wrap { position: relative; }

.user-btn {
  display: flex; align-items: center; gap: 0.45rem;
  padding: 0.25rem 0.4rem 0.25rem 0.25rem;
  border: none; background: none; cursor: pointer;
  border-radius: 20px; transition: background 0.15s;
  font-family: var(--font);
}

.user-btn:hover, .user-btn:focus-visible { background: var(--surface-hover); }

.avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--border);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.78rem; color: var(--text-soft);
  overflow: hidden;
}

.avatar img { width: 100%; height: 100%; object-fit: cover; }

.user-btn .uname { font-size: 0.88rem; font-weight: 600; color: var(--text); }

.user-btn .chevron {
  width: 12px; height: 12px; color: var(--text-soft); transition: transform 0.2s;
}

.user-wrap.open .user-btn .chevron { transform: rotate(180deg); }

.user-dropdown {
  position: absolute; top: calc(100% + 6px); right: 0;
  min-width: 160px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  list-style: none; padding: 0.35rem;
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
  z-index: 70;
}

.user-wrap.open .user-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.user-dropdown .dd-name {
  display: none; padding: 0.4rem 0.7rem 0.25rem;
  font-size: 0.82rem; font-weight: 700; color: var(--text);
}

.user-dropdown .dd-sep { height: 1px; background: var(--border); margin: 0.25rem 0.35rem; }

.user-dropdown a {
  display: block; padding: 0.4rem 0.7rem;
  font-size: 0.85rem; font-weight: 500; color: var(--text-soft);
  text-decoration: none; border-radius: var(--radius-sm);
  transition: background 0.1s, color 0.1s;
}

.user-dropdown a:hover, .user-dropdown a:focus-visible { background: var(--surface-hover); color: var(--text); }
.user-dropdown a.logout { color: #c0392b; font-weight: 600; }
.user-dropdown a.logout:hover, .user-dropdown a.logout:focus-visible { background: #fdf0ef; }

/* Mobile toggle */
.mobile-toggle {
  display: none; width: 36px; height: 36px;
  align-items: center; justify-content: center;
  border: none; background: none; color: var(--text-soft);
  cursor: pointer; border-radius: var(--radius-sm); flex-shrink: 0;
}

.mobile-toggle svg { width: 20px; height: 20px; }

/* ================================================================
   MOBILE NAV PANEL
   ================================================================ */
.mobile-nav-panel {
  display: none;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem var(--page-pad) 0.75rem;
}

/* ================================================================
   CONTENT LAYOUT
   ================================================================ */
.site-content {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 2rem var(--page-pad);
}

.site-content.wide {
  max-width: var(--wide-width);
}

.site-content.full-width {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* Two column layout */
.content-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: start;
}

.content-wrap.no-sidebar {
  grid-template-columns: 1fr;
}

/* ================================================================
   POSTS & ENTRIES
   ================================================================ */
.entry {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.entry:last-child { margin-bottom: 0; }

.entry-header { margin-bottom: 1rem; }

.entry-title {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.entry-title a {
  color: var(--text);
  text-decoration: none;
}

.entry-title a:hover { color: var(--active-color); }

.entry-meta {
  font-size: 0.82rem;
  color: var(--text-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.entry-meta a { color: var(--text-soft); }
.entry-meta a:hover { color: var(--active-color); }

.entry-thumbnail {
  margin-bottom: 1rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.entry-thumbnail img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.entry-content {
  font-size: 1rem;
  line-height: 1.7;
}

.entry-content > *:not(:last-child) {
  margin-bottom: 1.25rem;
}

.entry-content h2 { font-size: 1.4rem; font-weight: 800; }
.entry-content h3 { font-size: 1.2rem; font-weight: 700; }
.entry-content h4 { font-size: 1.05rem; font-weight: 700; }

.entry-content blockquote {
  border-left: 4px solid var(--active-color);
  padding: 0.75rem 1.25rem;
  background: var(--surface-hover);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
}

.entry-content ul, .entry-content ol {
  padding-left: 1.5rem;
}

.entry-content code {
  background: var(--surface-hover);
  padding: 0.15em 0.35em;
  border-radius: 3px;
  font-size: 0.9em;
}

.entry-content pre {
  background: var(--text);
  color: #e0e0e0;
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  overflow-x: auto;
  font-size: 0.88rem;
}

.entry-content pre code {
  background: none;
  padding: 0;
  color: inherit;
}

.entry-footer {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-soft);
}

.entry-footer a { color: var(--text-soft); }
.entry-footer a:hover { color: var(--active-color); }

.read-more {
  display: inline-block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--active-color);
  text-decoration: none;
}

.read-more:hover { text-decoration: underline; }

/* ================================================================
   SIDEBAR
   ================================================================ */
.sidebar {
  position: sticky;
  top: calc(80px + 1rem);
}

.widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.widget:last-child { margin-bottom: 0; }

.widget-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
}

.widget ul {
  list-style: none;
}

.widget ul li {
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}

.widget ul li:last-child { border-bottom: none; }

.widget ul li a { color: var(--text-soft); text-decoration: none; }
.widget ul li a:hover { color: var(--active-color); }

/* ================================================================
   SEARCH
   ================================================================ */
.search-form {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--white);
}

.search-form .search-field {
  flex: 1;
  border: none;
  padding: 0.55rem 0.75rem;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text);
  background: transparent;
  outline: none;
}

.search-form .search-field:focus {
  box-shadow: inset 0 0 0 2px var(--pride-blue);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.search-form .search-submit {
  padding: 0.55rem 1rem;
  background: var(--text);
  color: var(--white);
  border: none;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.15s;
}

.search-form .search-submit:hover { background: var(--active-color); }

/* Search results */
.search-results-header {
  margin-bottom: 1.5rem;
}

.search-results-header h1 {
  font-size: 1.5rem;
  font-weight: 800;
}

.search-results-header p {
  color: var(--text-soft);
  font-size: 0.9rem;
}

/* ================================================================
   PAGINATION
   ================================================================ */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  margin-top: 2rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px; height: 36px;
  padding: 0 0.5rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text-soft);
  transition: background 0.15s, color 0.15s;
}

.pagination a:hover { background: var(--surface-hover); color: var(--text); }
.pagination .current { background: var(--text); color: var(--white); }

/* ================================================================
   COMMENTS
   ================================================================ */
.comments-area {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.comments-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.comment-list {
  list-style: none;
}

.comment {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.comment:last-child { border-bottom: none; }

.comment-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
}

.comment-author { font-weight: 700; }
.comment-date { color: var(--text-soft); }

.comment-body p { font-size: 0.95rem; }

.comment-respond { margin-top: 1.5rem; }

.comment-form label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.25rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.75rem;
  outline: none;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--pride-blue);
  box-shadow: 0 0 0 2px rgba(0, 77, 255, 0.15);
}

.comment-form .submit {
  background: var(--text);
  color: var(--white);
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.15s;
}

.comment-form .submit:hover { background: var(--active-color); }

/* ================================================================
   ARCHIVE / CATEGORY HEADERS
   ================================================================ */
.archive-header {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.archive-header .archive-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  margin-bottom: 0.15rem;
}

.archive-header h1 {
  font-size: 1.5rem;
  font-weight: 800;
}

.archive-header .archive-description {
  margin-top: 0.5rem;
  color: var(--text-soft);
  font-size: 0.92rem;
}

/* ================================================================
   404
   ================================================================ */
.error-404 {
  text-align: center;
  padding: 4rem 1rem;
}

.error-404 h1 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--border-strong);
  margin-bottom: 0.5rem;
}

.error-404 p {
  font-size: 1.1rem;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--white);
  padding: 1.25rem var(--page-pad);
  text-align: center;
  color: var(--text-soft);
  font-size: 0.8rem;
}

.site-footer .footer-pride {
  height: 4px;
  background: var(--pride-gradient);
  border-radius: 2px;
  max-width: 120px;
  margin: 0.75rem auto 0;
}

/* ================================================================
   FOCUS
   ================================================================ */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--pride-blue);
  outline-offset: 2px;
}

/* ================================================================
   BLOCK EDITOR ALIGNMENTS
   ================================================================ */
.alignwide {
  max-width: var(--wide-width);
  margin-left: auto;
  margin-right: auto;
}

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

.wp-block-image.alignfull img,
.wp-block-cover.alignfull {
  border-radius: 0;
}

/* ================================================================
   BLOCK EDITOR STYLES
   ================================================================ */
.wp-block-button__link {
  background: var(--text);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1.5rem;
  font-family: var(--font);
  font-weight: 700;
  transition: background 0.15s;
}

.wp-block-button__link:hover { background: var(--active-color); color: var(--white); }

.wp-block-quote {
  border-left: 4px solid var(--active-color);
  padding: 0.75rem 1.25rem;
  background: var(--surface-hover);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.wp-block-separator {
  border: none;
  border-top: 2px solid var(--border);
}

.wp-block-separator.is-style-wide { border-top-width: 1px; }

.wp-block-separator.is-style-dots {
  border: none;
  text-align: center;
}

.wp-block-table table {
  border-collapse: collapse;
  width: 100%;
}

.wp-block-table td, .wp-block-table th {
  border: 1px solid var(--border);
  padding: 0.55rem 0.75rem;
  text-align: left;
}

.wp-block-table th {
  background: var(--surface-hover);
  font-weight: 700;
}

/* ================================================================
   RESPONSIVE: TABLET
   ================================================================ */
@media (max-width: 900px) {
  .header-inner { grid-template-columns: 1fr 1fr; }
  .header-nav-zone { display: none; }
  .mobile-toggle { display: flex; }
  .header-logo-zone { gap: 0.35rem; }

  .mobile-nav-panel.open { display: block; }

  .mnav-item { border-bottom: 1px solid var(--border); }
  .mnav-item:last-child { border-bottom: none; }

  .mnav-row { display: flex; align-items: center; }

  .mnav-row .mnav-link {
    flex: 1; display: block;
    padding: 0.6rem 0.5rem;
    font-size: 0.95rem; font-weight: 600;
    color: var(--text-soft); text-decoration: none;
    border-radius: var(--radius-sm);
    transition: background 0.1s, color 0.1s;
  }

  .mnav-row .mnav-link:hover,
  .mnav-row .mnav-link:focus-visible { background: var(--surface-hover); color: var(--text); }

  .mnav-row .mnav-link.active,
  .mnav-row .current-menu-item > .mnav-link {
    color: var(--text); position: relative; padding-left: 1rem;
  }

  .mnav-row .mnav-link.active::before {
    content: ''; position: absolute;
    left: 0; top: 0.45rem; bottom: 0.45rem;
    width: 3px; border-radius: 3px;
    background: var(--active-color);
  }

  .mnav-expand {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: none; border: none; color: var(--text-soft);
    cursor: pointer; border-radius: var(--radius-sm); flex-shrink: 0;
    transition: background 0.1s, color 0.1s;
  }

  .mnav-expand:hover, .mnav-expand:focus-visible { background: var(--surface-hover); color: var(--text); }

  .mnav-expand svg { width: 14px; height: 14px; transition: transform 0.2s; }

  .mnav-item.expanded .mnav-expand svg { transform: rotate(180deg); }

  .msub { display: none; padding-left: 1rem; padding-bottom: 0.35rem; }
  .mnav-item.expanded .msub { display: block; }

  .msub a {
    display: block; padding: 0.4rem 0.5rem;
    font-size: 0.88rem; font-weight: 500;
    color: var(--text-soft); text-decoration: none;
    border-radius: var(--radius-sm); transition: background 0.1s;
  }
  .msub a:hover { background: var(--surface-hover); }

  .content-wrap { grid-template-columns: 1fr; }

  .sidebar { position: static; }
}

/* ================================================================
   RESPONSIVE: MOBILE
   ================================================================ */
@media (max-width: 550px) {
  :root { --page-pad: 1rem; }
  .logo-icon { width: 38px; height: 38px; }
  .logo-icon svg { width: 22px; height: 22px; }
  .logo-words .site { font-size: 1.1rem; }
  .logo-words .site:first-child { font-size: 1.15rem; }
  .logo-words .org { font-size: 0.68rem; }
  .user-btn .uname { display: none; }
  .user-dropdown .dd-name { display: block; }
  .entry-title { font-size: 1.25rem; }
}
