﻿    /* Grid layout */
    grid-container {
      padding: 2rem 1rem 4rem;
      max-width: 100%;
      margin: auto;
    }
    
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 1.5rem;
    }

    /* Story card */
    .card {
      background: rgba(0,0,0,0.65);
      backdrop-filter: blur(4px);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
    }
    .card:hover {
      transform: translateY(-6px);
      box-shadow: 0 8px 18px rgba(0,0,0,0.6);
    }
    .card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }
    .card-content {
      padding: 1rem;
    }
    .card-content h3 {
      margin: 0 0 0.5rem;
      color: #f79533;
      font-family: 'Merriweather', serif;
    }
    .card-content p {
      font-size: 0.9rem;
      color: #ddd;
      margin: 0;
    }
    
.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.card-note {
    color: #3498db;
    font-weight: 500;
}

.card-note::after {
    content: "→";
    margin-left: 8px;
    transition: transform 0.3s ease;
}

