/* -------------------------------------------------------------
   NEWSBLOGGER THEME — DEFAULT LIGHT MODE
   File: default.css
   ------------------------------------------------------------- */

/* ========== RESET & BASE ========== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: "Helvetica", "Arial", sans-serif;
  background: #ffffff;
  color: #2a2a2a;
  line-height: 1.6;
}

a {
  color: #0073e6;
  text-decoration: none;
  transition: .2s;
}
a:hover {
  color: #005bb5;
}

/* Selection highlight */
::selection {
  background: #0073e6;
  color: #ffffff;
}

/* ========== HEADER ========== */

header,
.top-bar,
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}

.logo-text,
.site-title a {
  color: #111111;
  font-weight: 700;
}

/* ========== NAVIGATION ========== */

nav,
.main-navigation {
  background: #f9f9f9;
  border-bottom: 1px solid #e3e3e3;
}

nav ul li {
  list-style: none;
  display: inline-block;
}

nav ul li a {
  padding: 12px 18px;
  display: block;
  color: #333;
}

nav ul li a:hover,
nav ul li.current-menu-item > a {
  background: #eaeaea;
  color: #000;
}

/* ========== CONTENT AREA ========== */

article,
.post,
.page {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  padding: 20px;
  margin-bottom: 25px;
  border-radius: 6px;
}

.post-title {
  margin-bottom: 10px;
}
.post-title a {
  color: #111111;
  font-weight: bold;
  font-size: 1.5rem;
}
.post-title a:hover {
  color: #0073e6;
}

.post-meta {
  margin-bottom: 15px;
  color: #777777;
  font-size: 0.9rem;
}

.post-content p {
  margin-bottom: 15px;
  color: #333333;
}

/* ========== SIDEBAR ========== */

.sidebar,
.widget {
  background: #fafafa;
  border: 1px solid #e1e1e1;
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.widget-title {
  font-weight: bold;
  color: #111111;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid #0073e6;
}

/* ========== FOOTER ========== */

footer,
.site-footer {
  background: #f2f2f2;
  color: #555555;
  padding: 20px;
  border-top: 1px solid #e0e0e0;
}

.site-footer a {
  color: #0073e6;
}
.site-footer a:hover {
  color: #005bb5;
}

/* ========== BUTTONS ========== */

button,
input[type="button"],
input[type="submit"],
.btn {
  background: #0073e6;
  color: #ffffff;
  border: none;
  padding: 10px 18px;
  cursor: pointer;
  border-radius: 5px;
  font-weight: 600;
  transition: .2s;
}

button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
.btn:hover {
  background: #005bb5;
}

/* ========== FORMS ========== */

input,
textarea,
select {
  width: 100%;
  background: #ffffff;
  border: 1px solid #dcdcdc;
  padding: 10px;
  border-radius: 4px;
  color: #333333;
  transition: .2s;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #0073e6;
  outline: none;
}

/* ========== BLOCKQUOTE ========== */

blockquote {
  background: #f7f7f7;
  border-left: 4px solid #0073e6;
  padding: 15px 20px;
  margin: 20px 0;
  color: #555555;
}

/* ========== TABLE ========== */

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  color: #333333;
}

table th {
  background: #f0f0f0;
  padding: 1
