@charset "UTF-8";
/**
* rem変換 ※375以下ではvwとする
* $number 数値
* 例) 32pxをremに変換 (32);
*/
/* Archive Header Section */
.archive-header-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, rgba(46, 129, 176, 0.08) 0%, rgba(255, 215, 0, 0.06) 100%);
  text-align: center;
}

.archive-header-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.archive-title {
  font-size: clamp(3.5rem, 5vw, 2rem);
  font-weight: 700;
  color: #0D1D3B;
  line-height: 1.2;
  margin-bottom: 2rem;
  -webkit-animation: fadeInUp 1s ease-out;
          animation: fadeInUp 1s ease-out;
}

.archive-description {
  color: #666;
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  -webkit-animation: fadeInUp 1s ease-out 0.2s both;
          animation: fadeInUp 1s ease-out 0.2s both;
}

.archive-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-animation: fadeInUp 1s ease-out 0.4s both;
          animation: fadeInUp 1s ease-out 0.4s both;
}

.post-count {
  background: rgba(46, 129, 176, 0.9);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 1.25rem;
  font-weight: 500;
}

.archive-type {
  color: #666;
  font-size: 1.25rem;
}

/* Archive Content Section */
.archive-content-section {
  padding: 80px 0;
  background: #ffffff;
}

.archive-content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
}

.archive-main-content {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

/* Archive Filters */
.archive-filters {
  margin-bottom: 3rem;
  padding: 25px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border: 1px solid rgba(46, 129, 176, 0.15);
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.archive-filters .filter-group {
  position: relative;
  margin: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.archive-filters .filter-group label {
  position: static;
  background: transparent;
  padding: 0 0 12px 0;
  font-weight: 700;
  color: #0D1D3B;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 1;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  display: block;
  margin-bottom: 0;
  text-align: left;
}
.archive-filters .filter-group .filter-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.archive-filters .filter-group .filter-buttons .filter-btn {
  padding: 10px 18px;
  border: 2px solid rgba(46, 129, 176, 0.2);
  border-radius: 20px;
  font-size: 1.25rem;
  background: white;
  color: #2E81B0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 600;
  text-align: center;
  min-width: 75px;
}
.archive-filters .filter-group .filter-buttons .filter-btn:hover {
  border-color: rgba(46, 129, 176, 0.4);
  background: rgba(46, 129, 176, 0.05);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(46, 129, 176, 0.15);
          box-shadow: 0 4px 12px rgba(46, 129, 176, 0.15);
}
.archive-filters .filter-group .filter-buttons .filter-btn.active {
  background: linear-gradient(135deg, #2E81B0 0%, #4895EF 100%);
  color: white;
  border-color: #2E81B0;
  -webkit-box-shadow: 0 4px 15px rgba(46, 129, 176, 0.3);
          box-shadow: 0 4px 15px rgba(46, 129, 176, 0.3);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.archive-filters .filter-group .filter-buttons .filter-btn:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 3px rgba(46, 129, 176, 0.2);
          box-shadow: 0 0 0 3px rgba(46, 129, 176, 0.2);
}
.archive-filters .filter-group .filter-select {
  padding: 10px 18px;
  border: 2px solid rgba(46, 129, 176, 0.2);
  border-radius: 20px;
  font-size: 1.25rem;
  background: white;
  color: #2E81B0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 600;
  min-width: 150px;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232E81B0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}
.archive-filters .filter-group .filter-select:hover {
  border-color: rgba(46, 129, 176, 0.4);
  background-color: rgba(46, 129, 176, 0.05);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(46, 129, 176, 0.15);
          box-shadow: 0 4px 12px rgba(46, 129, 176, 0.15);
}
.archive-filters .filter-group .filter-select:focus {
  border-color: #2E81B0;
  -webkit-box-shadow: 0 0 0 3px rgba(46, 129, 176, 0.2);
          box-shadow: 0 0 0 3px rgba(46, 129, 176, 0.2);
}
.archive-filters .filter-group .filter-select option {
  padding: 8px 12px;
  background: white;
  color: #333;
}
.archive-filters .filter-group:nth-child(2) .filter-btn {
  border-color: rgba(255, 215, 0, 0.3);
  color: #B8860B;
}
.archive-filters .filter-group:nth-child(2) .filter-btn:hover {
  border-color: rgba(255, 215, 0, 0.5);
  background: rgba(255, 215, 0, 0.05);
}
.archive-filters .filter-group:nth-child(2) .filter-btn.active {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: white;
  border-color: #FFD700;
  -webkit-box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
          box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.archive-filters .filter-group:first-child .filter-select {
  border-color: rgba(34, 139, 34, 0.4);
  color: #228B22;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23228B22' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
}
.archive-filters .filter-group:first-child .filter-select:hover {
  border-color: rgba(34, 139, 34, 0.6);
  background-color: rgba(34, 139, 34, 0.08);
  color: #1E7B1E;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(34, 139, 34, 0.2);
          box-shadow: 0 4px 12px rgba(34, 139, 34, 0.2);
}
.archive-filters .filter-group:first-child .filter-select:focus {
  border-color: #228B22;
  -webkit-box-shadow: 0 0 0 3px rgba(34, 139, 34, 0.25);
          box-shadow: 0 0 0 3px rgba(34, 139, 34, 0.25);
}
.archive-filters .filter-group:first-child .filter-select option {
  background: white;
  color: #333;
}
.archive-filters .filter-group:first-child .filter-select option:checked {
  background: linear-gradient(135deg, #228B22 0%, #1E7B1E 100%);
  color: white;
}
.archive-filters .filter-group:last-child .filter-btn {
  border-color: rgba(46, 129, 176, 0.3);
  color: #2E81B0;
}
.archive-filters .filter-group:last-child .filter-btn:hover {
  border-color: rgba(46, 129, 176, 0.5);
  background: rgba(46, 129, 176, 0.05);
}
.archive-filters .filter-group:last-child .filter-btn.active {
  background: linear-gradient(135deg, #2E81B0 0%, #4895EF 100%);
  color: white;
  border-color: #2E81B0;
  -webkit-box-shadow: 0 4px 15px rgba(46, 129, 176, 0.3);
          box-shadow: 0 4px 15px rgba(46, 129, 176, 0.3);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

/* Archive Posts */
.archive-posts {
  width: 100%;
  overflow: hidden;
}
.archive-posts .posts-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.post-item {
  background: white;
  border-radius: 15px;
  padding: 0;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
  margin-bottom: 0;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.post-item .post-card-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  color: inherit;
  width: 100%;
}
.post-item .post-card-link:hover {
  text-decoration: none;
  color: inherit;
}
.post-item:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-left-color: #2E81B0;
}

.post-thumbnail {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 200px;
  height: 150px;
  overflow: hidden;
  line-height: 0;
  font-size: 0;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.post-thumbnail a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  text-decoration: none;
  line-height: 0;
  margin: 0;
  padding: 0;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.post-thumbnail a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  display: block;
  vertical-align: top;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.post-thumbnail a:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.post-thumbnail .no-thumbnail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #f8f9fa;
  border-right: 1px solid #e9ecef;
  height: 100%;
  margin: 0;
  padding: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.post-thumbnail .no-thumbnail .placeholder-image {
  color: #ccc;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  margin: 0;
  padding: 0;
}

.post-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 25px;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.post-title {
  font-size: 1.7rem;
  font-weight: 600;
  color: #0D1D3B;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.post-title a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.post-title a:hover {
  color: #2E81B0;
}

.post-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.post-date {
  color: #999;
  font-weight: 500;
}

.post-category {
  background: rgba(46, 129, 176, 0.1);
  color: #2E81B0;
  padding: 4px 12px;
  border-radius: 15px;
  font-weight: 500;
}

.post-series {
  background: rgba(34, 139, 34, 0.1);
  color: #228B22;
  padding: 4px 12px;
  border-radius: 15px;
  font-weight: 500;
}

.post-series-header {
  margin-bottom: 10px;
}
.post-series-header .post-series {
  display: inline-block;
  background: rgba(34, 139, 34, 0.1);
  color: #228B22;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(34, 139, 34, 0.2);
}

.post-excerpt {
  color: #666;
  line-height: 1.6;
  font-size: 1.4rem;
}

.recent-post-excerpt,
.popular-post-excerpt {
  color: #666;
  line-height: 1.5;
  font-size: 1.25rem;
  margin-top: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Archive Pagination */
.archive-pagination {
  margin-top: 4rem;
  text-align: center;
}

.pagination-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.pagination-links a, .pagination-links span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pagination-links a.prev, .pagination-links a.next, .pagination-links span.prev, .pagination-links span.next {
  gap: 5px;
}
.pagination-links a {
  background: white;
  color: #2E81B0;
  border: 2px solid #e0e0e0;
}
.pagination-links a:hover {
  background: #2E81B0;
  color: white;
  border-color: #2E81B0;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.pagination-links .current {
  background: #2E81B0;
  color: white;
  border: 2px solid #2E81B0;
}
.pagination-links .dots {
  color: #666;
  border: none;
  background: transparent;
}

/* No Posts */
.no-posts {
  text-align: center;
  padding: 4rem 2rem;
}
.no-posts .no-posts-icon {
  margin-bottom: 2rem;
  color: #ccc;
}
.no-posts h3 {
  color: #0D1D3B;
  margin-bottom: 1rem;
  font-size: 1.7rem;
}
.no-posts p {
  color: #666;
  margin-bottom: 2rem;
}
.no-posts .back-home {
  display: inline-block;
  background: linear-gradient(135deg, #2E81B0 0%, #4895EF 100%);
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.no-posts .back-home:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 25px rgba(46, 129, 176, 0.3);
          box-shadow: 0 8px 25px rgba(46, 129, 176, 0.3);
}

/* Archive Sidebar */
.archive-sidebar .sidebar-widget {
  background: white;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 35px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(46, 129, 176, 0.08);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.archive-sidebar .sidebar-widget:hover {
  -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
          box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.archive-sidebar .sidebar-widget h3 {
  color: #0D1D3B;
  margin-bottom: 2rem;
  font-size: 1.6rem;
  font-weight: 700;
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 15px;
  position: relative;
}
.archive-sidebar .sidebar-widget h3::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(135deg, #2E81B0 0%, #4895EF 100%);
  border-radius: 1px;
}

/* Next Posts Widget */
.next-posts-widget .next-post-item {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #f0f0f0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.next-posts-widget .next-post-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.next-posts-widget .next-post-item:hover {
  -webkit-transform: translateX(8px);
          transform: translateX(8px);
}
.next-posts-widget .next-post-item:hover .next-post-image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.next-posts-widget .next-post-item:hover h4 {
  color: #2E81B0;
}
.next-posts-widget .next-post-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.next-posts-widget .next-post-item .next-post-image {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background: #f8f9fa;
}
.next-posts-widget .next-post-item .next-post-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.next-posts-widget .next-post-item .next-post-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.next-posts-widget .next-post-item .next-post-info h4 {
  color: #0D1D3B;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.next-posts-widget .next-post-item .next-post-info .next-post-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-top: auto;
}
.next-posts-widget .next-post-item .next-post-info .next-post-date {
  color: #999;
  font-size: 1.25rem;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.next-posts-widget .next-post-item .next-post-info .next-post-date::before {
  content: "📅";
  font-size: 0.8em;
}
.next-posts-widget .next-post-item .next-post-info .next-post-likes {
  color: #FF6B6B;
  font-size: 1.25rem;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}

/* Recent Posts Widget */
.recent-posts-widget .recent-post-item {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #f0f0f0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.recent-posts-widget .recent-post-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.recent-posts-widget .recent-post-item:hover {
  -webkit-transform: translateX(8px);
          transform: translateX(8px);
}
.recent-posts-widget .recent-post-item:hover .recent-post-image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.recent-posts-widget .recent-post-item:hover h4 {
  color: #2E81B0;
}
.recent-posts-widget .recent-post-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.recent-posts-widget .recent-post-item .recent-post-image {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background: #f8f9fa;
}
.recent-posts-widget .recent-post-item .recent-post-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.recent-posts-widget .recent-post-item .recent-post-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.recent-posts-widget .recent-post-item .recent-post-info h4 {
  color: #0D1D3B;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.recent-posts-widget .recent-post-item .recent-post-info .recent-post-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-top: auto;
}
.recent-posts-widget .recent-post-item .recent-post-info .recent-post-date {
  color: #999;
  font-size: 1.25rem;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.recent-posts-widget .recent-post-item .recent-post-info .recent-post-likes {
  color: #FF6B6B;
  font-size: 1.25rem;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}

/* Archive Responsive */
@media (max-width: 768px) {
  .archive-header-section {
    padding: 100px 0 60px;
  }
  .archive-content-section {
    padding: 80px 0;
  }
  .archive-content-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }
  .archive-sidebar .sidebar-widget {
    padding: 25px;
    margin-bottom: 25px;
  }
  .archive-sidebar .sidebar-widget h3 {
    text-align: center;
  }
  .archive-sidebar .sidebar-widget h3::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .archive-filters {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    text-align: center;
    gap: 0;
  }
  .archive-filters::before {
    border-radius: 15px;
  }
  .archive-filters .filter-group {
    margin: 10px 15px;
  }
  .archive-filters .filter-group label {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    font-size: 1rem;
  }
  .archive-filters .filter-group .filter-buttons {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 6px;
  }
  .archive-filters .filter-group .filter-buttons .filter-btn {
    padding: 8px 16px;
    font-size: 1rem;
    min-width: 70px;
  }
  .archive-filters .filter-group .filter-select {
    width: 100%;
    padding: 8px 16px;
    font-size: 1rem;
    min-width: auto;
    text-align: center;
  }
  .post-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .post-item .post-thumbnail {
    width: 100%;
    aspect-ratio: 16/9;
    height: auto;
    border-right: none;
    border-bottom: 1px solid #e9ecef;
  }
  .post-item .post-content {
    padding: 20px;
  }
  .post-item .post-card-link {
    display: block;
  }
  .pagination-links {
    gap: 5px;
  }
  .pagination-links a, .pagination-links span {
    min-width: 35px;
    height: 35px;
    font-size: 1.25rem;
  }
  .next-posts-widget .next-post-item .next-post-image,
  .next-posts-widget .next-post-item .recent-post-image,
  .next-posts-widget .recent-post-item .next-post-image,
  .next-posts-widget .recent-post-item .recent-post-image,
  .recent-posts-widget .next-post-item .next-post-image,
  .recent-posts-widget .next-post-item .recent-post-image,
  .recent-posts-widget .recent-post-item .next-post-image,
  .recent-posts-widget .recent-post-item .recent-post-image {
    width: 60px;
    height: 60px;
  }
  .next-posts-widget .next-post-item .next-post-info h4,
  .next-posts-widget .next-post-item .recent-post-info h4,
  .next-posts-widget .recent-post-item .next-post-info h4,
  .next-posts-widget .recent-post-item .recent-post-info h4,
  .recent-posts-widget .next-post-item .next-post-info h4,
  .recent-posts-widget .next-post-item .recent-post-info h4,
  .recent-posts-widget .recent-post-item .next-post-info h4,
  .recent-posts-widget .recent-post-item .recent-post-info h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  .next-posts-widget .next-post-item .next-post-date,
  .next-posts-widget .next-post-item .recent-post-date,
  .next-posts-widget .next-post-item .next-post-likes,
  .next-posts-widget .next-post-item .recent-post-likes,
  .next-posts-widget .recent-post-item .next-post-date,
  .next-posts-widget .recent-post-item .recent-post-date,
  .next-posts-widget .recent-post-item .next-post-likes,
  .next-posts-widget .recent-post-item .recent-post-likes,
  .recent-posts-widget .next-post-item .next-post-date,
  .recent-posts-widget .next-post-item .recent-post-date,
  .recent-posts-widget .next-post-item .next-post-likes,
  .recent-posts-widget .next-post-item .recent-post-likes,
  .recent-posts-widget .recent-post-item .next-post-date,
  .recent-posts-widget .recent-post-item .recent-post-date,
  .recent-posts-widget .recent-post-item .next-post-likes,
  .recent-posts-widget .recent-post-item .recent-post-likes {
    font-size: 1rem;
  }
}
/* Animations */
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}/*# sourceMappingURL=blog.css.map */