@charset "UTF-8";
/* CSS Document */



    .blog-nav {
      width: 100%;
      margin: 0 auto;
      background-color: #ffffff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      overflow: hidden;
	 font-family: 'Roboto Slab', serif;
    }

    .blog-header {
      background-color: #3498db;
      color: white;
      padding: 20px;
      text-align: center;
    }

    .latest-posts {
      padding: 20px;
    }

    .latest-posts h2 {
      margin-bottom: 15px;
      color: #EB1B50;;
      border-bottom: 2px solid #EB1B50;
      padding-bottom: 10px;
      font-weight: 400;
       font-family: 'Oswald', sans-serif;
       font-size: 22px;
    }

    .post-item {
      padding: 15px;
      border-bottom: 1px solid #eee;
      transition: background-color 0.3s;
    }

    .post-item:hover {
      background-color: #f9f9f9;
    }

    .post-item a {
      color: #EB1B50;
      text-decoration: none;
      font-weight: 500;
      display: block;
	  font-size: 16px;
    }

    .post-item a:hover {
      color: #e7b521;
    }

    .post-date {
      font-size: 13px;
      color: #000;
      margin-top: 5px;
    }

    /* CSS-only accordion */
    .accordion {
      border-top: 1px solid #ddd;
    }
    
    .accordion-header {
      display: block;
      padding: 15px 20px;
      background-color: #EB1B50;
      color: #fff;
      font-weight: bold;
      text-decoration: none;
      position: relative;
	  font-size: 18px;
    }

    .accordion-header:hover {
      background-color: #e7b521;
	  color: #000;
    }

    .accordion-header::after {
      content: "▼";
      position: absolute;
      right: 20px;
      transition: transform 0.3s;
    }

    .archive-month {
      padding: 10px 20px;
      background-color: #ccc;
      font-weight: bold;
      color: #000;
    }

    /* Hide accordion content by default */
    .accordion-content {
       max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease-out;
    }

    /* Show accordion content when checkbox is checked */
    #older-posts-toggle {
      display: none;
    }

    #older-posts-toggle:checked ~ .accordion-content {
       max-height: 9999px;
    }

    #older-posts-toggle:checked ~ .accordion-header::after {
      transform: rotate(180deg);
    }

