:root {
  --body-bg: #efefef;
  --panel-bg: #ffffff;
  --header-bg: #f5f5ed;
  --border: #e3e3d5;
  --text: #424242;
  --muted: #595959;
  --link: #e24a24;
  --link-hover: #f7782e;
  --nav-hover: #e2e2dc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--body-bg) url("/wp-content/uploads/bg-body.jpg");
  color: var(--text);
  font-family: "Varela Round", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: var(--link);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--link-hover);
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  z-index: 10;
  background: #fff;
  padding: .5rem .75rem;
}

.site-header,
.site-shell,
.site-footer {
  max-width: 1025px;
  margin-right: auto;
  margin-left: auto;
}

.site-header {
  margin-top: 25px;
  background: var(--header-bg);
  border: 4px solid var(--border);
  border-bottom: 1px solid #ededed;
}

.inside-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 25px 40px 20px;
}

.site-logo img {
  display: block;
  width: 300px;
  max-width: 100%;
}

.main-navigation ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation a {
  display: block;
  padding: 12px 28px;
  color: #e5400d;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
}

.main-navigation a:hover,
.main-navigation a:focus {
  background: var(--nav-hover);
  color: #e5400d;
}

.site-shell {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(245px, 1fr);
  border: 4px solid var(--border);
  border-top: 0;
  background: var(--panel-bg);
}

.content-area {
  min-width: 0;
}

.post-card,
.single-article,
.archive-header,
.paging-navigation {
  padding: 40px;
  background: var(--panel-bg);
}

.post-card + .post-card {
  border-top: 1px solid #eeeeee;
}

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

.entry-title {
  margin: 0;
  color: #0a0a0a;
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.25;
}

h1.entry-title,
.archive-header h1 {
  font-size: 30px;
}

h2.entry-title,
.post-card .entry-title {
  font-size: 27px;
}

.entry-title a {
  color: #0a0a0a;
}

.entry-title a:hover,
.entry-title a:focus {
  color: var(--link);
}

.entry-meta {
  margin-top: .5rem;
  color: var(--muted);
  font-size: 15px;
}

.post-image {
  display: block;
  margin: 0 0 1.5rem;
  text-align: center;
}

.entry-summary p,
.entry-content p {
  margin-top: 0;
}

.entry-content h2 {
  margin-top: 2rem;
  color: #0a0a0a;
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 27px;
  line-height: 1.3;
}

.entry-content h3 {
  margin-top: 1.75rem;
  font-size: 20px;
}

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

.alignleft {
  float: left;
  margin: .3rem 1.2rem 1rem 0;
}

.alignright {
  float: right;
  margin: .3rem 0 1rem 1.2rem;
}

.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.read-more {
  white-space: nowrap;
}

.paging-navigation {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid #eeeeee;
}

.sidebar {
  border-left: 1px solid #eeeeee;
}

.widget {
  padding: 28px 24px;
  font-size: 15px;
}

.widget + .widget {
  border-top: 1px solid #eeeeee;
}

.widget-title {
  margin: 0 0 10px;
  padding: 5px 10px;
  background: #eeeeee;
  color: #000000;
  font-size: 18px;
}

.widget ul {
  list-style: none;
  margin: 0;
  padding: 0 0 0 10px;
}

.widget li {
  margin-top: 8px;
  line-height: 1.35;
}

.site-footer {
  border: 4px solid var(--border);
  border-top: 0;
  background: var(--header-bg);
}

.site-info {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 20px;
  color: #686868;
}

.site-info a {
  color: #6d6d6d;
}

@media (max-width: 820px) {
  .inside-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 30px;
  }

  .main-navigation ul {
    justify-content: flex-start;
  }

  .main-navigation a {
    padding: 10px 18px 10px 0;
  }

  .site-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    border-left: 0;
    border-top: 1px solid #eeeeee;
  }

  .post-card,
  .single-article,
  .archive-header,
  .paging-navigation {
    padding: 30px;
  }
}
