/* =========================
   GLOBAL STYLES
========================= */

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  margin: 0;
  background: #f5f7fb;
  color: #1f2937;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}


/* =========================
   HEADER
========================= */

header {
  background: white;
  border-bottom: 1px solid #e5e7eb;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}


/* =========================
   LOGO (LinkedIn style)
========================= */

.logo a {
  font-size: 26px;
  font-weight: 700;
  text-decoration: none;
  color: #111827;
}

.logo span {
  color: #0a66c2;
}


/* =========================
   NAVIGATION
========================= */

nav {
  display: flex;
  gap: 18px;
}

nav a {
  text-decoration: none;
  font-size: 15px;
  color: #4b5563;
  font-weight: 500;
  padding: 6px 8px;
  border-radius: 6px;
}

nav a:hover {
  color: #0a66c2;
  background: #eef4ff;
}


/* =========================
   INTRO SECTION
========================= */

.intro {
  margin-top: 60px;
  margin-bottom: 40px;
}

.intro h1 {
  font-size: 36px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.intro-text {
  font-size: 18px;
  color: #6b7280;
  max-width: 720px;
}


/* =========================
   BLOG GRID
========================= */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-bottom: 60px;
}


/* =========================
   BLOG CARD
========================= */

.blog-card {
  background: white;
  padding: 24px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.blog-card h2 {
  font-size: 20px;
  margin: 10px 0;
}

.blog-card h2 a {
  text-decoration: none;
  color: #111827;
}

.blog-card h2 a:hover {
  color: #0a66c2;
}

.blog-card p {
  color: #6b7280;
  font-size: 15px;
}


/* =========================
   TAGS
========================= */

.tag {
  font-size: 12px;
  font-weight: 600;
  color: #0a66c2;
  background: #eef4ff;
  padding: 4px 8px;
  border-radius: 5px;
}


/* =========================
   POST DATE
========================= */

.post-date {
  font-size: 13px;
  color: #9ca3af;
  margin-top: 6px;
}


/* =========================
   FOOTER
========================= */

footer {
  background: white;
  border-top: 1px solid #e5e7eb;
  padding: 24px 0;
  text-align: center;
  color: #6b7280;
  font-size: 14px;
}


/* =========================
   FREE TEMPLATE BUTTONS
========================= */

.blog-home-nav {
  background: #eef4ff;
  color: #0a66c2;
  padding: 6px 10px;
  border-radius: 6px;
}

.blog-home-nav:hover {
  background: #dbeafe;
}


/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 768px) {

  .intro h1 {
    font-size: 28px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  nav {
    gap: 10px;
  }

}
/* PMP Layout */

.pmp-layout{
display:flex;
gap:40px;
margin-top:40px;
}


/* Sidebar */

.pmp-sidebar{
width:230px;
border-right:1px solid #e5e7eb;
padding-right:20px;
}

.pmp-sidebar h3{
font-size:18px;
margin-bottom:15px;
}

.sidebar-link{
display:block;
padding:8px 0;
text-decoration:none;
color:#374151;
font-size:15px;
}

.sidebar-link:hover{
color:#0a66c2;
}

.sidebar-link.active{
font-weight:600;
color:#0a66c2;
}


/* Content */

.pmp-content{
flex:1;
}

.pmp-intro{
color:#6b7280;
margin-bottom:25px;
}


/* Question Card */

.question-card{

background:white;
border:1px solid #e5e7eb;
padding:22px;
border-radius:10px;
margin-bottom:20px;
cursor:pointer;
transition:all 0.2s ease;

}

.question-card:hover{
box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.question-card h3{
font-size:18px;
margin-bottom:15px;
}


/* Options */

.options{
list-style:none;
padding:0;
margin:0;
}

.options li{
padding:6px 0;
color:#374151;
}


/* Answer hidden by default */

.answer {
  display: none;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e5e7eb;
  color: #374151;
}
.pmp-table{
width:100%;
border-collapse:collapse;
margin-top:15px;
}

.pmp-table th,
.pmp-table td{
border:1px solid #e5e7eb;
padding:10px;
text-align:left;

/* LinkedIn Share Button */

.linkedin-share-btn{

display:inline-block;
background:#0a66c2;
color:#ffffff;
padding:8px 14px;
border-radius:6px;
text-decoration:none;
font-size:14px;
font-weight:500;
transition:all 0.2s ease;

}

.linkedin-share-btn:hover{

background:#084c99;
color:white;

}
}

.pmp-table th{
background:#f5f7fb;
}
/* LinkedIn Share Button */

.linkedin-share-btn{

display:inline-block;
background:#0a66c2;
color:#ffffff;
padding:8px 14px;
border-radius:6px;
text-decoration:none;
font-size:14px;
font-weight:500;
transition:all 0.2s ease;

}

.linkedin-share-btn:hover{

background:#084c99;
color:white;

}
