        .album-section {
            background: white;
            padding: 30px;
            border-radius: 5px;
        }

        .album-title {
            font-size: 20px;
            color: #CE8711;
            margin-bottom: 20px;
            font-weight: bold;
            border-bottom: 1px dashed #ccc;
            padding-bottom: 10px;
        }

        .photo-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
        }

        .photo-item {
            aspect-ratio: 1;
            border-radius: 5px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .photo-item:hover {
            transform: scale(1.05);
        }

        .photo-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        @media (max-width: 768px) {
            .photo-grid { grid-template-columns: repeat(2, 1fr); }
        }