/* ---------------------- */
/* CSS RESET              */
/* ---------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #f7f9fc 0%, #eef1f5 100%);
  color: #222;
  line-height: 1.4;
min-height: 100vh;


	
}

	img {
		display: block;
		width: 100%;
		height: auto;
	}

/* ---------------------- */
/* LAYOUT                 */
/* ---------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
}

/* ---------------------- */
/* HEADER                 */
/* ---------------------- */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.header img {
max-width: 300px;
}

.header .shop-btn {
  background: #B50F12;
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s ease;
}

.header .shop-btn:hover {
  background: #cd0f13;
}

/* ---------------------- */
/* BLOG TEASERS           */
/* ---------------------- */
.blog-item {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-bottom: 30px;
}
	
	.blog-date {
		font-size: .8rem;
		font-style: italic;
	}

.blog-item h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
	line-height: 1.8rem;
}

.blog-item p {
  margin-bottom: 15px;
  color: #444;
}

.blog-item .read-more {
  display: inline-block;
  padding: 10px 18px;
  background: #045179;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.2s ease;
}

.blog-item .read-more:hover {
  background: #086595;
}

/* Separator */
.separator {
  height: 1px;
  background: #dcdcdc;
  margin: 20px 0 30px;
}

/* ---------------------- */
/* ARTICLE CONTENT        */
/* ---------------------- */
.article {
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  margin-bottom: 40px;
}

.article h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
	line-height: 2.4rem;
}

.article h2 {
  font-size: 1.6rem;
  margin: 25px 0 10px;
	border-bottom: 1px solid #e3e3e3;
	padding-bottom: 8px;
}

.article h3 {
  font-size: 1.3rem;
  margin: 20px 0 8px;
}

.article p {
  margin-bottom: 18px;
  color: #444;
}

.article ul, .article ol {
  margin: 15px 0 20px 25px;
}

.article li {
  margin-bottom: 8px;
}

.article blockquote {
  margin: 25px 0;
  padding: 15px 20px;
  background: #f1f4f7;
  border-left: 4px solid #0055ff;
  border-radius: 6px;
  color: #333;
}

.article img {
  max-width: 100%;
  border-radius: 8px;
  margin: 20px 0;
}
.article a, article a:visited {
	color: #0B3B67;
	font-weight: 700;
}

/* Back Button */
.back-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 20px;
  background: #045179;
  color: #fff !important;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.2s ease;
}

.back-btn:hover {
  background: #086595;
}

/* ---------------------- */
/* FOOTER                 */
/* ---------------------- */
.footer {
  text-align: center;
  font-size: 0.85rem;
  color: #666;
  margin-top: 50px;
}

.footer a {
  color: #444;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* ---------------------- */
/* RESPONSIVE             */
/* ---------------------- */
@media (max-width: 600px) {
	.header {
flex-direction: column;
}
	
  .header img {

  }
  .header .shop-btn {
    padding: 10px 16px;
    font-size: 0.9rem;
	  margin-top: 20px;
  }
	.article {
    padding: 25px;
  }
	
	.article h1 {
  font-size: 1.8rem;

	line-height: 1.8rem;
}

.article h2 {
  font-size: 1.4rem;
	line-height: 1.6rem;

}

.article h3 {
  font-size: 1.1rem;
	line-height: 1.2rem;

}
}

