.main {
            padding: 2rem;
        }

        .card-hover {
            transition: 0.2s;
            border: 1px solid #ddd;
            cursor: pointer;
        }

        .card-hover:hover {
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transform: scale(1.01);
        }

        .resume-card {
            height: 348px;
            background: #fff;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #555;
            text-align: center;
            font-size: 1rem;
            flex-direction: column;
        }

        .resume-thumb {
            height: 348px;
            border-radius: 8px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f8f9fa;
        }
        
        .resume-thumb img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            object-fit: contain;
        }

        .grid-toggle {
            text-align: right;
            margin-bottom: 1rem;
        }