@charset "UTF-8";

/*
Theme Name: Twenty Twenty-One
Theme URI: https://wordpress.org/themes/twentytwentyone/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: Twenty Twenty-One is a blank canvas for your ideas and it makes the block editor your best brush. With new block patterns, which allow you to create a beautiful layout in a matter of seconds, this theme’s soft colors and eye-catching — yet timeless — design will let your work shine. Take it for a spin! See how Twenty Twenty-One elevates your portfolio, business website, or personal blog.
Requires at least: 5.3
Tested up to: 6.8
Requires PHP: 5.6
Version: 2.6
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyone
Tags: one-column, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, blog, portfolio

Twenty Twenty-One WordPress Theme, (C) 2020 WordPress.org
Twenty Twenty-One is distributed under the terms of the GNU GPL.
*/

/**
 * SETTINGS
 * File-header..........The file header for the themes style.css file.
 * Fonts................Any font files, if the project needs specific fonts.
 * Global...............Project-specific, globally available variables.
 *
 * TOOLS
 * Functions............Global functions.
 * Mixins...............Global mixins.
 *
 * GENERIC
 * Normalize.css........Normalise browser defaults.
 * Breakpoints..........Mixins and variables for responsive styles
 * Vertical-margins.....Vertical spacing for the main components.
 * Reset................Reset specific elements to make them easier to style in other contexts.
 * Clearings............Clearings for the main components.
 *
 * ELEMENTS
 * Blockquote...........Default blockquote.
 * Forms................Element-level form styling.
 * Headings.............H1–H6
 * Links................Default links.
 * Lists................Default lists.
 * Media................Images, Figure, Figcaption, Embed, iFrame, Objects, Video.
 *
 * BLOCKS
 * Audio................Specific styles for the audio block.
 * Button...............Specific styles for the button block.
 * Code.................Specific styles for the code block.
 * Columns..............Specific styles for the columns block.
 * Cover................Specific styles for the cover block.
 * File.................Specific styles for the file block.
 * Gallery..............Specific styles for the gallery block.
 * Group................Specific styles for the group block.
 * Heading..............Specific styles for the heading block.
 * Image................Specific styles for the image block.
 * Latest comments......Specific styles for the latest comments block.
 * Latest posts.........Specific styles for the latest posts block.
 * Legacy...............Specific styles for the legacy gallery.
 * List.................Specific styles for the list block.
 * Media text...........Specific styles for the media and text block.
 * Navigation...........Specific styles for the navigation block.
 * Paragraph............Specific styles for the paragraph block.
 * Pullquote............Specific styles for the pullquote block.
 * Quote................Specific styles for the quote block.
 * Search...............Specific styles for the search block.
 * Separator............Specific styles for the separator block.
 * Table................Specific styles for the table block.
 * Verse................Specific styles for the verse block.
 * Video................Specific styles for the video block.
 * Utilities............Block alignments.
 *
 * COMPONENTS
 * Header...............Header styles.
 * Footer...............Footer styles.
 * Comments.............Comment styles.
 * Archives.............Archive styles.
 * 404..................404 styles.
 * Search...............Search styles.
 * Navigation...........Navigation styles.
 * Footer Navigation....Footer Navigation styles.
 * Pagination...........Pagination styles.
 * Single...............Single page and post styles.
 * Posts and pages......Misc, sticky post styles.
 * Entry................Entry, author biography.
 * Widget...............Widget styles.
 * Editor...............Editor styles.
 *
 * UTILITIES
 * A11y.................Screen reader text, prefers reduced motion etc.
 * Color Palette........Classes for the color palette colors.
 * Editor Font Sizes....Editor Font Sizes.
 * Measure..............The width of a line of text, in characters.
 */

/* Categories 01 to 03 are the basics. */

/* Variables */

/* ===============================
   Blog Detail Page Styling
   Main Container: .blog-info
   =============================== */

.blog-info {

  margin: 0 auto;
  color: #333;

  line-height: 1.8;
  font-size: 16px;
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* ===============================
   Typography
   =============================== */

/* Headings */
.blog-info h1,
.blog-info h2,
.blog-info h3,
.blog-info h4,
.blog-info h5,
.blog-info h6 {
  color: #111;
  font-weight: 700;
  margin-top: 1.5em;
  margin-bottom: 0.8em;
  line-height: 1.3;
}

.blog-info h1 { font-size: 2.2rem; }
.blog-info h2 { font-size: 1.8rem; }
.blog-info h3 { font-size: 1.5rem; }
.blog-info h4 { font-size: 1.3rem; }
.blog-info h5 { font-size: 1.1rem; }
.blog-info h6 { font-size: 1rem; color: #555; }

/* Paragraphs */
.blog-info p {
  margin-bottom: 1.2em;
  color: #444;
  font-size: 1rem;
  line-height: 1.9;
}

/* Strong and emphasis */
.blog-info strong {
  color: #000;
  font-weight: 600;
}
.blog-info em {
  font-style: italic;
  color: #555;
}

/* ===============================
   Lists
   =============================== */

.blog-info ul,
.blog-info ol {
  margin: 1em 0 1.5em 2em;
  padding: 0;
}

.blog-info li {
  margin-bottom: 0.6em;
  position: relative;
  color: #444;
  line-height: 1.7;
}

.blog-info ul li::marker {
  color: #007bff; /* brand accent color */
}

/* ===============================
   Links
   =============================== */

.blog-info a {
  color: #007bff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.blog-info a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* ===============================
   Images
   =============================== */

.blog-info img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 25px 0;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

/* ===============================
   Blockquotes
   =============================== */

.blog-info blockquote {
  background: #f9f9f9;
  border-left: 4px solid #007bff;
  padding: 20px 25px;
  margin: 1.5em 0;
  font-style: italic;
  color: #555;
  border-radius: 6px;
}

.blog-info blockquote p {
  margin: 0;
  color: #333;
}

/* ===============================
   Tables
   =============================== */

.blog-info table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: 0.95rem;
}

.blog-info table th,
.blog-info table td {
  border: 1px solid #e0e0e0;
  padding: 12px 15px;
  text-align: left;
}

.blog-info table th {
  background-color: #f4f6f8;
  color: #222;
  font-weight: 600;
}

.blog-info table tr:nth-child(even) {
  background-color: #fafafa;
}

/* ===============================
   Code Blocks
   =============================== */

.blog-info pre,
.blog-info code {
  background: #f4f4f4;
  padding: 8px 12px;
  border-radius: 6px;
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
}

.blog-info pre {
  overflow-x: auto;
  margin: 1.2em 0;
}

/* ===============================
   Horizontal Rule
   =============================== */

.blog-info hr {
  border: 0;
  height: 1px;
  background: #e0e0e0;
  margin: 2em 0;
}

/* ===============================
   Responsive Adjustments
   =============================== */

@media (max-width: 768px) {
  .blog-info {
    padding: 25px 15px;
  }
  .blog-info h1 { font-size: 1.8rem; }
  .blog-info h2 { font-size: 1.5rem; }
  .blog-info h3 { font-size: 1.3rem; }
}


