/*  
Theme Name: Mimbo-Lecape
Theme URI: http://www.darrenhoyt.com/2007/08/05/wordpress-magazine-theme-released/
Description: A magazine-style theme for Wordpress
Version: 3.0
Author: Darren Hoyt (Modified by Daniel Levin)
Author URI: http://www.darrenhoyt.com/2007/08/05/wordpress-magazine-theme-released/

The CSS, XHTML and design is released under GPL:
http://www.opensource.org/licenses/gpl-license.php


TABLE OF CONTENTS

  Nav
  HTML Tags
  Structure
  Headers
  Content Styles
  	 Misc
  	 Sidebar
  	 Single Post
  	 Archives
  Post Styles
  Comments
  Form Elements
  Float Clearing
  Footer
  
*/
@import url("https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400;0,600;1,400;1,600&family=Bitter:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&display=swap");
@import url(css/genericons/genericons.css);

*, *::before, *::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

/* Modern Navigation Styles */

/* ===== Dropdown Nav (3 levels) — Desktop hover, Mobile accordion ===== */

/* Theme-friendly primitives */
:root {
  --nav-bg: #f7f5f0;
  --nav-fg: #2c2a26;
  --nav-fg-muted: #6b6762;
  --nav-accent: #5a6c7d;
  --nav-hover: rgba(44,42,38,0.08);
  --nav-shadow: 0 8px 24px rgba(44,42,38,.12);
  --nav-radius: 10px;
  --nav-speed: .18s; /* animation speed */
}

/* Reset-ish */
#nav .nav-menu, 
#nav .nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0 0 0 25px;
}

/* Container */
#nav {
  position: relative;
  background: var(--nav-bg);
  z-index: 10;
}

/* Top-level list (desktop) */
#nav .nav-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Links */
#nav .nav-menu a {
  display: block;
  padding: .8rem .6rem;
  text-decoration: none;
  color: var(--nav-fg);
  line-height: 1.2;
  border-radius: .5rem;
}
#nav .nav-menu > li > a:hover,
#nav .nav-menu > li > a:focus {
  background: var(--nav-hover);
  color: var(--nav-accent);
}

/* Submenu containers (all levels) */
#nav .children,
#nav .sub-menu {
  background: var(--nav-bg);
  border-radius: var(--nav-radius);
  box-shadow: var(--nav-shadow);
  min-width: 240px;
  z-index: 20;
}

/* ========== Desktop (≥ 992px): hover/focus menus ========== */
@media (min-width: 992px) {
  /* Position dropdowns */
  #nav .nav-menu > li {
    position: relative;
  }
  #nav .nav-menu > li > .children,
  #nav .nav-menu > li > .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity var(--nav-speed), transform var(--nav-speed), visibility var(--nav-speed);
    padding: .4rem;
  }
  /* Third level (flyout) */
  #nav .children li,
  #nav .sub-menu li {
    position: relative;
  }
  #nav .children .children,
  #nav .children .sub-menu,
  #nav .sub-menu .children,
  #nav .sub-menu .sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: .3rem;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateX(6px);
    transition: opacity var(--nav-speed), transform var(--nav-speed), visibility var(--nav-speed);
    padding: .4rem;
  }

  /* Reveal on hover/focus */
  #nav .nav-menu > li:hover > .children,
  #nav .nav-menu > li:hover > .sub-menu,
  #nav .nav-menu > li:focus-within > .children,
  #nav .nav-menu > li:focus-within > .sub-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
  }
  #nav .children li:hover > .children,
  #nav .children li:hover > .sub-menu,
  #nav .sub-menu li:hover > .children,
  #nav .sub-menu li:hover > .sub-menu,
  #nav .children li:focus-within > .children,
  #nav .children li:focus-within > .sub-menu,
  #nav .sub-menu li:focus-within > .children,
  #nav .sub-menu li:focus-within > .sub-menu {
    opacity: 1; visibility: visible; transform: translateX(0);
  }

  /* Submenu items styling */
  #nav .children > li > a,
  #nav .sub-menu > li > a {
    padding: .6rem .8rem;
    color: var(--nav-fg-muted);
    white-space: nowrap;
    border-radius: .4rem;
  }
  #nav .children > li > a:hover,
  #nav .sub-menu > li > a:hover,
  #nav .children > li > a:focus,
  #nav .sub-menu > li > a:focus {
    background: var(--nav-hover);
    color: var(--nav-fg);
  }

  /* Hide mobile toggles on desktop */
  #nav .nav-toggle,
  #nav .submenu-toggle {
    display: none !important;
  }
}

/* ========== Mobile (< 992px): hamburger + accordion ========== */
@media (max-width: 991.98px) {
  /* Hamburger button */
  #nav .nav-toggle {
    appearance: none;
    border: 1px solid rgba(255,255,255,.12);
    background: var(--nav-bg);
    padding: .55rem .7rem;
    border-radius: .6rem;
    font-size: 0; /* hide text */
    line-height: 0;
    width: 44px; height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer;
  }
  #nav .nav-toggle:before {
    content: "";
    width: 22px; height: 2px; background: var(--nav-fg);
    box-shadow: 0 6px 0 var(--nav-fg), 0 -6px 0 var(--nav-fg);
  }

  /* Stack menu */
  #nav .nav-menu {
    display: none;
    flex-direction: column;
    gap: 0;
    padding-top: .5rem;
    width: 100%;
    align-items: stretch;
  }
  #nav.is-open .nav-menu { display: flex; }

  #nav .nav-menu > li > a {
    padding: .9rem .8rem;
    border-radius: .4rem;
    text-align: left;
  }

  /* Submenu toggles (inserted by JS) */
  #nav .submenu-toggle {
    appearance: none;
    border: 0;
    background: transparent;
    font: inherit;
    padding: .9rem .4rem;
    margin-left: .3rem;
    cursor: pointer;
  }
  /* Caret icon */
  #nav .submenu-toggle::after {
    content: "▾";
    display: inline-block;
    transform: rotate(0deg);
    transition: transform var(--nav-speed);
  }
  li.submenu-open > .submenu-toggle::after { transform: rotate(-180deg); }

  /* Accordion behavior */
  #nav .children,
  #nav .sub-menu {
    position: static;
    left: auto;
    display: block;
    overflow: hidden;
    max-height: 0;
    transition: max-height var(--nav-speed) ease;
    margin-left: 0;
    padding-left: 1rem;
}
  li.submenu-open > .children,
  li.submenu-open > .sub-menu {
    overflow: visible;
    max-height: none;
  }
  
  /* Tighten submenu links */
  #nav .children > li > a,
  #nav .sub-menu > li > a {
    padding: .7rem .8rem;
    color: var(--nav-fg-muted);
  }
  #nav .children > li > a:hover,
  #nav .sub-menu > li > a:hover,
  #nav .children > li > a:focus,
  #nav .sub-menu > li > a:focus {
    background: var(--nav-hover);
    color: var(--nav-fg);
  }
}

/* Motion preference */
@media (prefers-reduced-motion: reduce) {
  #nav * { transition: none !important; }
}


/* Category menu */
/* Modern Category Navigation Styles */

/* Base */
#nav-cat {
  background: #4a6b78;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  border-top: 1px solid #83a8b9;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
}

/* Items */
#nav-cat li { list-style: none; }

#nav-cat li a {
  display: block;
  padding: 8px 12px;
  color: #e6f0f4;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  border-radius: 4px;
}

/* Hover/focus (subtle) */
#nav-cat li a:hover,
#nav-cat li a:focus {
  background: rgba(255,255,255,0.15);
  color: #fff;
  outline: none;
}

/* Current item */
#nav-cat li.current-cat a,
#nav-cat li.current_page_item a {
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-weight: 600;
}

/* Hide the menu on small screens to prevent overflow */
@media (max-width: 991.98px) {
  #nav-cat { display: none; }
}

/* Print */
@media print {
  #nav-cat { display: none; }
}


/* ---------- @ fonts -----------*/
/*@import "https://fonts.googleapis.com/css2?family=Yanone+Kaffeesatz:wght@300;400;500&display=swap";'Yanone Kaffeesatz'
@import url('https://fonts.googleapis.com/css2?family=Vesper+Libre:wght@400;500&display=swap');"Vesper Libre"*/
/* ---------- @ Nav -----------*/
* {
  margin: 0;
  padding: 0;
  outline: none; }

body {
  min-height: 101%;
  background: #e4e2db;
  color: #1d1d1d;
  font-size: 100%;
  font-family: "Arimo", Arial, Helvetica, Verdana, sans-serif; }

html {
  min-height: 101%; }

select {
  font-size: 100%;
  font-family: "Arimo", Arial, Helvetica, Verdana, sans-serif; }

input {
  font-size: 100%;
  font-family: "Arimo", Arial, Helvetica, Verdana, sans-serif; }

textarea {
  font-size: 100%;
  font-family: "Arimo", Arial, Helvetica, Verdana, sans-serif; }

p {
  margin: 15px 0;
  line-height: 1.4;
  font-size: 1em; }

a {
  color: #83a7ba; }
  a:visited {
    color: #83a7ba; }
    a:visited img {
      border: none; }
  a:hover {
    color: #4d778d; }
  a:active {
    color: #4d778d; }
  a img {
    border: none; }

hr {
  display: block;
  height: 1px;
  background: #d7d7d7;
  border: 0;
  color: #d7d7d7; }

table {
  border-collapse: collapse;
  width: 100%;
  margin: 15px 0;
  border-top: 1px solid #e0ded9;
  border-bottom: 1px solid #e0ded9; }
  table caption {
    background: #f5f3ee;
    padding: 2px 0; }

td {
  padding: 4px 6px;
  background: #F5F3EE;
  border-bottom: 1px solid #FFF; }

blockquote {
  color: #000;
  padding: 0 18px;
  margin: 25px 45px;
  border-left: 3px solid #DDD;
  font-style: italic;
  font-size: .8rem;
  font-family: "Bitter", Georgia, "Times New Roman", Times, serif;
  letter-spacing: 0.02em; }

pre {
  width: 100%;
  overflow: auto; }

#page {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 8px;
}

#wrapper {
  padding-top: 22px !important;
  background: #FFF;
  font-size: 0.75em;
  padding: 0 25px 60px 25px;
  border-bottom: 1px solid #cac8c2;
  border-right: 1px solid #cac8c2; }

#head_wrapper {
  background: #FFF;
  font-size: 0.75em;
  padding: 0;
  border-bottom: 1px solid #cac8c2;
  border-right: 1px solid #cac8c2; }

#masthead {
  padding: 0 0 22px; }
  #masthead #banner {
    display: block;
    width: 100%; }

#languages {
  float: right;
  width: 100px;
  padding: 8px 0 4px 0; }
  #languages a {
    background: url(images/flags.png) no-repeat;
    height: 11px;
    width: 16px;
    margin-left: 10px;
    padding: 0;
    display: inline-block; }
    #languages a.en {
      background-position: -20px 0; }
    #languages a.uk {
      background-position: 0 0; }
    #languages a.de {
      background-position: -80px 0; }
    #languages a.he {
      background-position: -40px 0; }
    #languages a.ar {
      background-position: -60px 0; }

#content {
  width: 68%;
  /*620px;*/
  float: left;
  position: relative; }

#description {
  font-style: italic;
  font-size: 1.2em;
  font-family: "Bitter", Georgia, "Times New Roman", Times, serif;
  color: #888787;
  padding: 0 0 0 20px;
  border-left: 1px dotted #7c7c7c;
  margin: 13px 0 0 20px;
  float: left;
  letter-spacing: 0.01em;
  visibility: hidden; }

.left {
  float: left; }

.right {
  float: right; }

#sidebar {
  width: 30%;
  /*265px;*/
  float: right; }
  #sidebar li {
    margin-left: 30px;
    padding: 5px 0; }
  #sidebar a {
    color: #424242;
    text-decoration: none; }
    #sidebar a:visited {
      color: #424242;
      text-decoration: none; }
    #sidebar a:hover {
      color: #686868;
      text-decoration: underline; }
    #sidebar a:active {
      color: #686868;
      text-decoration: underline; }

#featured-cats {
  width: 30%;
  /*182px;*/
  float: left; }
  #featured-cats h3 {
    margin: 0 0 15px 0; }
  #featured-cats ul {
    margin: 3px 0 22px 0; }
  #featured-cats li {
    list-style: none;
    border-bottom: 1px dotted #B6B6B6;
    padding: 5px 0 8px 6px;
    margin: 4px 0;
    line-height: 135%; }
  #featured-cats .date {
    margin: 2px 3px 0 0; }

#more-posts {
  width: 68%;
  /*413px;*/
  float: right; }
  #more-posts h3 {
    margin: 0 0 15px 0; }
  #more-posts img {
    float: left;
    margin: 4px 18px 8px 0;
    padding: 2px;
    border: 1px solid #b9b9b9;
    background: #FFF;
    margin: 3px 12px 4px 0; }

h1 {
  display: block;
  height: 90px;
  float: left; }
  h1 a {
    color: #444;
    text-decoration: none; }
    h1 a:visited {
      color: #444;
      text-decoration: none; }
    h1 a:hover {
      color: #686868; }
    h1 a:active {
      color: #929292; }

h2 {
  font-size: 2.5em;
  font-family: "Bitter", Georgia, "Times New Roman", Times, serif;
  padding-bottom: 8px;
  margin: 25px 0 20px 0; }

.lead {
  margin: 22px 0;
  background: #ededed;
  border-bottom: 1px solid #dadada;
  border-right: 1px solid #dadada;
  padding-left: 22px; }
  .lead h2 {
    font-size: 2.2em;
    font-family: "Bitter", Georgia, "Times New Roman", Times, serif;
    line-height: 115%;
    margin: 3px 0 -8px 0;
    padding: 0; }
    .lead h2 .commentcount {
      font-size: 0em; }
  .lead p {
    font-size: 120%; }
  .lead:hover {
    background: #e8e8e8;
    border-bottom: 1px solid #cbcbca;
    border-right: 1px solid #cbcbca; }
  .lead br {
    margin-bottom: 15px; }
  .lead img {
    float: left;
    margin: 22px 22px 22px 0;
    border: 1px solid #B9B9B9;
    padding: 2px;
    background: #ffffff; }

.post h2 {
  font-size: 2.2em;
  padding: 0;
  margin: 15px 0 0 0; }

.post h3 {
  border: none;
  font-size: 1.7em;
  font-family: "Bitter", Georgia, "Times New Roman", Times, serif;
  color: #232323;
  letter-spacing: 0; }

.post h4 {
  margin: 15px 0; }

.post code {
  background: #f5f3ee;
  padding: 3px;
  font-size: 1.2em; }

.post ul li {
  margin: 0 0 5px 42px;
  line-height: 1.4; }

.post ol li {
  margin: 0 0 5px 48px;
  line-height: 1.4; }

h2.posttitle {
  margin: 25px 0 0 0;
  padding: 0 0 12px 0; }

h2.pagetitle {
  border-bottom: 1px solid #d7d7d7;
  padding: 0 0 12px 0;
  margin: 25px 20px 20px 0;
  font-size: 2.2em; }

h2.pagetitle.with-thumb {
  margin: 50px 25px; }

h3 {
  border-top: 3px solid #d7d7d7;
  border-bottom: 1px solid #d7d7d7;
  padding: 5px 0 5px 3px;
  margin: 22px 0 15px 0;
  font-size: 1.2em;
  background: none;
  color: #4c4b46;
  letter-spacing: 0.07em; }

div.sharedaddy h3.sd-title {
  border: none;
  padding: 0;
  background: none;
  color: #4c4b46;
  font-family: "Arimo", Arial, Helvetica, Verdana, sans-serif; }

h3#respond {
  margin: 45px 0 20px 0; }

h3#comments {
  margin-top: 32px; }

h4 {
  font-size: 1.3em;
  font-family: "Bitter", Georgia, "Times New Roman", Times, serif;
  font-weight: 500;
  margin-bottom: -10px;
  color: #4f7384; }
  h4 a {
    color: #383838;
    text-decoration: none; }
    h4 a:visited {
      color: #383838;
      text-decoration: none; }
  h4 .archive-list a:active {
    color: #686868;
    text-decoration: underline; }

.archive-list h4 {
  margin: 0;
  font-size: 1.2em;
  line-height: 125%; }
  .archive-list h4 a {
    color: #424242;
    text-decoration: none; }
    .archive-list h4 a:visited {
      color: #424242;
      text-decoration: none; }
    .archive-list h4 a:hover {
      color: #686868;
      text-decoration: underline; }

.archive-list a img {
  float: left;
  margin: 4px 18px 8px 0;
  padding: 2px;
  border: 1px solid #b9b9b9;
  background: #FFF; }

.archive-list a:visited img {
  float: left;
  margin: 4px 18px 8px 0;
  padding: 2px;
  border: 1px solid #b9b9b9;
  background: #FFF; }

.archive-list li {
  list-style: none;
  width: 48%;
  /*285px;*/
  float: left;
  height: 103px;
  margin: 8px 2% 18px 0;
  /*8px 25px 18px 0;*/
  border-bottom: 1px dotted #b1b1b1; }

.archive-list img {
  margin: 0 14px 0 0; }

.archive-list .postmetadata {
  border: none;
  margin: 0;
  padding: 4px 0 0 0; }

h5 {
  font: 0.8em;
  font-family: "Bitter", Georgia, "Times New Roman", Times, serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 4px 8px;
  margin-bottom: 5px;
  background: #f5f3ee;
  border-top: 1px solid #d7d7d7; }
  h5 a {
    text-decoration: none; }
    h5 a:visited {
      text-decoration: none; }
    h5 a:hover {
      text-decoration: none; }
    h5 a:active {
      text-decoration: none; }

h6 {
  font-weight: bold;
  font-size: 0.9em;
  font-family: "Arimo", Arial, Helvetica, Verdana, sans-serif; }

.recent-excerpts {
  padding-bottom: 10px; }
  .recent-excerpts br {
    margin-bottom: 15px; }

.lead-text {
  padding: 13px 15px 16px 0; }

.commentcount {
  padding-right: 19px;
  background: url(images/bubble.gif) no-repeat right;
  font-size: 0.8em;
  font-family: "Arimo", Arial, Helvetica, Verdana, sans-serif; }
  .commentcount a {
    color: #424242;
    text-decoration: none; }
    .commentcount a:visited {
      color: #424242;
      text-decoration: none; }
    .commentcount a:hover {
      color: #686868;
      text-decoration: underline; }
    .commentcount a:active {
      color: #686868;
      text-decoration: underline; }

.postmetadata {
  padding: 7px 0;
  border-top: 1px solid #d7d7d7;
  margin: 0 0 20px 0;
  color: #7a7a7a; }
  .postmetadata .commentcount {
    font-size: 1em; }

.date {
  font-family: "Bitter", Georgia, "Times New Roman", Times, serif;
  font-size: 140%;
  color: #737373; }

.headlines li {
  margin-left: 30px;
  padding: 5px 0; }

#home #content a {
  color: #424242;
  text-decoration: none; }
  #home #content a:visited {
    color: #424242;
    text-decoration: none; }
  #home #content a:hover {
    color: #686868;
    text-decoration: underline; }
  #home #content a:active {
    color: #686868;
    text-decoration: underline; }

#home #content a.author {
  margin: 0;
  text-align: right;
  color: #607B88;
  display: inline-block; }

.fullarchive a {
  color: #424242;
  text-decoration: none; }
  .fullarchive a:visited {
    color: #424242;
    text-decoration: none; }
  .fullarchive a:hover {
    color: #686868;
    text-decoration: underline; }
  .fullarchive a:active {
    color: #686868;
    text-decoration: underline; }

#wp-calendar td {
  text-align: center;
  padding: 3px; }

#recentcomments {
  color: #787878; }

a.rsswidget {
  font-weight: bold; }
  a.rsswidget:visited {
    font-weight: bold; }

#ads img {
  float: left;
  margin: 0 0 6px 6px; }

.wp125ad img {
  float: left;
  margin: 0 0 6px 6px; }

.textwidget {
  margin: 15px 0;
  line-height: 160%; }

.widget td {
  background: none; }

.widget table {
  border: none; }

#writer {
  background: #ededed;
  margin: -10px 0 22px 0;
  padding: 3px 20px 16px 20px;
  border-bottom: 1px solid #dadada;
  border-top: 1px solid #dadada; }
  #writer img {
    padding: 1px;
    border: 1px solid #b2afa4;
    float: left;
    margin: 18px 15px 6px 0; }

#tags {
  padding: 3px;
  border-bottom: 1px solid #DDD;
  border-top: 1px solid #DDD; }
  #tags a {
    text-decoration: none; }
    #tags a:visited {
      text-decoration: none; }

#pagination {
  margin-top: 30px;
  text-align: center; }
  #pagination div {
    display: inline-block; }
  #pagination .left {
    margin-right: 1%; }
  #pagination .right {
    margin-left: 1%; }

.entry {
  padding-bottom: 10px; }
  .entry img {
    display: block;
    border: 1px solid #999;
    padding: 2px;
    margin: 15px 0; }

.wp-caption.alignleft {
  background: #f5f3ee;
  text-align: center;
  padding: 10px 5px 10px 10px;
  border: 3px double #FFF;
  float: left;
  margin: 5px 22px 10px 0; }

.wp-caption.alignright {
  background: #f5f3ee;
  text-align: center;
  padding: 10px 5px 10px 10px;
  border: 3px double #FFF;
  float: right;
  margin: 5px 0 10px 22px; }

.wp-caption.aligncenter {
  background: #f5f3ee;
  text-align: center;
  padding: 10px 5px 10px 10px;
  border: 3px double #FFF;
  margin: 0 auto;
  display: block;
  margin-bottom: 15px;
  float: none; }

img.alignleft {
  margin: 5px 15px 10px 0;
  float: left; }

img.alignright {
  margin: 5px 0 10px 15px;
  float: right; }

img.aligncenter {
  margin: 0 auto;
  display: block;
  margin-bottom: 15px;
  float: none; }

p.wp-caption-text {
  margin: 0;
  text-align: center;
  padding: 5px 0; }

.wp-caption img {
  float: none;
  margin: 0; }

.gallery {
  margin: 15px 0;
  display: block; }
  .gallery img {
    border: 1px solid #999 !important;
    padding: 2px; }

.gallery-item {
  padding: 12px 0; }

.gallery-caption {
  padding: 10px; }

.reply a {
  width: 75px;
  background: #CCC;
  color: #FFF;
  display: block;
  margin-bottom: 15px;
  padding: 5px !important;
  text-align: center;
  border-bottom: 1px solid #f2f2f2;
  border-right: 1px solid #f2f2f2;
  text-decoration: none !important;
  font-style: italic;
  font-size: 1em;
  font-family: "Bitter", Georgia, "Times New Roman", Times, serif; }
  .reply a:visited {
    width: 75px;
    background: #CCC;
    color: #FFF;
    display: block;
    margin-bottom: 15px;
    padding: 5px !important;
    text-align: center;
    border-bottom: 1px solid #f2f2f2;
    border-right: 1px solid #f2f2f2;
    text-decoration: none !important;
    font-style: italic;
    font-size: 1em;
    font-family: "Bitter", Georgia, "Times New Roman", Times, serif; }
  .reply a:hover {
    background: #aeaeae;
    text-decoration: none;
    border-bottom: 1px solid #898989;
    border-right: 1px solid #898989;
    color: #FFF; }
  .reply a:active {
    background: #CCC; }

.commentlist li {
  margin: 0 0 18px 0;
  padding: 15px;
  background: #F2F2F2;
  border-bottom: 1px solid #DDDDDD;
  border-top: 1px solid #DDDDDD;
  list-style: none; }

.commentlist li.depth-2 {
  border: none;
  background: #FFF;
  border-top: 1px solid #f2f2f2;
  margin-left: 15px; }

.commentlist li.depth-3 {
  margin-left: 15px;
  border: none;
  background: #f2f2f2; }

.commentlist li.bypostauthor {
  background: #e5e5e5 !important;
  border: 1px solid #c7c7c7 !important; }

.commentlist code {
  background: #e0e0e0;
  padding: 3px; }

.avatar {
  margin: 3px 10px 0 0;
  float: left;
  padding: 2px;
  border: 1px solid #b9b9b9;
  background: #FFF; }

#trackbacklist li {
  margin: 10px 0 10px 35px; }

#trackbacklist cite {
  font-style: normal; }

cite.fn {
  font-size: 1.4em;
  font-family: "Bitter", Georgia, "Times New Roman", Times, serif;
  font-weight: 500;
  letter-spacing: -0.05em;
  display: block;
  padding-top: 9px; }

.says {
  display: none; }

.commentmetadata {
  float: left; }
  .commentmetadata a:hover {
    text-decoration: underline;
    color: #333; }
  .commentmetadata a:active {
    text-decoration: underline;
    color: #333; }

.comment-date a {
  color: #868686;
  font-size: 0.9em;
  text-decoration: none; }
  .comment-date a:visited {
    color: #868686;
    font-size: 0.9em;
    text-decoration: none; }

#author {
  background: #FFF !important;
  padding: 5px;
  border: 1px solid #bfbfbf;
  border-left: 1px solid #e2e2e2;
  border-top: 1px solid #e2e2e2;
  width: 220px; }

#email {
  background: #FFF !important;
  padding: 5px;
  border: 1px solid #bfbfbf;
  border-left: 1px solid #e2e2e2;
  border-top: 1px solid #e2e2e2;
  width: 220px; }

#comment {
  background: #FFF !important;
  padding: 5px;
  border: 1px solid #bfbfbf;
  border-left: 1px solid #e2e2e2;
  border-top: 1px solid #e2e2e2; }

#url {
  background: #FFF !important;
  padding: 5px;
  border: 1px solid #bfbfbf;
  border-left: 1px solid #e2e2e2;
  border-top: 1px solid #e2e2e2;
  width: 220px; }

#s {
  background: #FFF !important;
  padding: 5px;
  border: 1px solid #bfbfbf;
  border-left: 1px solid #e2e2e2;
  border-top: 1px solid #e2e2e2;
  width: 180px;
  font-size: 1em; }
  #s:focus {
    background: #f8f8f8 !important; }

.button {
  padding: 8px 14px;
  background: #424242;
  color: #FFF !important;
  border: none;
  font-size: 1.1em; }
  .button:hover {
    background: #272727;
    color: #FFF;
    text-decoration: none; }
  .button:active {
    background: #000; }

#commentform textarea {
  width: 98%;
  margin-top: 5px;
  height: 250px; }

#searchform {
  text-align: right;
  padding-top: 22px; }

#searchsubmit {
  vertical-align: top; }



/* MailerLite Form Styles */
.mailerlite-form-inputs {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(96, 123, 136, 0.1);
    transition: all 0.3s ease;
}

.mailerlite-form-inputs:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    /*transform: translateY(-2px);*/
}

.mailerlite-form-field {
    margin-bottom: 16px;
    position: relative;
}

.mailerlite-form-field label {
    display: block;
    font-size: 0.9em;
    font-weight: 600;
    color: #3f4a4f;
    margin-bottom: 6px;
    font-family: "Arimo", Arial, Helvetica, Verdana, sans-serif;
    letter-spacing: 0.02em;
}

.mailerlite-form-field input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0ded9;
    border-radius: 8px;
    background: white;
    font-size: 0.95em;
    font-family: "Arimo", Arial, Helvetica, Verdana, sans-serif;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.mailerlite-form-field input[type="email"]:focus {
    outline: none;
    border-color: #607b88;
    box-shadow: 0 0 0 3px rgba(96, 123, 136, 0.1);
    background: #fdfdfd;
}

.mailerlite-form-field input[type="email"]:hover {
    border-color: #cac8c2;
}

.mailerlite-subscribe-button-container {
    text-align: center;
    margin-top: 18px;
}

.mailerlite-subscribe-submit {
    /*background: linear-gradient(135deg, #607b88, #4a6b75);*/
    background: #4a6b78;
    color: rgb(230, 240, 244);
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: "Arimo", Arial, Helvetica, Verdana, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(96, 123, 136, 0.2);
    letter-spacing: 0.02em;
    min-width: 120px;
}

.mailerlite-subscribe-submit:hover {
    /*background: linear-gradient(135deg, #4a6b75, #607b88);*/
    background: #69818c;
    /*transform: translateY(-2px);*/
    box-shadow: 0 6px 20px rgba(96, 123, 136, 0.3);
}

.mailerlite-subscribe-submit:active {
    /*transform: translateY(0);*/
    box-shadow: 0 2px 10px rgba(96, 123, 136, 0.2);
}

.mailerlite-form-loader {
    text-align: center;
    color: #607b88;
    font-size: 0.85em;
    font-style: italic;
    margin: 10px 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mailerlite-form-loader.show {
    opacity: 1;
}

/* Responsive adjustments for sidebar */
@media (max-width: 768px) {
    .mailerlite-form-inputs {
        padding: 16px;
        margin: 12px 0;
    }
    
    .mailerlite-form-field input[type="email"] {
        padding: 10px 14px;
        font-size: 0.9em;
    }
    
    .mailerlite-subscribe-submit {
        padding: 10px 24px;
        font-size: 0.9em;
        min-width: 100px;
    }
}

/* End MailerLite Form Styles */

.clearfloat {
  display: block; }
  .clearfloat:after {
    display: block;
    visibility: hidden;
    clear: both;
    height: 0;
    content: "."; }

#footer {
  font-size: 0.75em;
  padding: 16px 25px 25px 25px; }
  #footer a {
    color: #94928b;
    text-decoration: none; }
    #footer a:visited {
      color: #94928b;
      text-decoration: none; }
    #footer a:hover {
      color: #5a5954; }
    #footer a:active {
      text-decoration: underline; }
  #footer img {
    vertical-align: middle; }

#copyright {
  float: left;
  width: 68%;
  /*550px;*/ }

#rss {
  float: right;
  width: 30%;
  /*350px;*/
  text-align: right; }

.clear {
  clear: both; }

.cat-img {
  background: #ffffff;
  padding: 2px;
  border: 1px solid #B9B9B9;
  float: left;
  margin: 20px 20px 0 0; }

.older_posts_cell {
  padding: 10px;
  background: #f7f7f7;
  border: 1px solid #e0e0e0;
  margin-bottom: 20px; }
  .older_posts_cell a img {
    width: 150px; }

.older_posts_content h3 {
  margin: 0;
  font-size: 1.8em;
  font-family: "Bitter", Georgia, "Times New Roman", Times, serif;
  line-height: 115%;
  border: none; }

@media (max-width: 768px) {

  #content,
  #sidebar,
  #featured-cats,
  #more-posts {
    width: 100%;
    float: none;
  }

  #sidebar li {
    margin-left: 0;
  }

  #wrapper {
    padding: 0 15px 40px 15px;
    border-right: none;
  }

  #head_wrapper {
    border-right: none;
  }
}
