@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;1,400&family=Noto+Sans+Devanagari:wght@400;500;600&display=swap");
.home-container {
  display: grid;
  grid-template-columns: 1fr 1.8fr 1fr;
  gap: 1.5rem;
  max-width: 95vw;
  margin: 0 auto;
  padding: 0.5rem;
}
@media (max-width: 1024px) {
  .home-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 100%;
    padding: 1rem;
  }
}

.memorial-banner {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 1rem;
  margin: 0;
  border-bottom: 1px solid #dee2e6;
}
@media (max-width: 768px) {
  .memorial-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
}

.memorial-photo {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .memorial-photo {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
}

.memorial-text {
  flex: 1;
}

.name-english {
  font-family: "Crimson Text", serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
  line-height: 1.2;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .name-english {
    font-size: 2rem;
  }
}

.name-separator {
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, #17a2b8, #6f42c1);
  margin: 0.8rem 0;
  border-radius: 1px;
}

.name-devanagari {
  font-family: "Noto Sans Devanagari", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  color: #495057;
  margin: 0;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .name-devanagari {
    font-size: 1.6rem;
  }
}

.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e9ecef;
}

.memorial-section {
  background: #ffffff;
  padding: 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #e9ecef;
  overflow: visible;
}
.memorial-section .section-title {
  margin: 0;
  padding: 1.5rem 2rem 1rem 2rem;
  border-bottom: 2px solid #e9ecef;
}
.memorial-section .memorial-posts {
  padding: 2rem;
}

.memorial-post-item {
  padding: 1rem 0;
  border-bottom: 1px solid #f8f9fa;
}
.memorial-post-item:last-child {
  border-bottom: none;
}

.collections-section {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #e9ecef;
}

.collection-group {
  margin-bottom: 2.5rem;
}
.collection-group:last-child {
  margin-bottom: 0;
}

.collection-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.collection-title a {
  color: #17a2b8;
  text-decoration: none;
}
.collection-title a:hover {
  color: #138496;
  text-decoration: underline;
}

.collection-post-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid #f8f9fa;
}
.collection-post-item:last-child {
  border-bottom: none;
}

.blog-section {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #e9ecef;
}

.blog-post-item {
  padding: 1rem 0;
  border-bottom: 1px solid #f8f9fa;
}
.blog-post-item:last-child {
  border-bottom: none;
}

.post-date {
  font-size: 0.8rem;
  color: #6c757d;
  margin-bottom: 0.25rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.post-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}
.post-title a {
  color: #2c3e50;
  text-decoration: none;
}
.post-title a:hover {
  color: #17a2b8;
  text-decoration: underline;
}

.post-excerpt {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.4;
  margin: 0;
}

.see-more {
  margin-top: 1.5rem;
  text-align: center;
  padding: 0 2rem 1.5rem 2rem;
}

.see-more-link {
  display: inline-flex;
  align-items: center;
  color: #17a2b8;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border: 1px solid #17a2b8;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.see-more-link:hover {
  background-color: #17a2b8;
  color: #ffffff;
  transform: translateY(-1px);
}

/*# sourceMappingURL=home.css.map */