/* ===========================
   FCN Golf Blog - Elegant Layout
   =========================== */

/* Hero Section */

.blog-hero .container {
	width: 1400px;
}

.blog-hero h3 {
   color:#134a56!important;	
   font-size:26px; 
   font-weight:700;
   margin-top:1em;
}

.blog-hero {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
}

.blog-hero .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
}

.blog-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.blog-hero .hero-text {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
}

.blog-hero h1 {
  font-size: 42px;
  font-weight: 700;
}

.blog-hero p {
  font-size: 18px;
  font-weight: 400;
  margin-top: 5px;
}

/* Blog Layout */
.blog-layout {
  margin-top: 60px;
  margin-bottom: 60px;
}

.blog-content {
  padding-right: 1em;
}

.blog-content h2 {
  color: #134a56;
  font-weight: 600;
  margin-top: 1.2em;
}

.blog-content p {
  font-size: 15px;
  line-height: 1.4;
  color: #333;
  text-align: justify;
}

blockquote {
  font-size:16px;
font-weight:500;  
  background: #134a56;
  color: #fff;
  font-style: none;
  padding: 18px 20px;
  border-radius: 6px;
  margin: 2em 0;
  text-align: center;
}

.highlight-box {
  background: #f4f9fa;
  border-left: 4px solid #134a56;
  padding: 15px 20px;
  border-radius: 4px;
  margin-top: 25px;
  font-size: 15px;
}

/* Sidebar */
.sidebar {
  font-family: poppins;	
  padding-left: 1em;
}

.sidebar .widget {
  background: #fefefe;
  border-radius: 8px;
  padding: 0px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  margin-bottom: 25px;
}

.sidebar h4 {
  color: #134a56;
  font-weight: 600;
  font-size: 16px;
  border-bottom: 1px solid #134a56;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.sidebar ul {
  padding-left: 15px;
  margin: 0;
}

.sidebar ul li {
  margin-bottom: 6px;
}

.sidebar ul li a:hover {
  color: #0e3842;
}

.social-links a {
  margin-right: 10px;
  color: #134a56;
  font-size: 18px;
}

.social-links a:hover {
  color: #0e3842;
}

/* Footer */
.footer {
  background: #111;
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .blog-layout {
    margin-top: 30px;
  }
  .blog-hero {
    height: 280px;
  }
  .blog-hero h1 {
    font-size: 32px;
  }
}
