/* =========================
   RESET & BASIC
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: #333;
  background: #fff;
  line-height: 1.6;
}

a {
  color: #333;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  list-style: none;
}

/* =========================
   LAYOUT UTAMA
========================= */
#top {
  width: 1000px;
  margin: 0 auto;
}

#header {
  height: 120px;
  background: #f5f5f5;
}

#logo {
  float: left;
  margin: 20px;
}

#main {
  float: left;
  width: 700px;
  padding: 15px;
}

#side {
  float: right;
  width: 260px;
  padding: 15px;
}

/* =========================
   NAVIGASI
========================= */
#topNav {
  margin-top: 10px;
}

#topNav li {
  float: left;
  margin-right: 15px;
}

#topNav a {
  font-weight: bold;
}

/* =========================
   TOP PAGE / HOMEPAGE
========================= */
.topBanner {
  width: 100%;
  height: 300px;
  background: #ddd;
  margin-bottom: 20px;
}

.newsBox {
  border: 1px solid #ccc;
  padding: 10px;
  margin-bottom: 15px;
}

.newsBox h2 {
  font-size: 14px;
  margin-bottom: 8px;
  border-bottom: 1px dotted #aaa;
}

/* =========================
   SIDEBAR
========================= */
.sideBox {
  border: 1px solid #ccc;
  padding: 10px;
  margin-bottom: 15px;
}

.sideBox h3 {
  font-size: 13px;
  margin-bottom: 8px;
}

/* =========================
   FOOTER
========================= */
#footer {
  clear: both;
  font-size: 11px;
  color: #666;
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #ccc;
}

/* =========================
   CLEARFIX
========================= */
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
