/*
 Theme Name:   Eduma Child
 Theme URI:    https://yourdomain.com
 Description:  Child theme for Eduma
 Author:       Kavita
 Author URI:   https://yourdomain.com
 Template:     eduma
 Version:      1.0.0
*/
/* Container Styling */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
}
/* Card Styling */
.note-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.note-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Image Styling */
.note-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.note-card:hover .note-image img {
  transform: scale(1.05);
}

/* Content Styling */
.note-content {
  padding: 20px;
}

.note-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 10px;
}

.note-excerpt {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 12px;
}

.note-readmore {
  color: #2563eb;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Pagination Styling */
.pagination ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination li {
  display: inline;
}

.pagination a,
.pagination span {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 9999px;
  background: #f1f5f9;
  color: #1e293b;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pagination a:hover {
  background: #2563eb;
  color: #fff;
}

.pagination .current {
  background: #2563eb;
  color: #fff;
  font-weight: 700;
}

/* Single Note Styling */
.single-note h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.single-note .note-image img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 30px;
}

.download-button a {
  background: #2563eb;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 30px;
}

.note-content {
  line-height: 1.8;
  font-size: 1rem;
}