
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;700&display=swap');


/* Blog Section Layout */
.blog-section {
  display: flex;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: 60px auto;
  background: #FAFAFA  ;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  overflow: hidden;
}

/* Content Area */
.blog-content-area {
  flex: 1;
  padding: 50px;
  box-sizing: border-box;
}

/* Blog Header */
.blog-title {
  font-weight:600;
  font-size: 2.8em;
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-subtitle {
  font-size: 1.2em;
  color: #666;
  margin-bottom: 30px;
}

/* Author Block */
.author-info {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

.author-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
}

.author-name {
  font-weight: bold;
  margin: 0;
}

.author-meta {
  color: #888;
  font-size: 0.95em;
}

/* Section Part */
.blog-section-part {
  margin-bottom: 60px;
}

.blog-section-part h2 {
    font-weight: bold;
    text-transform: capitalize;
  font-size: 1.6em;
  margin-bottom: 15px;
}

/* Paragraphs */
.blog-section-part p {
    font-family: 'Lora', sans-serif;
  text-align: justify;
  font-size: 1.1em;
  margin-bottom: 20px;
}

/* Drop Cap */
.dropcap {
  float: left;
  font-size: 2.8em;
  line-height: 1;
  font-weight: bold;
  margin-right: 10px;
  color: #222;
}


.centered-list {
    text-align: center;
}

.centered-list ul {
    display: inline-block;
    text-align: left;
    list-style: square;
    padding-left: 1.2em;   /* spacing for bullets */
}

.centered-list li {
    list-style: square;
}

.centered-table {
    text-align: center;
}

.centered-table table {
    margin: 0 auto;             /* center the table */
    border-collapse: collapse;  /* clean border look */
    font-family: 'Segoe UI', sans-serif;
    font-size: 15px;
    color: #333;
    background-color: #f9f9f9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.centered-table th,
.centered-table td {
    border: 1px solid #ccc;
    padding: 10px 15px;
    text-align: left;
}

.centered-table th {
    background-color: #e0e0e0;
    font-weight: 700;
}




/* Images & Figures */
figure {
  margin: 30px 0;
  text-align: center;
}

figure img,
.blog-section-part img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  margin: 20px auto;
  display: block;
}

figcaption {
  font-size: 0.9em;
  color: #777;
  margin-top: 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .blog-section {
    flex-direction: column;
  }

  .blog-sidebar {
    width: 100%;
    border-left: none;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: center;
  }

  .blog-content-area {
    padding: 30px;
  }
}
